├── Heap-Exploitation ├── README.md ├── fastbin1.zip ├── images │ ├── fastbin-global-max-fast-1.png │ ├── fastbin-global-max-fast-2.png │ ├── fastbin-global-max-fast-3.png │ ├── fastbin-global-max-fast-4.png │ ├── fastbin-global-max-fast-5.png │ ├── fastbin-global-max-fast-6.png │ ├── free-same-chunk-with-different-size-1.png │ ├── free-same-chunk-with-different-size-2.png │ ├── free-same-chunk-with-different-size-3.png │ ├── special-technique-for-libc-2.23-1.png │ ├── unsorted-bin-1.png │ ├── unsorted-bin-2.png │ ├── unsorted-bin-3.png │ ├── unsorted-bin-4.png │ ├── unsorted-bin-5.png │ └── unsorted-bin-6.png └── test │ ├── a.out │ ├── int_free.c │ ├── r.c │ └── unlink_chunk.c ├── README.md ├── Ret2dlresolve-64bit ├── README.md └── images │ ├── JMPREL.png │ ├── check_struct_on_stack.png │ ├── check_struct_reloc_arg_sigsegv.png │ ├── get_reloc_arg.png │ ├── libc_get_version_sigsegv.png │ └── register.png ├── Windows-Exploitation └── README.md ├── images ├── gdb_test_custom_function.png ├── gdbinit_add_custom_function_written_in_python.png ├── gdbinit_define_function.png └── ulimit-show.png └── others ├── shellcode ├── README.md └── generate.py └── z3 ├── README.md └── images ├── bitwise-operators.png ├── multiple-result-bitwise-error.png ├── multiple-result.png ├── system-with-three-linear-equations.png └── system-with-two-linear-equations.png /Heap-Exploitation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/README.md -------------------------------------------------------------------------------- /Heap-Exploitation/fastbin1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/fastbin1.zip -------------------------------------------------------------------------------- /Heap-Exploitation/images/fastbin-global-max-fast-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/fastbin-global-max-fast-1.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/fastbin-global-max-fast-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/fastbin-global-max-fast-2.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/fastbin-global-max-fast-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/fastbin-global-max-fast-3.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/fastbin-global-max-fast-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/fastbin-global-max-fast-4.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/fastbin-global-max-fast-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/fastbin-global-max-fast-5.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/fastbin-global-max-fast-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/fastbin-global-max-fast-6.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/free-same-chunk-with-different-size-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/free-same-chunk-with-different-size-1.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/free-same-chunk-with-different-size-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/free-same-chunk-with-different-size-2.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/free-same-chunk-with-different-size-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/free-same-chunk-with-different-size-3.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/special-technique-for-libc-2.23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/special-technique-for-libc-2.23-1.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/unsorted-bin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/unsorted-bin-1.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/unsorted-bin-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/unsorted-bin-2.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/unsorted-bin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/unsorted-bin-3.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/unsorted-bin-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/unsorted-bin-4.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/unsorted-bin-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/unsorted-bin-5.png -------------------------------------------------------------------------------- /Heap-Exploitation/images/unsorted-bin-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/images/unsorted-bin-6.png -------------------------------------------------------------------------------- /Heap-Exploitation/test/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/test/a.out -------------------------------------------------------------------------------- /Heap-Exploitation/test/int_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/test/int_free.c -------------------------------------------------------------------------------- /Heap-Exploitation/test/r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/test/r.c -------------------------------------------------------------------------------- /Heap-Exploitation/test/unlink_chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Heap-Exploitation/test/unlink_chunk.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/README.md -------------------------------------------------------------------------------- /Ret2dlresolve-64bit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Ret2dlresolve-64bit/README.md -------------------------------------------------------------------------------- /Ret2dlresolve-64bit/images/JMPREL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Ret2dlresolve-64bit/images/JMPREL.png -------------------------------------------------------------------------------- /Ret2dlresolve-64bit/images/check_struct_on_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Ret2dlresolve-64bit/images/check_struct_on_stack.png -------------------------------------------------------------------------------- /Ret2dlresolve-64bit/images/check_struct_reloc_arg_sigsegv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Ret2dlresolve-64bit/images/check_struct_reloc_arg_sigsegv.png -------------------------------------------------------------------------------- /Ret2dlresolve-64bit/images/get_reloc_arg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Ret2dlresolve-64bit/images/get_reloc_arg.png -------------------------------------------------------------------------------- /Ret2dlresolve-64bit/images/libc_get_version_sigsegv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Ret2dlresolve-64bit/images/libc_get_version_sigsegv.png -------------------------------------------------------------------------------- /Ret2dlresolve-64bit/images/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Ret2dlresolve-64bit/images/register.png -------------------------------------------------------------------------------- /Windows-Exploitation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/Windows-Exploitation/README.md -------------------------------------------------------------------------------- /images/gdb_test_custom_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/images/gdb_test_custom_function.png -------------------------------------------------------------------------------- /images/gdbinit_add_custom_function_written_in_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/images/gdbinit_add_custom_function_written_in_python.png -------------------------------------------------------------------------------- /images/gdbinit_define_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/images/gdbinit_define_function.png -------------------------------------------------------------------------------- /images/ulimit-show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/images/ulimit-show.png -------------------------------------------------------------------------------- /others/shellcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/others/shellcode/README.md -------------------------------------------------------------------------------- /others/shellcode/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/others/shellcode/generate.py -------------------------------------------------------------------------------- /others/z3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/others/z3/README.md -------------------------------------------------------------------------------- /others/z3/images/bitwise-operators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/others/z3/images/bitwise-operators.png -------------------------------------------------------------------------------- /others/z3/images/multiple-result-bitwise-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/others/z3/images/multiple-result-bitwise-error.png -------------------------------------------------------------------------------- /others/z3/images/multiple-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/others/z3/images/multiple-result.png -------------------------------------------------------------------------------- /others/z3/images/system-with-three-linear-equations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/others/z3/images/system-with-three-linear-equations.png -------------------------------------------------------------------------------- /others/z3/images/system-with-two-linear-equations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanhuutri/CTFNote/HEAD/others/z3/images/system-with-two-linear-equations.png --------------------------------------------------------------------------------