├── .gitignore ├── Android ├── README.md ├── Security-Articles │ └── Demystifying_Anti-Repackaging_on_Android.pdf └── Security-Testing │ └── FRIDA.md ├── Cryptography ├── Cryptopals │ └── Set_1 │ │ ├── 4.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── challenge_1.py │ │ ├── challenge_2.py │ │ ├── challenge_3.py │ │ ├── challenge_4.py │ │ ├── challenge_5.py │ │ ├── challenge_6.py │ │ ├── challenge_7.py │ │ └── words_dictionary.json └── Practical_Cryptography │ ├── CaesarCipher │ ├── DecodeShiftCipher.py │ ├── README.md │ └── ShiftCipherEncoder.py │ └── Hashing │ ├── MD5BruteForcer.py │ ├── ProofOfWork.py │ └── README.md ├── Exploit-Dev ├── CTF-Labs │ ├── Nightmare │ │ ├── Challenges │ │ │ ├── bkp16_simplecalc.md │ │ │ ├── csaw16_warmup.md │ │ │ ├── csaw17_pilot.md │ │ │ ├── csaw18_boi.md │ │ │ ├── csaw18_getit.md │ │ │ ├── csaw19_beleaf.md │ │ │ ├── helithumper_re.md │ │ │ ├── just_do_it.md │ │ │ ├── pwn1.md │ │ │ ├── tamu19_pwn3.md │ │ │ ├── tu18_shellaeasy.md │ │ │ └── tuctf17_vulnchat.md │ │ └── README.md │ ├── README.md │ ├── ROP-Emporium │ │ ├── Challenges │ │ │ ├── badchars32.md │ │ │ ├── badchars64.md │ │ │ ├── callme32.md │ │ │ ├── callme64.md │ │ │ ├── fluff32.md │ │ │ ├── fluff64.md │ │ │ ├── pivot32.md │ │ │ ├── pivot64.md │ │ │ ├── ret2csu.md │ │ │ ├── ret2win.md │ │ │ ├── ret2win64.md │ │ │ ├── split32.md │ │ │ ├── split64.md │ │ │ ├── write432.md │ │ │ └── write464.md │ │ └── README.md │ └── Ret2WarGames │ │ ├── Memory-Corruption │ │ ├── level-1.md │ │ ├── level-2.md │ │ └── level-3.md │ │ ├── README.md │ │ ├── Reverse-Engineering │ │ ├── images │ │ │ ├── valid-serial-C-source-code.png │ │ │ └── valid-serial-disassembly.png │ │ ├── level-1.md │ │ ├── level-2.md │ │ ├── level-3.md │ │ └── valid_serial.c │ │ └── Shellcoding │ │ ├── level-1.md │ │ ├── level-2.md │ │ └── level-3.md └── README.md ├── Kubernetes └── Security-Articles │ └── kubernetes-privilege-escalation-excessive-permissions-in-popular-platforms.pdf ├── MacOS └── README.md ├── Mal-Dev ├── MalDev-Academy │ ├── README.md │ └── Windows-API │ │ ├── DLL-Example │ │ ├── README.md │ │ ├── dllmain.c │ │ └── runHelloMaldev.c │ │ ├── Get-Username │ │ ├── README.md │ │ └── gerUserNameAExample.cpp │ │ ├── Memory-Allocation │ │ ├── README.md │ │ ├── heapAllocExample.cpp │ │ ├── mallocExample.cpp │ │ └── vAllocExample.cpp │ │ ├── Open-Process │ │ ├── README.md │ │ └── openProcessExample.c │ │ └── Payload-Placement │ │ ├── README.md │ │ ├── payload.c │ │ ├── payloadRscExample.c │ │ ├── payloadTextSection.c │ │ └── resource.h └── README.md ├── README.md ├── VR └── README.md └── Web-Security ├── README.md └── Writeups ├── JuiceShop ├── README.md └── Writeups │ ├── Bully-Chatbot.md │ ├── DOM-XSS.md │ ├── Database_Schema.md │ ├── SQL_Injection.md │ ├── Score-Board.md │ └── images │ ├── Chatbot_Bruteforce_Solved.png │ ├── DOM-XSS.png │ ├── DOM-XSS_bonus.png │ ├── Intruder_Chatbot_Bruteforce.png │ ├── Intruder_Chatbot_payload.png │ ├── score-board.png │ └── search-apple.png ├── README.md └── Web-Security-Academy ├── Images ├── Blind_SQLi_OOB_exploit_res.png ├── Blind_SQLi_OOB_req.png ├── Blind_SQli_OOB_res.png ├── Comparer_res_diff.png ├── Comparer_select_word-bytes.png ├── Comparer_send_to.png ├── Filter_results_comment_tag.png ├── Filter_settings_.png ├── Intruder_XFF_add_list.png ├── Intruder_XFF_add_num.png ├── Intruder_XFF_pitch_fork.png ├── Intruder_add_field.png ├── Intruder_cluster_bomb.png ├── Intruder_cluster_bomb_filter_positve_res.png ├── SQLi_filter_bypass_xml.png └── Save_results_table.png ├── Labs └── Authentication │ ├── Username_Enum_subtly_diff_res.md │ └── Username_Enum_via_response_times.md ├── README.md └── Scripts ├── Authentication ├── Broken_bruteforce_protect_IP_block.py ├── Username_Enum_response_times.py ├── passwords.txt └── users.txt └── SQLi ├── SQLi_examine_db.py ├── SQLi_filter_bypass_xml.py ├── blindSQLi_OOB.py ├── blindSQLi_OOB_exploit.py ├── blindSQLi_conditional_errors.py ├── blindSQLi_conditional_res.py ├── blindSQLi_time_delays.py ├── blindSQLi_time_delays_exploit.py └── blindSQLi_visible_errors.py /.gitignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | .DS_Store 3 | venv/ 4 | -------------------------------------------------------------------------------- /Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Android/README.md -------------------------------------------------------------------------------- /Android/Security-Articles/Demystifying_Anti-Repackaging_on_Android.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Android/Security-Articles/Demystifying_Anti-Repackaging_on_Android.pdf -------------------------------------------------------------------------------- /Android/Security-Testing/FRIDA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Android/Security-Testing/FRIDA.md -------------------------------------------------------------------------------- /Cryptography/Cryptopals/Set_1/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Cryptopals/Set_1/4.txt -------------------------------------------------------------------------------- /Cryptography/Cryptopals/Set_1/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Cryptopals/Set_1/6.txt -------------------------------------------------------------------------------- /Cryptography/Cryptopals/Set_1/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Cryptopals/Set_1/7.txt -------------------------------------------------------------------------------- /Cryptography/Cryptopals/Set_1/challenge_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Cryptopals/Set_1/challenge_1.py -------------------------------------------------------------------------------- /Cryptography/Cryptopals/Set_1/challenge_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Cryptopals/Set_1/challenge_2.py -------------------------------------------------------------------------------- /Cryptography/Cryptopals/Set_1/challenge_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Cryptopals/Set_1/challenge_3.py -------------------------------------------------------------------------------- /Cryptography/Cryptopals/Set_1/challenge_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Cryptopals/Set_1/challenge_4.py -------------------------------------------------------------------------------- /Cryptography/Cryptopals/Set_1/challenge_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Cryptopals/Set_1/challenge_5.py -------------------------------------------------------------------------------- /Cryptography/Cryptopals/Set_1/challenge_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Cryptopals/Set_1/challenge_6.py -------------------------------------------------------------------------------- /Cryptography/Cryptopals/Set_1/challenge_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Cryptopals/Set_1/challenge_7.py -------------------------------------------------------------------------------- /Cryptography/Cryptopals/Set_1/words_dictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Cryptopals/Set_1/words_dictionary.json -------------------------------------------------------------------------------- /Cryptography/Practical_Cryptography/CaesarCipher/DecodeShiftCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Practical_Cryptography/CaesarCipher/DecodeShiftCipher.py -------------------------------------------------------------------------------- /Cryptography/Practical_Cryptography/CaesarCipher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Practical_Cryptography/CaesarCipher/README.md -------------------------------------------------------------------------------- /Cryptography/Practical_Cryptography/CaesarCipher/ShiftCipherEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Practical_Cryptography/CaesarCipher/ShiftCipherEncoder.py -------------------------------------------------------------------------------- /Cryptography/Practical_Cryptography/Hashing/MD5BruteForcer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Practical_Cryptography/Hashing/MD5BruteForcer.py -------------------------------------------------------------------------------- /Cryptography/Practical_Cryptography/Hashing/ProofOfWork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Practical_Cryptography/Hashing/ProofOfWork.py -------------------------------------------------------------------------------- /Cryptography/Practical_Cryptography/Hashing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Cryptography/Practical_Cryptography/Hashing/README.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/bkp16_simplecalc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/bkp16_simplecalc.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/csaw16_warmup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/csaw16_warmup.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/csaw17_pilot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/csaw17_pilot.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/csaw18_boi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/csaw18_boi.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/csaw18_getit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/csaw18_getit.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/csaw19_beleaf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/csaw19_beleaf.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/helithumper_re.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/helithumper_re.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/just_do_it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/just_do_it.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/pwn1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/pwn1.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/tamu19_pwn3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/tamu19_pwn3.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/tu18_shellaeasy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/tu18_shellaeasy.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/Challenges/tuctf17_vulnchat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/Challenges/tuctf17_vulnchat.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Nightmare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Nightmare/README.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/README.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/badchars32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/badchars32.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/badchars64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/badchars64.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/callme32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/callme32.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/callme64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/callme64.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/fluff32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/fluff32.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/fluff64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/fluff64.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/pivot32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/pivot32.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/pivot64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/pivot64.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/ret2csu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/ret2csu.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/ret2win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/ret2win.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/ret2win64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/ret2win64.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/split32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/split32.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/split64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/split64.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/write432.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/write432.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/write464.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/Challenges/write464.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/ROP-Emporium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/ROP-Emporium/README.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Memory-Corruption/level-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Memory-Corruption/level-1.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Memory-Corruption/level-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Memory-Corruption/level-2.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Memory-Corruption/level-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Memory-Corruption/level-3.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/README.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/images/valid-serial-C-source-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/images/valid-serial-C-source-code.png -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/images/valid-serial-disassembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/images/valid-serial-disassembly.png -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/level-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/level-1.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/level-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/level-2.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/level-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/level-3.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/valid_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Reverse-Engineering/valid_serial.c -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Shellcoding/level-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Shellcoding/level-1.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Shellcoding/level-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Shellcoding/level-2.md -------------------------------------------------------------------------------- /Exploit-Dev/CTF-Labs/Ret2WarGames/Shellcoding/level-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/CTF-Labs/Ret2WarGames/Shellcoding/level-3.md -------------------------------------------------------------------------------- /Exploit-Dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Exploit-Dev/README.md -------------------------------------------------------------------------------- /Kubernetes/Security-Articles/kubernetes-privilege-escalation-excessive-permissions-in-popular-platforms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Kubernetes/Security-Articles/kubernetes-privilege-escalation-excessive-permissions-in-popular-platforms.pdf -------------------------------------------------------------------------------- /MacOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/MacOS/README.md -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/README.md -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/DLL-Example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/DLL-Example/README.md -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/DLL-Example/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/DLL-Example/dllmain.c -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/DLL-Example/runHelloMaldev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/DLL-Example/runHelloMaldev.c -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Get-Username/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Get-Username/README.md -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Get-Username/gerUserNameAExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Get-Username/gerUserNameAExample.cpp -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Memory-Allocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Memory-Allocation/README.md -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Memory-Allocation/heapAllocExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Memory-Allocation/heapAllocExample.cpp -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Memory-Allocation/mallocExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Memory-Allocation/mallocExample.cpp -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Memory-Allocation/vAllocExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Memory-Allocation/vAllocExample.cpp -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Open-Process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Open-Process/README.md -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Open-Process/openProcessExample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Open-Process/openProcessExample.c -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Payload-Placement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Payload-Placement/README.md -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Payload-Placement/payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Payload-Placement/payload.c -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Payload-Placement/payloadRscExample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Payload-Placement/payloadRscExample.c -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Payload-Placement/payloadTextSection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Payload-Placement/payloadTextSection.c -------------------------------------------------------------------------------- /Mal-Dev/MalDev-Academy/Windows-API/Payload-Placement/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/MalDev-Academy/Windows-API/Payload-Placement/resource.h -------------------------------------------------------------------------------- /Mal-Dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Mal-Dev/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/README.md -------------------------------------------------------------------------------- /VR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/VR/README.md -------------------------------------------------------------------------------- /Web-Security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/README.md -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/README.md -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/Bully-Chatbot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/Bully-Chatbot.md -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/DOM-XSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/DOM-XSS.md -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/Database_Schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/Database_Schema.md -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/SQL_Injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/SQL_Injection.md -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/Score-Board.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/Score-Board.md -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/images/Chatbot_Bruteforce_Solved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/images/Chatbot_Bruteforce_Solved.png -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/images/DOM-XSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/images/DOM-XSS.png -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/images/DOM-XSS_bonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/images/DOM-XSS_bonus.png -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/images/Intruder_Chatbot_Bruteforce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/images/Intruder_Chatbot_Bruteforce.png -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/images/Intruder_Chatbot_payload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/images/Intruder_Chatbot_payload.png -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/images/score-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/images/score-board.png -------------------------------------------------------------------------------- /Web-Security/Writeups/JuiceShop/Writeups/images/search-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/JuiceShop/Writeups/images/search-apple.png -------------------------------------------------------------------------------- /Web-Security/Writeups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/README.md -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Blind_SQLi_OOB_exploit_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Blind_SQLi_OOB_exploit_res.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Blind_SQLi_OOB_req.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Blind_SQLi_OOB_req.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Blind_SQli_OOB_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Blind_SQli_OOB_res.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Comparer_res_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Comparer_res_diff.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Comparer_select_word-bytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Comparer_select_word-bytes.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Comparer_send_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Comparer_send_to.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Filter_results_comment_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Filter_results_comment_tag.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Filter_settings_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Filter_settings_.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Intruder_XFF_add_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Intruder_XFF_add_list.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Intruder_XFF_add_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Intruder_XFF_add_num.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Intruder_XFF_pitch_fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Intruder_XFF_pitch_fork.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Intruder_add_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Intruder_add_field.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Intruder_cluster_bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Intruder_cluster_bomb.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Intruder_cluster_bomb_filter_positve_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Intruder_cluster_bomb_filter_positve_res.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/SQLi_filter_bypass_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/SQLi_filter_bypass_xml.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Images/Save_results_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Images/Save_results_table.png -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Labs/Authentication/Username_Enum_subtly_diff_res.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Labs/Authentication/Username_Enum_subtly_diff_res.md -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Labs/Authentication/Username_Enum_via_response_times.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Labs/Authentication/Username_Enum_via_response_times.md -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/README.md -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/Authentication/Broken_bruteforce_protect_IP_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/Authentication/Broken_bruteforce_protect_IP_block.py -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/Authentication/Username_Enum_response_times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/Authentication/Username_Enum_response_times.py -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/Authentication/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/Authentication/passwords.txt -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/Authentication/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/Authentication/users.txt -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/SQLi_examine_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/SQLi_examine_db.py -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/SQLi_filter_bypass_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/SQLi_filter_bypass_xml.py -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_OOB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_OOB.py -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_OOB_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_OOB_exploit.py -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_conditional_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_conditional_errors.py -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_conditional_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_conditional_res.py -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_time_delays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_time_delays.py -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_time_delays_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_time_delays_exploit.py -------------------------------------------------------------------------------- /Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_visible_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root-at-iyn/Offensive-Security/HEAD/Web-Security/Writeups/Web-Security-Academy/Scripts/SQLi/blindSQLi_visible_errors.py --------------------------------------------------------------------------------