├── .gitignore ├── AIS3_Pre_exam_2015-Bin3 ├── bin3 ├── solve.sh ├── solve_angr.py └── solve_rev.py ├── AIS3_Pre_exam_2016-Binary2 ├── binary2 ├── solve.sh ├── solve_rev.py └── solve_sc.py ├── AIS3_Pre_exam_2016-Binary3 ├── README.md ├── binary3 ├── solve.sh ├── solve_angr.py └── solve_z3.py ├── EasyCTF_LuckyGuess ├── LuckyGuess ├── README.md ├── hook.c └── solve.sh ├── EasyCTF_ezreverse ├── defs.h ├── ezreverse ├── ezreverse.c └── solve.sh ├── EasyCTF_liar ├── liar └── solve.sh ├── LICENSE ├── NoConName2014_inBINcible ├── inbincible ├── solve.py └── solve.sh ├── README.md ├── 林思辰_search ├── search └── solve.sh ├── 陳廷宇_Baby_Assembly ├── BabyAssembly.exe ├── README.md ├── solve.py └── solve.sh ├── 陳廷宇_Equation ├── Equation ├── solve.py └── solve.sh └── 陳廷宇_XorZero ├── Encrypted ├── README.md └── solve.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/.gitignore -------------------------------------------------------------------------------- /AIS3_Pre_exam_2015-Bin3/bin3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2015-Bin3/bin3 -------------------------------------------------------------------------------- /AIS3_Pre_exam_2015-Bin3/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2015-Bin3/solve.sh -------------------------------------------------------------------------------- /AIS3_Pre_exam_2015-Bin3/solve_angr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2015-Bin3/solve_angr.py -------------------------------------------------------------------------------- /AIS3_Pre_exam_2015-Bin3/solve_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2015-Bin3/solve_rev.py -------------------------------------------------------------------------------- /AIS3_Pre_exam_2016-Binary2/binary2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2016-Binary2/binary2 -------------------------------------------------------------------------------- /AIS3_Pre_exam_2016-Binary2/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2016-Binary2/solve.sh -------------------------------------------------------------------------------- /AIS3_Pre_exam_2016-Binary2/solve_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2016-Binary2/solve_rev.py -------------------------------------------------------------------------------- /AIS3_Pre_exam_2016-Binary2/solve_sc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2016-Binary2/solve_sc.py -------------------------------------------------------------------------------- /AIS3_Pre_exam_2016-Binary3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2016-Binary3/README.md -------------------------------------------------------------------------------- /AIS3_Pre_exam_2016-Binary3/binary3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2016-Binary3/binary3 -------------------------------------------------------------------------------- /AIS3_Pre_exam_2016-Binary3/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2016-Binary3/solve.sh -------------------------------------------------------------------------------- /AIS3_Pre_exam_2016-Binary3/solve_angr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2016-Binary3/solve_angr.py -------------------------------------------------------------------------------- /AIS3_Pre_exam_2016-Binary3/solve_z3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/AIS3_Pre_exam_2016-Binary3/solve_z3.py -------------------------------------------------------------------------------- /EasyCTF_LuckyGuess/LuckyGuess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/EasyCTF_LuckyGuess/LuckyGuess -------------------------------------------------------------------------------- /EasyCTF_LuckyGuess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/EasyCTF_LuckyGuess/README.md -------------------------------------------------------------------------------- /EasyCTF_LuckyGuess/hook.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int rand(void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /EasyCTF_LuckyGuess/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/EasyCTF_LuckyGuess/solve.sh -------------------------------------------------------------------------------- /EasyCTF_ezreverse/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/EasyCTF_ezreverse/defs.h -------------------------------------------------------------------------------- /EasyCTF_ezreverse/ezreverse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/EasyCTF_ezreverse/ezreverse -------------------------------------------------------------------------------- /EasyCTF_ezreverse/ezreverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/EasyCTF_ezreverse/ezreverse.c -------------------------------------------------------------------------------- /EasyCTF_ezreverse/solve.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./ezreverse g3zkm 4 | -------------------------------------------------------------------------------- /EasyCTF_liar/liar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/EasyCTF_liar/liar -------------------------------------------------------------------------------- /EasyCTF_liar/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/EasyCTF_liar/solve.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/LICENSE -------------------------------------------------------------------------------- /NoConName2014_inBINcible/inbincible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/NoConName2014_inBINcible/inbincible -------------------------------------------------------------------------------- /NoConName2014_inBINcible/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/NoConName2014_inBINcible/solve.py -------------------------------------------------------------------------------- /NoConName2014_inBINcible/solve.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -ex 4 | 5 | gdb -x ./solve.py 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/README.md -------------------------------------------------------------------------------- /林思辰_search/search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/林思辰_search/search -------------------------------------------------------------------------------- /林思辰_search/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/林思辰_search/solve.sh -------------------------------------------------------------------------------- /陳廷宇_Baby_Assembly/BabyAssembly.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/陳廷宇_Baby_Assembly/BabyAssembly.exe -------------------------------------------------------------------------------- /陳廷宇_Baby_Assembly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/陳廷宇_Baby_Assembly/README.md -------------------------------------------------------------------------------- /陳廷宇_Baby_Assembly/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/陳廷宇_Baby_Assembly/solve.py -------------------------------------------------------------------------------- /陳廷宇_Baby_Assembly/solve.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -ex 4 | 5 | python3 solve.py 6 | -------------------------------------------------------------------------------- /陳廷宇_Equation/Equation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/陳廷宇_Equation/Equation -------------------------------------------------------------------------------- /陳廷宇_Equation/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/陳廷宇_Equation/solve.py -------------------------------------------------------------------------------- /陳廷宇_Equation/solve.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -ex 4 | 5 | python3 solve.py 6 | -------------------------------------------------------------------------------- /陳廷宇_XorZero/Encrypted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/陳廷宇_XorZero/Encrypted -------------------------------------------------------------------------------- /陳廷宇_XorZero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/陳廷宇_XorZero/README.md -------------------------------------------------------------------------------- /陳廷宇_XorZero/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5teven1in/Reverse-CTF-writeups/HEAD/陳廷宇_XorZero/solve.sh --------------------------------------------------------------------------------