mirror of
https://github.com/Print3M/Anti-VM
synced 2026-06-21 16:41:58 +00:00
18 lines
381 B
C++
18 lines
381 B
C++
#pragma once
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace detect {
|
|
extern std::vector<std::string> vm_names;
|
|
extern std::vector<std::string> legit_cpu_ids;
|
|
|
|
bool cpu_hypervisor_bit();
|
|
bool cpu_id();
|
|
bool cpu_brand();
|
|
bool bios_manufacturer();
|
|
bool bios_version();
|
|
bool screen_resolution();
|
|
bool memory_amount();
|
|
bool cpu_cores();
|
|
bool disk_space();
|
|
}; |