├── LICENSE ├── README.md ├── exploit-exercises.com ├── level08.png ├── nebula.md └── protostar.md ├── hacking-lab.com ├── 1600 ZAP Proxy Writeup.md ├── 1600 ZAP Proxy Writeup.pdf ├── 1600_snap_01.png ├── 1600_snap_02.png ├── 1600_snap_03.png ├── 1600_snap_05.png ├── 5020 Password protected ZIP Writeup.md ├── 5020 Password protected ZIP Writeup.pdf ├── 5020_snap_01.png ├── 6111 SQL Injection Attack Writeup.md ├── 6111 SQL Injection Attack Writeup.pdf └── 6111_snap_01.png ├── opensource ├── A deadlock bug fix solution for gperftools issues 775.pdf ├── patch_issue_775.patch └── redis_vul_0906_2016 │ ├── README.md │ ├── README.pdf │ ├── patch │ └── redis_vul_0906_2016.patch │ └── poc │ ├── buffer_over_read.rdb │ ├── clean.sh │ ├── install_redis.sh │ └── poc.sh ├── preparing_cuckoo.sh ├── pwnable.kr └── 01_level.md ├── sec_media └── README.md └── shellcode └── linux ├── execve ├── README.md ├── c │ ├── Makefile │ └── execve.c ├── i386 │ ├── Makefile │ └── shellcode.asm └── x64 │ ├── Makefile │ └── shellcode.asm └── system └── c ├── Makefile └── system.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/README.md -------------------------------------------------------------------------------- /exploit-exercises.com/level08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/exploit-exercises.com/level08.png -------------------------------------------------------------------------------- /exploit-exercises.com/nebula.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/exploit-exercises.com/nebula.md -------------------------------------------------------------------------------- /exploit-exercises.com/protostar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/exploit-exercises.com/protostar.md -------------------------------------------------------------------------------- /hacking-lab.com/1600 ZAP Proxy Writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/1600 ZAP Proxy Writeup.md -------------------------------------------------------------------------------- /hacking-lab.com/1600 ZAP Proxy Writeup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/1600 ZAP Proxy Writeup.pdf -------------------------------------------------------------------------------- /hacking-lab.com/1600_snap_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/1600_snap_01.png -------------------------------------------------------------------------------- /hacking-lab.com/1600_snap_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/1600_snap_02.png -------------------------------------------------------------------------------- /hacking-lab.com/1600_snap_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/1600_snap_03.png -------------------------------------------------------------------------------- /hacking-lab.com/1600_snap_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/1600_snap_05.png -------------------------------------------------------------------------------- /hacking-lab.com/5020 Password protected ZIP Writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/5020 Password protected ZIP Writeup.md -------------------------------------------------------------------------------- /hacking-lab.com/5020 Password protected ZIP Writeup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/5020 Password protected ZIP Writeup.pdf -------------------------------------------------------------------------------- /hacking-lab.com/5020_snap_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/5020_snap_01.png -------------------------------------------------------------------------------- /hacking-lab.com/6111 SQL Injection Attack Writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/6111 SQL Injection Attack Writeup.md -------------------------------------------------------------------------------- /hacking-lab.com/6111 SQL Injection Attack Writeup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/6111 SQL Injection Attack Writeup.pdf -------------------------------------------------------------------------------- /hacking-lab.com/6111_snap_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/hacking-lab.com/6111_snap_01.png -------------------------------------------------------------------------------- /opensource/A deadlock bug fix solution for gperftools issues 775.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/opensource/A deadlock bug fix solution for gperftools issues 775.pdf -------------------------------------------------------------------------------- /opensource/patch_issue_775.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/opensource/patch_issue_775.patch -------------------------------------------------------------------------------- /opensource/redis_vul_0906_2016/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/opensource/redis_vul_0906_2016/README.md -------------------------------------------------------------------------------- /opensource/redis_vul_0906_2016/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/opensource/redis_vul_0906_2016/README.pdf -------------------------------------------------------------------------------- /opensource/redis_vul_0906_2016/patch/redis_vul_0906_2016.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/opensource/redis_vul_0906_2016/patch/redis_vul_0906_2016.patch -------------------------------------------------------------------------------- /opensource/redis_vul_0906_2016/poc/buffer_over_read.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/opensource/redis_vul_0906_2016/poc/buffer_over_read.rdb -------------------------------------------------------------------------------- /opensource/redis_vul_0906_2016/poc/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/opensource/redis_vul_0906_2016/poc/clean.sh -------------------------------------------------------------------------------- /opensource/redis_vul_0906_2016/poc/install_redis.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo apt-get install -y redis-server 4 | -------------------------------------------------------------------------------- /opensource/redis_vul_0906_2016/poc/poc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/opensource/redis_vul_0906_2016/poc/poc.sh -------------------------------------------------------------------------------- /preparing_cuckoo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/preparing_cuckoo.sh -------------------------------------------------------------------------------- /pwnable.kr/01_level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/pwnable.kr/01_level.md -------------------------------------------------------------------------------- /sec_media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/sec_media/README.md -------------------------------------------------------------------------------- /shellcode/linux/execve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/shellcode/linux/execve/README.md -------------------------------------------------------------------------------- /shellcode/linux/execve/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/shellcode/linux/execve/c/Makefile -------------------------------------------------------------------------------- /shellcode/linux/execve/c/execve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/shellcode/linux/execve/c/execve.c -------------------------------------------------------------------------------- /shellcode/linux/execve/i386/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/shellcode/linux/execve/i386/Makefile -------------------------------------------------------------------------------- /shellcode/linux/execve/i386/shellcode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/shellcode/linux/execve/i386/shellcode.asm -------------------------------------------------------------------------------- /shellcode/linux/execve/x64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/shellcode/linux/execve/x64/Makefile -------------------------------------------------------------------------------- /shellcode/linux/execve/x64/shellcode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/shellcode/linux/execve/x64/shellcode.asm -------------------------------------------------------------------------------- /shellcode/linux/system/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingleyang/security_ctf/HEAD/shellcode/linux/system/c/Makefile -------------------------------------------------------------------------------- /shellcode/linux/system/c/system.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(){ 4 | system("ls"); 5 | return 0; 6 | } --------------------------------------------------------------------------------