├── .gitignore ├── README.md ├── dns.conf ├── document └── en │ └── ps5 │ ├── exploit.js │ ├── index.html │ ├── int64.js │ ├── rop.js │ ├── rop_slave.js │ └── webkit.js ├── dumpserver.py ├── fakedns.py ├── host.py ├── klogclient.py ├── localhost.pem ├── logserver.py ├── rpcserver.py └── sendelf.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.bin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/README.md -------------------------------------------------------------------------------- /dns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/dns.conf -------------------------------------------------------------------------------- /document/en/ps5/exploit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/document/en/ps5/exploit.js -------------------------------------------------------------------------------- /document/en/ps5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/document/en/ps5/index.html -------------------------------------------------------------------------------- /document/en/ps5/int64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/document/en/ps5/int64.js -------------------------------------------------------------------------------- /document/en/ps5/rop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/document/en/ps5/rop.js -------------------------------------------------------------------------------- /document/en/ps5/rop_slave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/document/en/ps5/rop_slave.js -------------------------------------------------------------------------------- /document/en/ps5/webkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/document/en/ps5/webkit.js -------------------------------------------------------------------------------- /dumpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/dumpserver.py -------------------------------------------------------------------------------- /fakedns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/fakedns.py -------------------------------------------------------------------------------- /host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/host.py -------------------------------------------------------------------------------- /klogclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/klogclient.py -------------------------------------------------------------------------------- /localhost.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/localhost.pem -------------------------------------------------------------------------------- /logserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/logserver.py -------------------------------------------------------------------------------- /rpcserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/rpcserver.py -------------------------------------------------------------------------------- /sendelf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChendoChap/PS5-IPV6-Kernel-Exploit/HEAD/sendelf.py --------------------------------------------------------------------------------