├── LICENSE ├── README.md ├── bonus ├── end └── end.asm ├── env_setup.sh ├── final ├── pwn1.py ├── pwn2.py └── pwn3.py ├── lab1 ├── makefile ├── sysm4gic └── sysm4gic.c ├── lab2 ├── Makefile ├── lab2.py ├── ret2sc └── ret2sc.c ├── lab3 ├── lab3.py ├── makefile ├── r3t2lib └── r3t2lib.c ├── lab4 ├── lab4.py ├── makefile ├── simplerop_revenge └── simplerop_revenge.c ├── lab5 ├── lab5.py ├── makefile ├── ret2plt └── ret2plt.c └── practice ├── bofe4sy ├── bofe4sy.c ├── bofe4sy.py ├── orw64 ├── orw64.c └── orw64.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/README.md -------------------------------------------------------------------------------- /bonus/end: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/bonus/end -------------------------------------------------------------------------------- /bonus/end.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/bonus/end.asm -------------------------------------------------------------------------------- /env_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/env_setup.sh -------------------------------------------------------------------------------- /final/pwn1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/final/pwn1.py -------------------------------------------------------------------------------- /final/pwn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/final/pwn2.py -------------------------------------------------------------------------------- /final/pwn3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/final/pwn3.py -------------------------------------------------------------------------------- /lab1/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab1/makefile -------------------------------------------------------------------------------- /lab1/sysm4gic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab1/sysm4gic -------------------------------------------------------------------------------- /lab1/sysm4gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab1/sysm4gic.c -------------------------------------------------------------------------------- /lab2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab2/Makefile -------------------------------------------------------------------------------- /lab2/lab2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab2/lab2.py -------------------------------------------------------------------------------- /lab2/ret2sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab2/ret2sc -------------------------------------------------------------------------------- /lab2/ret2sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab2/ret2sc.c -------------------------------------------------------------------------------- /lab3/lab3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab3/lab3.py -------------------------------------------------------------------------------- /lab3/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab3/makefile -------------------------------------------------------------------------------- /lab3/r3t2lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab3/r3t2lib -------------------------------------------------------------------------------- /lab3/r3t2lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab3/r3t2lib.c -------------------------------------------------------------------------------- /lab4/lab4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab4/lab4.py -------------------------------------------------------------------------------- /lab4/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab4/makefile -------------------------------------------------------------------------------- /lab4/simplerop_revenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab4/simplerop_revenge -------------------------------------------------------------------------------- /lab4/simplerop_revenge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab4/simplerop_revenge.c -------------------------------------------------------------------------------- /lab5/lab5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab5/lab5.py -------------------------------------------------------------------------------- /lab5/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab5/makefile -------------------------------------------------------------------------------- /lab5/ret2plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab5/ret2plt -------------------------------------------------------------------------------- /lab5/ret2plt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/lab5/ret2plt.c -------------------------------------------------------------------------------- /practice/bofe4sy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/practice/bofe4sy -------------------------------------------------------------------------------- /practice/bofe4sy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/practice/bofe4sy.c -------------------------------------------------------------------------------- /practice/bofe4sy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/practice/bofe4sy.py -------------------------------------------------------------------------------- /practice/orw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/practice/orw64 -------------------------------------------------------------------------------- /practice/orw64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/practice/orw64.c -------------------------------------------------------------------------------- /practice/orw64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scwuaptx/AIS3-2017/HEAD/practice/orw64.py --------------------------------------------------------------------------------