├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── BOF ├── abc_offset.py ├── credit.txt ├── fuzzer.py └── pattern_create_poc.py ├── BOF_Resources ├── Bypass_2FA ├── File_Transfers ├── Kernel_Exploits ├── Labs_to_pratice.md ├── Metasploit_Misc ├── PHP_LFI_RFI_SHELL ├── Password_Cracking ├── Payload_Generator ├── Persistence_Windows ├── Priv_Esc ├── README.md ├── Random_Enumeration ├── SMBServer_Whoami.exe ├── XSS.md ├── _config.yml ├── automap.sh ├── monkey_generator.py ├── phishing ├── pwn_shell.md ├── wordlists └── English-dates.txt └── xss.svg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /BOF/abc_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/BOF/abc_offset.py -------------------------------------------------------------------------------- /BOF/credit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/BOF/credit.txt -------------------------------------------------------------------------------- /BOF/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/BOF/fuzzer.py -------------------------------------------------------------------------------- /BOF/pattern_create_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/BOF/pattern_create_poc.py -------------------------------------------------------------------------------- /BOF_Resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/BOF_Resources -------------------------------------------------------------------------------- /Bypass_2FA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/Bypass_2FA -------------------------------------------------------------------------------- /File_Transfers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/File_Transfers -------------------------------------------------------------------------------- /Kernel_Exploits: -------------------------------------------------------------------------------- 1 | https://github.com/lucyoa/kernel-exploits 2 | -------------------------------------------------------------------------------- /Labs_to_pratice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/Labs_to_pratice.md -------------------------------------------------------------------------------- /Metasploit_Misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/Metasploit_Misc -------------------------------------------------------------------------------- /PHP_LFI_RFI_SHELL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/PHP_LFI_RFI_SHELL -------------------------------------------------------------------------------- /Password_Cracking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/Password_Cracking -------------------------------------------------------------------------------- /Payload_Generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/Payload_Generator -------------------------------------------------------------------------------- /Persistence_Windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/Persistence_Windows -------------------------------------------------------------------------------- /Priv_Esc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/Priv_Esc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/README.md -------------------------------------------------------------------------------- /Random_Enumeration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/Random_Enumeration -------------------------------------------------------------------------------- /SMBServer_Whoami.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/SMBServer_Whoami.exe -------------------------------------------------------------------------------- /XSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/XSS.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/_config.yml -------------------------------------------------------------------------------- /automap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/automap.sh -------------------------------------------------------------------------------- /monkey_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/monkey_generator.py -------------------------------------------------------------------------------- /phishing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/phishing -------------------------------------------------------------------------------- /pwn_shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/pwn_shell.md -------------------------------------------------------------------------------- /wordlists/English-dates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/wordlists/English-dates.txt -------------------------------------------------------------------------------- /xss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinfulz/JustTryHarder/HEAD/xss.svg --------------------------------------------------------------------------------