antivm
v1.0.2
Published
A anti vm for nodejs
Downloads
5
Readme
AntiVM
A npm package to use to prevent virtual machines. This is meant to be used with compilers such as pkg or node.jsv20+ single embedded executable with your node.js code to a binary file executable with such.
Use Cases:
- Protect your commercial version of your application
- Prevent web capturing tools sniffing your applications traffic
- Prevent decompilers and disassembler from being ran on your application
- Prevent virtual machines from being able to use this application to do the use cases above
Usage/Examples:
const antivm = require("antivm");
(async() => {
const IsVM = await antivm({
processes: true, // scan through the current running processes
pcspecs: true, // check if it has unusual things like uneven amount of cpu cores
addcheck: { processes: [ "minecraft", "discord" ], pcspecs: { cpucores: 5 } } // add specific things to look for.
})
if (IsVM) return // return true if detected as virtual machine
console.log("Im not a virtual machine!")
})()