#detect #x86-64 #vm #hypervisor #inspect #virtual #running

vm-detect

检测您的 Rust 代码是否在虚拟机下运行(仅适用于 x86_64 和 x86)

1 个不稳定版本

0.1.0 2023 年 9 月 1 日

215模拟器

MIT 许可证

6KB
106

x86 和 x86_64 基本虚拟机检测

使用方法

use vm_detect::{vm_detect, Detection};

fn main() {
    // Run detection
    let detection = vm_detect();

    // Inspect detections
    if detection.contains(Detection::HYPERVISOR_BIT) {
        println!("Hypervisor bit set!");
    }
}

依赖项

~110KB