├── 36K common directory and file names.txt ├── 50K content_discovery_all.txt ├── content-discovery-wordlist.txt ├── cve-2019-1003000-jenkins-rce-poc ├── .gitignore ├── LICENSE ├── README.md ├── exploit.py └── requirements.txt ├── jwt-wordlist └── pickleRCE.py /36K common directory and file names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enciphers-team/WebHacking-Training-Resources/HEAD/36K common directory and file names.txt -------------------------------------------------------------------------------- /50K content_discovery_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enciphers-team/WebHacking-Training-Resources/HEAD/50K content_discovery_all.txt -------------------------------------------------------------------------------- /content-discovery-wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enciphers-team/WebHacking-Training-Resources/HEAD/content-discovery-wordlist.txt -------------------------------------------------------------------------------- /cve-2019-1003000-jenkins-rce-poc/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | venv 3 | -------------------------------------------------------------------------------- /cve-2019-1003000-jenkins-rce-poc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enciphers-team/WebHacking-Training-Resources/HEAD/cve-2019-1003000-jenkins-rce-poc/LICENSE -------------------------------------------------------------------------------- /cve-2019-1003000-jenkins-rce-poc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enciphers-team/WebHacking-Training-Resources/HEAD/cve-2019-1003000-jenkins-rce-poc/README.md -------------------------------------------------------------------------------- /cve-2019-1003000-jenkins-rce-poc/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enciphers-team/WebHacking-Training-Resources/HEAD/cve-2019-1003000-jenkins-rce-poc/exploit.py -------------------------------------------------------------------------------- /cve-2019-1003000-jenkins-rce-poc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enciphers-team/WebHacking-Training-Resources/HEAD/cve-2019-1003000-jenkins-rce-poc/requirements.txt -------------------------------------------------------------------------------- /jwt-wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enciphers-team/WebHacking-Training-Resources/HEAD/jwt-wordlist -------------------------------------------------------------------------------- /pickleRCE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enciphers-team/WebHacking-Training-Resources/HEAD/pickleRCE.py --------------------------------------------------------------------------------