├── .gitignore ├── InsecureProgramming ├── Makefile ├── stack1.c ├── stack2.c ├── stack3.c ├── stack4.c ├── stack5.c └── stack6.c ├── Kernel ├── .gitignore ├── Makefile └── helloWorld.c ├── Makefile ├── README.md ├── SystemsProgramming ├── Wk1 │ ├── hw_bytes.c │ └── hw_write.c ├── Wk2 │ └── wk2.c ├── const_pointer.c └── q1_1.c ├── auth_ovflw.c ├── enc ├── enc.c ├── fmt_strings.c ├── fmt_vln.c ├── getenv.c └── notesearch_exp.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/.gitignore -------------------------------------------------------------------------------- /InsecureProgramming/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/InsecureProgramming/Makefile -------------------------------------------------------------------------------- /InsecureProgramming/stack1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/InsecureProgramming/stack1.c -------------------------------------------------------------------------------- /InsecureProgramming/stack2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/InsecureProgramming/stack2.c -------------------------------------------------------------------------------- /InsecureProgramming/stack3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/InsecureProgramming/stack3.c -------------------------------------------------------------------------------- /InsecureProgramming/stack4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/InsecureProgramming/stack4.c -------------------------------------------------------------------------------- /InsecureProgramming/stack5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/InsecureProgramming/stack5.c -------------------------------------------------------------------------------- /InsecureProgramming/stack6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/InsecureProgramming/stack6.c -------------------------------------------------------------------------------- /Kernel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/Kernel/.gitignore -------------------------------------------------------------------------------- /Kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/Kernel/Makefile -------------------------------------------------------------------------------- /Kernel/helloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/Kernel/helloWorld.c -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/README.md -------------------------------------------------------------------------------- /SystemsProgramming/Wk1/hw_bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/SystemsProgramming/Wk1/hw_bytes.c -------------------------------------------------------------------------------- /SystemsProgramming/Wk1/hw_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/SystemsProgramming/Wk1/hw_write.c -------------------------------------------------------------------------------- /SystemsProgramming/Wk2/wk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/SystemsProgramming/Wk2/wk2.c -------------------------------------------------------------------------------- /SystemsProgramming/const_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/SystemsProgramming/const_pointer.c -------------------------------------------------------------------------------- /SystemsProgramming/q1_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/SystemsProgramming/q1_1.c -------------------------------------------------------------------------------- /auth_ovflw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/auth_ovflw.c -------------------------------------------------------------------------------- /enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/enc -------------------------------------------------------------------------------- /enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/enc.c -------------------------------------------------------------------------------- /fmt_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/fmt_strings.c -------------------------------------------------------------------------------- /fmt_vln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/fmt_vln.c -------------------------------------------------------------------------------- /getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/getenv.c -------------------------------------------------------------------------------- /notesearch_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/211217613/C-Hacking/HEAD/notesearch_exp.c --------------------------------------------------------------------------------