├── CVE-2018-1160 ├── CVE-2018-1160.py └── libc-2.27.so ├── CVE-2022-39197 ├── _resources │ ├── 46c4b0416ea12c5c3eb412cbb3866a88.png │ └── bb9dd164f6d77dd7aaa2928e09cd564b.png ├── cobaltfire.py ├── cobalthacked.png ├── localserver.py ├── readme.md └── requirements.txt ├── Packer-Fuzzer-RCE ├── hack.js └── index.html ├── README.md ├── URPResetHunter └── URPResetHunter.py ├── WpsLinuxRce └── POC.docx ├── pyspider unauthorized access ├── exp.py └── poc.py ├── rce.py └── sourceleakhoneypot ├── README.md ├── dot-git ├── HEAD ├── config ├── description ├── hooks │ ├── applypatch-msg.sample │ ├── commit-msg.sample │ ├── fsmonitor-watchman.sample │ ├── post-update.sample │ ├── pre-applypatch.sample │ ├── pre-commit.sample │ ├── pre-merge-commit.sample │ ├── pre-push.sample │ ├── pre-rebase.sample │ ├── pre-receive.sample │ ├── prepare-commit-msg.sample │ ├── push-to-checkout.sample │ └── update.sample ├── index ├── info │ └── exclude ├── logs │ ├── HEAD │ └── refs │ │ └── heads │ │ └── master ├── objects │ ├── 21 │ │ └── 9f9915640c6d470c2367534c9294c3f9db2d06 │ ├── 72 │ │ └── 4babbd3f586eab0ebb469e2429b0e3bd5c5d4d │ ├── 1b │ │ └── c9b291e7984cbbdf0cac6de33b3d13d3a613bb │ ├── 9d │ │ └── 048d397334a838d71e6d7399d3c135419938b8 │ └── cb │ │ └── 75d8439f004f41d5f85ffa5f8d017df395651a └── refs │ └── heads │ └── master ├── dot-svn-newversion ├── entries ├── format ├── pristine │ └── a9 │ │ └── a94a8fe5ccb19ba61c4c0873d391e987982fbbd3.svn-base └── wc.db └── dot-svn-oldversion ├── entries └── tohacker.txt /CVE-2018-1160/CVE-2018-1160.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/CVE-2018-1160/CVE-2018-1160.py -------------------------------------------------------------------------------- /CVE-2018-1160/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/CVE-2018-1160/libc-2.27.so -------------------------------------------------------------------------------- /CVE-2022-39197/_resources/46c4b0416ea12c5c3eb412cbb3866a88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/CVE-2022-39197/_resources/46c4b0416ea12c5c3eb412cbb3866a88.png -------------------------------------------------------------------------------- /CVE-2022-39197/_resources/bb9dd164f6d77dd7aaa2928e09cd564b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/CVE-2022-39197/_resources/bb9dd164f6d77dd7aaa2928e09cd564b.png -------------------------------------------------------------------------------- /CVE-2022-39197/cobaltfire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/CVE-2022-39197/cobaltfire.py -------------------------------------------------------------------------------- /CVE-2022-39197/cobalthacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/CVE-2022-39197/cobalthacked.png -------------------------------------------------------------------------------- /CVE-2022-39197/localserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/CVE-2022-39197/localserver.py -------------------------------------------------------------------------------- /CVE-2022-39197/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/CVE-2022-39197/readme.md -------------------------------------------------------------------------------- /CVE-2022-39197/requirements.txt: -------------------------------------------------------------------------------- 1 | frida-tools 2 | Flask -------------------------------------------------------------------------------- /Packer-Fuzzer-RCE/hack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/Packer-Fuzzer-RCE/hack.js -------------------------------------------------------------------------------- /Packer-Fuzzer-RCE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/Packer-Fuzzer-RCE/index.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/README.md -------------------------------------------------------------------------------- /URPResetHunter/URPResetHunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/URPResetHunter/URPResetHunter.py -------------------------------------------------------------------------------- /WpsLinuxRce/POC.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/WpsLinuxRce/POC.docx -------------------------------------------------------------------------------- /pyspider unauthorized access/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/pyspider unauthorized access/exp.py -------------------------------------------------------------------------------- /pyspider unauthorized access/poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/pyspider unauthorized access/poc.py -------------------------------------------------------------------------------- /rce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/rce.py -------------------------------------------------------------------------------- /sourceleakhoneypot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/README.md -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/config -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/description -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/applypatch-msg.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/commit-msg.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/fsmonitor-watchman.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/fsmonitor-watchman.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/post-update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/post-update.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/pre-applypatch.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/pre-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/pre-commit.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/pre-merge-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/pre-merge-commit.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/pre-push.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/pre-push.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/pre-rebase.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/pre-rebase.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/pre-receive.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/pre-receive.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/prepare-commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/prepare-commit-msg.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/push-to-checkout.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/push-to-checkout.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/hooks/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/hooks/update.sample -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/index -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/info/exclude -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/logs/HEAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/logs/HEAD -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/logs/refs/heads/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/logs/refs/heads/master -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/objects/1b/c9b291e7984cbbdf0cac6de33b3d13d3a613bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/objects/1b/c9b291e7984cbbdf0cac6de33b3d13d3a613bb -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/objects/21/9f9915640c6d470c2367534c9294c3f9db2d06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/objects/21/9f9915640c6d470c2367534c9294c3f9db2d06 -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/objects/72/4babbd3f586eab0ebb469e2429b0e3bd5c5d4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/objects/72/4babbd3f586eab0ebb469e2429b0e3bd5c5d4d -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/objects/9d/048d397334a838d71e6d7399d3c135419938b8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/objects/9d/048d397334a838d71e6d7399d3c135419938b8 -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/objects/cb/75d8439f004f41d5f85ffa5f8d017df395651a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-git/objects/cb/75d8439f004f41d5f85ffa5f8d017df395651a -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 724babbd3f586eab0ebb469e2429b0e3bd5c5d4d 2 | -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-svn-newversion/entries: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-svn-newversion/format: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-svn-newversion/pristine/a9/a94a8fe5ccb19ba61c4c0873d391e987982fbbd3.svn-base: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-svn-newversion/wc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-svn-newversion/wc.db -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-svn-oldversion/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | 4 | ../tohacker.txt 5 | file 6 | -------------------------------------------------------------------------------- /sourceleakhoneypot/dot-svn-oldversion/tohacker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomAPU/poc_and_exp/HEAD/sourceleakhoneypot/dot-svn-oldversion/tohacker.txt --------------------------------------------------------------------------------