├── CVE-2002-1120 ├── CVE-2002-1120.py └── SEH Egghunter CVE-2002-1120.py ├── CVE-2012-5002 ├── CVE-2012-5002.py └── CVE-2012-5002.rb ├── CVE-2017-14980 └── CVE-2017-14980.py ├── CVE-2018-6537 └── CVE-2018-6537.py ├── CVE-2020-16040 ├── CVE-2020-16040.js ├── README.md ├── bowser.js ├── debug │ └── debug.js ├── index.html └── sandbox_esc │ ├── CVE-2020-16041.js │ └── README.md ├── CVE-2023-3079 ├── README.md └── debug │ └── poc.js ├── CVE-2024-0517 ├── README.md ├── exploit.js └── maglev-pipe-tiers.png ├── Helper Scripts └── find_PPR_instruction_seq.wds ├── README.md └── Templates └── type_confuse_exploit_template.js /CVE-2002-1120/CVE-2002-1120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2002-1120/CVE-2002-1120.py -------------------------------------------------------------------------------- /CVE-2002-1120/SEH Egghunter CVE-2002-1120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2002-1120/SEH Egghunter CVE-2002-1120.py -------------------------------------------------------------------------------- /CVE-2012-5002/CVE-2012-5002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2012-5002/CVE-2012-5002.py -------------------------------------------------------------------------------- /CVE-2012-5002/CVE-2012-5002.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2012-5002/CVE-2012-5002.rb -------------------------------------------------------------------------------- /CVE-2017-14980/CVE-2017-14980.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2017-14980/CVE-2017-14980.py -------------------------------------------------------------------------------- /CVE-2018-6537/CVE-2018-6537.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2018-6537/CVE-2018-6537.py -------------------------------------------------------------------------------- /CVE-2020-16040/CVE-2020-16040.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2020-16040/CVE-2020-16040.js -------------------------------------------------------------------------------- /CVE-2020-16040/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2020-16040/README.md -------------------------------------------------------------------------------- /CVE-2020-16040/bowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2020-16040/bowser.js -------------------------------------------------------------------------------- /CVE-2020-16040/debug/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2020-16040/debug/debug.js -------------------------------------------------------------------------------- /CVE-2020-16040/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2020-16040/index.html -------------------------------------------------------------------------------- /CVE-2020-16040/sandbox_esc/CVE-2020-16041.js: -------------------------------------------------------------------------------- 1 | // WIP 2 | -------------------------------------------------------------------------------- /CVE-2020-16040/sandbox_esc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2020-16040/sandbox_esc/README.md -------------------------------------------------------------------------------- /CVE-2023-3079/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2023-3079/README.md -------------------------------------------------------------------------------- /CVE-2023-3079/debug/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2023-3079/debug/poc.js -------------------------------------------------------------------------------- /CVE-2024-0517/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2024-0517/README.md -------------------------------------------------------------------------------- /CVE-2024-0517/exploit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2024-0517/exploit.js -------------------------------------------------------------------------------- /CVE-2024-0517/maglev-pipe-tiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/CVE-2024-0517/maglev-pipe-tiers.png -------------------------------------------------------------------------------- /Helper Scripts/find_PPR_instruction_seq.wds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/Helper Scripts/find_PPR_instruction_seq.wds -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/README.md -------------------------------------------------------------------------------- /Templates/type_confuse_exploit_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ret2eax/exploits/HEAD/Templates/type_confuse_exploit_template.js --------------------------------------------------------------------------------