1.0.2 • Published 10 months ago

antivm v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

Status

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!") 
})()
1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago