├── LICENSE ├── anti ├── 1 ├── 2 ├── 3 ├── 1.c ├── 2.c ├── 3.c ├── Makefile ├── fakemain ├── fakemain.c ├── instructions ├── instructions.c ├── nostrings ├── nostrings.c ├── ptrace ├── ptrace.c ├── sigtrap ├── sigtrap.c ├── static └── stripped ├── codes ├── Makefile ├── args ├── args.c ├── args_32 ├── function ├── function.c ├── function_32 ├── if ├── if.c ├── if_32 ├── loop ├── loop.c ├── loop_32 ├── sections ├── sections.c ├── sections_32 ├── stack ├── stack.c └── stack_32 ├── crackmes ├── bomblab ├── crackme ├── crackme0x00 ├── neophyte ├── order.txt ├── r100 ├── re0x02 ├── re0x03 ├── re20 ├── re30 └── re50 ├── other ├── 1 ├── 2 └── 3 ├── re.pdf └── readme.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/LICENSE -------------------------------------------------------------------------------- /anti/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/1 -------------------------------------------------------------------------------- /anti/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/1.c -------------------------------------------------------------------------------- /anti/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/2 -------------------------------------------------------------------------------- /anti/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/2.c -------------------------------------------------------------------------------- /anti/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/3 -------------------------------------------------------------------------------- /anti/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/3.c -------------------------------------------------------------------------------- /anti/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/Makefile -------------------------------------------------------------------------------- /anti/fakemain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/fakemain -------------------------------------------------------------------------------- /anti/fakemain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/fakemain.c -------------------------------------------------------------------------------- /anti/instructions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/instructions -------------------------------------------------------------------------------- /anti/instructions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/instructions.c -------------------------------------------------------------------------------- /anti/nostrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/nostrings -------------------------------------------------------------------------------- /anti/nostrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/nostrings.c -------------------------------------------------------------------------------- /anti/ptrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/ptrace -------------------------------------------------------------------------------- /anti/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/ptrace.c -------------------------------------------------------------------------------- /anti/sigtrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/sigtrap -------------------------------------------------------------------------------- /anti/sigtrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/sigtrap.c -------------------------------------------------------------------------------- /anti/static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/static -------------------------------------------------------------------------------- /anti/stripped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/anti/stripped -------------------------------------------------------------------------------- /codes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/Makefile -------------------------------------------------------------------------------- /codes/args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/args -------------------------------------------------------------------------------- /codes/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/args.c -------------------------------------------------------------------------------- /codes/args_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/args_32 -------------------------------------------------------------------------------- /codes/function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/function -------------------------------------------------------------------------------- /codes/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/function.c -------------------------------------------------------------------------------- /codes/function_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/function_32 -------------------------------------------------------------------------------- /codes/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/if -------------------------------------------------------------------------------- /codes/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/if.c -------------------------------------------------------------------------------- /codes/if_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/if_32 -------------------------------------------------------------------------------- /codes/loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/loop -------------------------------------------------------------------------------- /codes/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/loop.c -------------------------------------------------------------------------------- /codes/loop_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/loop_32 -------------------------------------------------------------------------------- /codes/sections: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/sections -------------------------------------------------------------------------------- /codes/sections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/sections.c -------------------------------------------------------------------------------- /codes/sections_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/sections_32 -------------------------------------------------------------------------------- /codes/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/stack -------------------------------------------------------------------------------- /codes/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/stack.c -------------------------------------------------------------------------------- /codes/stack_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/codes/stack_32 -------------------------------------------------------------------------------- /crackmes/bomblab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/crackmes/bomblab -------------------------------------------------------------------------------- /crackmes/crackme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/crackmes/crackme -------------------------------------------------------------------------------- /crackmes/crackme0x00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/crackmes/crackme0x00 -------------------------------------------------------------------------------- /crackmes/neophyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/crackmes/neophyte -------------------------------------------------------------------------------- /crackmes/order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/crackmes/order.txt -------------------------------------------------------------------------------- /crackmes/r100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/crackmes/r100 -------------------------------------------------------------------------------- /crackmes/re0x02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/crackmes/re0x02 -------------------------------------------------------------------------------- /crackmes/re0x03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/crackmes/re0x03 -------------------------------------------------------------------------------- /crackmes/re20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/crackmes/re20 -------------------------------------------------------------------------------- /crackmes/re30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/crackmes/re30 -------------------------------------------------------------------------------- /crackmes/re50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/crackmes/re50 -------------------------------------------------------------------------------- /other/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/other/1 -------------------------------------------------------------------------------- /other/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/other/2 -------------------------------------------------------------------------------- /other/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/other/3 -------------------------------------------------------------------------------- /re.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/re.pdf -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkw657/reversing_slides/HEAD/readme.md --------------------------------------------------------------------------------