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"; `, }, ];