├── .gitignore ├── CVE-2023-32434 ├── kaspersky.c └── kfd.c ├── CVE-2023-4863 ├── README.md ├── crash_poc │ ├── poc.py │ └── poc.webp ├── exploit.html ├── exploit.js ├── gen_oob_webp.py ├── oob.webp └── utils.js ├── CVE-2024-5274 ├── crash.js ├── hit_dcheck.js ├── native_context_objs.txt └── poc.js ├── CVE-2025-43300 └── README.md ├── CVE-2025-6554 └── poc.js ├── README.md └── steam-2260570 └── exploit.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CVE-2023-32434/kaspersky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2023-32434/kaspersky.c -------------------------------------------------------------------------------- /CVE-2023-32434/kfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2023-32434/kfd.c -------------------------------------------------------------------------------- /CVE-2023-4863/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2023-4863/README.md -------------------------------------------------------------------------------- /CVE-2023-4863/crash_poc/poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2023-4863/crash_poc/poc.py -------------------------------------------------------------------------------- /CVE-2023-4863/crash_poc/poc.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2023-4863/crash_poc/poc.webp -------------------------------------------------------------------------------- /CVE-2023-4863/exploit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2023-4863/exploit.html -------------------------------------------------------------------------------- /CVE-2023-4863/exploit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2023-4863/exploit.js -------------------------------------------------------------------------------- /CVE-2023-4863/gen_oob_webp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2023-4863/gen_oob_webp.py -------------------------------------------------------------------------------- /CVE-2023-4863/oob.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2023-4863/oob.webp -------------------------------------------------------------------------------- /CVE-2023-4863/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2023-4863/utils.js -------------------------------------------------------------------------------- /CVE-2024-5274/crash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2024-5274/crash.js -------------------------------------------------------------------------------- /CVE-2024-5274/hit_dcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2024-5274/hit_dcheck.js -------------------------------------------------------------------------------- /CVE-2024-5274/native_context_objs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2024-5274/native_context_objs.txt -------------------------------------------------------------------------------- /CVE-2024-5274/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2024-5274/poc.js -------------------------------------------------------------------------------- /CVE-2025-43300/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2025-43300/README.md -------------------------------------------------------------------------------- /CVE-2025-6554/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/CVE-2025-6554/poc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/README.md -------------------------------------------------------------------------------- /steam-2260570/exploit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkNavySecurity/PoC/HEAD/steam-2260570/exploit.html --------------------------------------------------------------------------------