├── .gitignore ├── .gitlab-ci.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── OSINT │ └── socmint.md ├── android │ ├── 01-android.md │ ├── 02-adb.md │ ├── 03-frida.md │ └── 04-root-avd-device.md ├── assets │ ├── img │ │ ├── android │ │ │ └── your_virtual_devices.png │ │ ├── favicon.ico │ │ └── web │ │ │ ├── GraphQL_Batching_Attack.png │ │ │ ├── burp_and_scope.png │ │ │ ├── burp_darkmode.png │ │ │ ├── burp_intercept_false.png │ │ │ ├── burp_intruder_grep_match.png │ │ │ ├── burp_js_redirection.png │ │ │ ├── burp_match_replace_xss.png │ │ │ ├── burp_remove_first_line_intruder.png │ │ │ ├── burp_remove_websockets.png │ │ │ ├── burp_response_autoscroll.png │ │ │ ├── burp_sitemap_scope.png │ │ │ └── burp_target_sitemap_search.png │ ├── js │ │ ├── config.js │ │ ├── mathjax.js │ │ └── stats.js │ └── txt │ │ ├── all-html-events.txt │ │ └── all-html-tags.txt ├── crypto │ ├── 01-introduction.md │ ├── aes │ │ └── padding-oracle.md │ ├── diffie-hellman │ │ └── 01-introduction.md │ ├── modular-arithmetic │ │ ├── 01-introduction.md │ │ ├── 02-quadratic-residue.md │ │ └── 05-chinese-remainder-theorem.md │ └── rsa │ │ ├── 01-introduction.md │ │ ├── 02-small-prime.md │ │ ├── 03-same-modulus.md │ │ ├── 04-k-approximation.md │ │ ├── 05-small-exponent.md │ │ ├── 06-sum-of-primes.md │ │ ├── 07-wiener-attack.md │ │ ├── 08-hastad-broadcast-attack.md │ │ └── 09-polynomials-pq-generation.md ├── index.md ├── malware │ ├── anti-reverse │ │ ├── 02-compiler.md │ │ ├── 03-fileformat.md │ │ └── 04-string.md │ ├── av-evasion.md │ ├── command_control.md │ ├── detection.md │ ├── others.md │ ├── persistence.md │ └── yara.md ├── others │ ├── devsecops.md │ ├── linux │ │ ├── commands │ │ │ ├── find.md │ │ │ ├── socat.md │ │ │ ├── stat.md │ │ │ └── xargs.md │ │ ├── install-arch-linux.md │ │ └── linux.md │ ├── others.md │ ├── tmux-cheatsheet.md │ ├── vim-cheatsheet.md │ └── windows-intro.md ├── pentest │ ├── active-directory │ │ ├── 01-activedirectory.md │ │ ├── 02-kerberos.md │ │ ├── 03-enumeration.md │ │ └── 04-exploit.md │ ├── c2 │ │ ├── 01-meterpreter.md │ │ └── 02-empire.md │ ├── networks │ │ ├── pivot.md │ │ ├── servers.md │ │ └── tricks.md │ ├── privesc │ │ ├── linux.md │ │ └── windows.md │ ├── revshell.md │ ├── services.md │ ├── tips.md │ ├── tools │ │ ├── fcrackzip.md │ │ ├── hydra.md │ │ ├── johntheripper.md │ │ ├── metasploit.md │ │ ├── nmap.md │ │ └── wpscan.md │ ├── wifi │ │ ├── 01-introduction.md │ │ ├── 03-channels.md │ │ ├── 05-attacks.md │ │ └── 10-exploitation.md │ └── windows.md ├── programming │ ├── charp │ │ ├── 01-csharp-malware.md │ │ ├── 02-csharp-evasion.md │ │ └── index.md │ ├── go.md │ ├── javascript.md │ ├── powershell.md │ └── python │ │ ├── introduction.md │ │ └── security.md ├── pwn │ ├── assembly.md │ ├── binary-protections.md │ ├── buffer-overflow │ │ ├── 01-calling-function-with-args-x64.md │ │ ├── 10-bypassing-static-canary.md │ │ ├── 20-rop-x64-execve-syscall.md │ │ └── 30-ret2libc-x64-aslr.md │ ├── format-string │ │ ├── 01-introduction-format-string.md │ │ ├── 02-leak-the-stack.md │ │ └── 03-overwrite-address.md │ ├── gdb.md │ ├── heap │ │ └── 01-introduction-heap.md │ ├── mona.md │ ├── pwntools.md │ └── shellcode │ │ ├── 01-introduction.md │ │ ├── 05-writing.md │ │ └── 10-exploitation.md ├── reverse │ ├── assembly │ │ └── x86-assembly.md │ ├── autoit.md │ ├── ghidra.md │ ├── hook.md │ ├── index.md │ ├── practical-malware-analysis.md │ └── stripped-binary.md └── web │ ├── JWT.md │ ├── OAuth.md │ ├── XXE.md │ ├── authentication.md │ ├── bugbounty │ ├── 01-enumeration.md │ ├── 02-scanner.md │ ├── 05-reports.md │ └── 06-uncommon-vulns.md │ ├── burpsuite │ ├── intruder.md │ ├── others.md │ ├── proxy.md │ └── target.md │ ├── business-logic.md │ ├── cache-poisoning.md │ ├── clickjacking.md │ ├── clientside │ ├── 01-introduction.md │ ├── 02-CSRF.md │ ├── 03-XSS.md │ ├── 04-prototype-pollution.md │ └── 05-cors.md │ ├── ctf │ └── web_academy.md │ ├── deserialization.md │ ├── dom-clobbering.md │ ├── file-upload.md │ ├── host-header-attack.md │ ├── php.md │ ├── request-smuggling.md │ ├── sql-injection.md │ ├── websocket.md │ └── wordpress.md └── mkdocs.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .obsidian/ 2 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/README.md -------------------------------------------------------------------------------- /docs/OSINT/socmint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/OSINT/socmint.md -------------------------------------------------------------------------------- /docs/android/01-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/android/01-android.md -------------------------------------------------------------------------------- /docs/android/02-adb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/android/02-adb.md -------------------------------------------------------------------------------- /docs/android/03-frida.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/android/03-frida.md -------------------------------------------------------------------------------- /docs/android/04-root-avd-device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/android/04-root-avd-device.md -------------------------------------------------------------------------------- /docs/assets/img/android/your_virtual_devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/android/your_virtual_devices.png -------------------------------------------------------------------------------- /docs/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/favicon.ico -------------------------------------------------------------------------------- /docs/assets/img/web/GraphQL_Batching_Attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/GraphQL_Batching_Attack.png -------------------------------------------------------------------------------- /docs/assets/img/web/burp_and_scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/burp_and_scope.png -------------------------------------------------------------------------------- /docs/assets/img/web/burp_darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/burp_darkmode.png -------------------------------------------------------------------------------- /docs/assets/img/web/burp_intercept_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/burp_intercept_false.png -------------------------------------------------------------------------------- /docs/assets/img/web/burp_intruder_grep_match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/burp_intruder_grep_match.png -------------------------------------------------------------------------------- /docs/assets/img/web/burp_js_redirection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/burp_js_redirection.png -------------------------------------------------------------------------------- /docs/assets/img/web/burp_match_replace_xss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/burp_match_replace_xss.png -------------------------------------------------------------------------------- /docs/assets/img/web/burp_remove_first_line_intruder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/burp_remove_first_line_intruder.png -------------------------------------------------------------------------------- /docs/assets/img/web/burp_remove_websockets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/burp_remove_websockets.png -------------------------------------------------------------------------------- /docs/assets/img/web/burp_response_autoscroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/burp_response_autoscroll.png -------------------------------------------------------------------------------- /docs/assets/img/web/burp_sitemap_scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/burp_sitemap_scope.png -------------------------------------------------------------------------------- /docs/assets/img/web/burp_target_sitemap_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/img/web/burp_target_sitemap_search.png -------------------------------------------------------------------------------- /docs/assets/js/config.js: -------------------------------------------------------------------------------- 1 | document$.subscribe(() => { 2 | hljs.highlightAll() 3 | }) 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/js/mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/js/mathjax.js -------------------------------------------------------------------------------- /docs/assets/js/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/js/stats.js -------------------------------------------------------------------------------- /docs/assets/txt/all-html-events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/txt/all-html-events.txt -------------------------------------------------------------------------------- /docs/assets/txt/all-html-tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/assets/txt/all-html-tags.txt -------------------------------------------------------------------------------- /docs/crypto/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/01-introduction.md -------------------------------------------------------------------------------- /docs/crypto/aes/padding-oracle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/aes/padding-oracle.md -------------------------------------------------------------------------------- /docs/crypto/diffie-hellman/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/diffie-hellman/01-introduction.md -------------------------------------------------------------------------------- /docs/crypto/modular-arithmetic/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/modular-arithmetic/01-introduction.md -------------------------------------------------------------------------------- /docs/crypto/modular-arithmetic/02-quadratic-residue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/modular-arithmetic/02-quadratic-residue.md -------------------------------------------------------------------------------- /docs/crypto/modular-arithmetic/05-chinese-remainder-theorem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/modular-arithmetic/05-chinese-remainder-theorem.md -------------------------------------------------------------------------------- /docs/crypto/rsa/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/rsa/01-introduction.md -------------------------------------------------------------------------------- /docs/crypto/rsa/02-small-prime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/rsa/02-small-prime.md -------------------------------------------------------------------------------- /docs/crypto/rsa/03-same-modulus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/rsa/03-same-modulus.md -------------------------------------------------------------------------------- /docs/crypto/rsa/04-k-approximation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/rsa/04-k-approximation.md -------------------------------------------------------------------------------- /docs/crypto/rsa/05-small-exponent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/rsa/05-small-exponent.md -------------------------------------------------------------------------------- /docs/crypto/rsa/06-sum-of-primes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/rsa/06-sum-of-primes.md -------------------------------------------------------------------------------- /docs/crypto/rsa/07-wiener-attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/rsa/07-wiener-attack.md -------------------------------------------------------------------------------- /docs/crypto/rsa/08-hastad-broadcast-attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/rsa/08-hastad-broadcast-attack.md -------------------------------------------------------------------------------- /docs/crypto/rsa/09-polynomials-pq-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/crypto/rsa/09-polynomials-pq-generation.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/malware/anti-reverse/02-compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/malware/anti-reverse/02-compiler.md -------------------------------------------------------------------------------- /docs/malware/anti-reverse/03-fileformat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/malware/anti-reverse/03-fileformat.md -------------------------------------------------------------------------------- /docs/malware/anti-reverse/04-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/malware/anti-reverse/04-string.md -------------------------------------------------------------------------------- /docs/malware/av-evasion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/malware/av-evasion.md -------------------------------------------------------------------------------- /docs/malware/command_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/malware/command_control.md -------------------------------------------------------------------------------- /docs/malware/detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/malware/detection.md -------------------------------------------------------------------------------- /docs/malware/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/malware/others.md -------------------------------------------------------------------------------- /docs/malware/persistence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/malware/persistence.md -------------------------------------------------------------------------------- /docs/malware/yara.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/malware/yara.md -------------------------------------------------------------------------------- /docs/others/devsecops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/others/devsecops.md -------------------------------------------------------------------------------- /docs/others/linux/commands/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/others/linux/commands/find.md -------------------------------------------------------------------------------- /docs/others/linux/commands/socat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/others/linux/commands/socat.md -------------------------------------------------------------------------------- /docs/others/linux/commands/stat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/others/linux/commands/stat.md -------------------------------------------------------------------------------- /docs/others/linux/commands/xargs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/others/linux/commands/xargs.md -------------------------------------------------------------------------------- /docs/others/linux/install-arch-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/others/linux/install-arch-linux.md -------------------------------------------------------------------------------- /docs/others/linux/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/others/linux/linux.md -------------------------------------------------------------------------------- /docs/others/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/others/others.md -------------------------------------------------------------------------------- /docs/others/tmux-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/others/tmux-cheatsheet.md -------------------------------------------------------------------------------- /docs/others/vim-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/others/vim-cheatsheet.md -------------------------------------------------------------------------------- /docs/others/windows-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/others/windows-intro.md -------------------------------------------------------------------------------- /docs/pentest/active-directory/01-activedirectory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/active-directory/01-activedirectory.md -------------------------------------------------------------------------------- /docs/pentest/active-directory/02-kerberos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/active-directory/02-kerberos.md -------------------------------------------------------------------------------- /docs/pentest/active-directory/03-enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/active-directory/03-enumeration.md -------------------------------------------------------------------------------- /docs/pentest/active-directory/04-exploit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/active-directory/04-exploit.md -------------------------------------------------------------------------------- /docs/pentest/c2/01-meterpreter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/c2/01-meterpreter.md -------------------------------------------------------------------------------- /docs/pentest/c2/02-empire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/c2/02-empire.md -------------------------------------------------------------------------------- /docs/pentest/networks/pivot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/networks/pivot.md -------------------------------------------------------------------------------- /docs/pentest/networks/servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/networks/servers.md -------------------------------------------------------------------------------- /docs/pentest/networks/tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/networks/tricks.md -------------------------------------------------------------------------------- /docs/pentest/privesc/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/privesc/linux.md -------------------------------------------------------------------------------- /docs/pentest/privesc/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/privesc/windows.md -------------------------------------------------------------------------------- /docs/pentest/revshell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/revshell.md -------------------------------------------------------------------------------- /docs/pentest/services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/services.md -------------------------------------------------------------------------------- /docs/pentest/tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/tips.md -------------------------------------------------------------------------------- /docs/pentest/tools/fcrackzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/tools/fcrackzip.md -------------------------------------------------------------------------------- /docs/pentest/tools/hydra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/tools/hydra.md -------------------------------------------------------------------------------- /docs/pentest/tools/johntheripper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/tools/johntheripper.md -------------------------------------------------------------------------------- /docs/pentest/tools/metasploit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/tools/metasploit.md -------------------------------------------------------------------------------- /docs/pentest/tools/nmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/tools/nmap.md -------------------------------------------------------------------------------- /docs/pentest/tools/wpscan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/tools/wpscan.md -------------------------------------------------------------------------------- /docs/pentest/wifi/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/wifi/01-introduction.md -------------------------------------------------------------------------------- /docs/pentest/wifi/03-channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/wifi/03-channels.md -------------------------------------------------------------------------------- /docs/pentest/wifi/05-attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/wifi/05-attacks.md -------------------------------------------------------------------------------- /docs/pentest/wifi/10-exploitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/wifi/10-exploitation.md -------------------------------------------------------------------------------- /docs/pentest/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pentest/windows.md -------------------------------------------------------------------------------- /docs/programming/charp/01-csharp-malware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/programming/charp/01-csharp-malware.md -------------------------------------------------------------------------------- /docs/programming/charp/02-csharp-evasion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/programming/charp/02-csharp-evasion.md -------------------------------------------------------------------------------- /docs/programming/charp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/programming/charp/index.md -------------------------------------------------------------------------------- /docs/programming/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/programming/go.md -------------------------------------------------------------------------------- /docs/programming/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/programming/javascript.md -------------------------------------------------------------------------------- /docs/programming/powershell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/programming/powershell.md -------------------------------------------------------------------------------- /docs/programming/python/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/programming/python/introduction.md -------------------------------------------------------------------------------- /docs/programming/python/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/programming/python/security.md -------------------------------------------------------------------------------- /docs/pwn/assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/assembly.md -------------------------------------------------------------------------------- /docs/pwn/binary-protections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/binary-protections.md -------------------------------------------------------------------------------- /docs/pwn/buffer-overflow/01-calling-function-with-args-x64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/buffer-overflow/01-calling-function-with-args-x64.md -------------------------------------------------------------------------------- /docs/pwn/buffer-overflow/10-bypassing-static-canary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/buffer-overflow/10-bypassing-static-canary.md -------------------------------------------------------------------------------- /docs/pwn/buffer-overflow/20-rop-x64-execve-syscall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/buffer-overflow/20-rop-x64-execve-syscall.md -------------------------------------------------------------------------------- /docs/pwn/buffer-overflow/30-ret2libc-x64-aslr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/buffer-overflow/30-ret2libc-x64-aslr.md -------------------------------------------------------------------------------- /docs/pwn/format-string/01-introduction-format-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/format-string/01-introduction-format-string.md -------------------------------------------------------------------------------- /docs/pwn/format-string/02-leak-the-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/format-string/02-leak-the-stack.md -------------------------------------------------------------------------------- /docs/pwn/format-string/03-overwrite-address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/format-string/03-overwrite-address.md -------------------------------------------------------------------------------- /docs/pwn/gdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/gdb.md -------------------------------------------------------------------------------- /docs/pwn/heap/01-introduction-heap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/heap/01-introduction-heap.md -------------------------------------------------------------------------------- /docs/pwn/mona.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/mona.md -------------------------------------------------------------------------------- /docs/pwn/pwntools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/pwntools.md -------------------------------------------------------------------------------- /docs/pwn/shellcode/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/shellcode/01-introduction.md -------------------------------------------------------------------------------- /docs/pwn/shellcode/05-writing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/shellcode/05-writing.md -------------------------------------------------------------------------------- /docs/pwn/shellcode/10-exploitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/pwn/shellcode/10-exploitation.md -------------------------------------------------------------------------------- /docs/reverse/assembly/x86-assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/reverse/assembly/x86-assembly.md -------------------------------------------------------------------------------- /docs/reverse/autoit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/reverse/autoit.md -------------------------------------------------------------------------------- /docs/reverse/ghidra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/reverse/ghidra.md -------------------------------------------------------------------------------- /docs/reverse/hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/reverse/hook.md -------------------------------------------------------------------------------- /docs/reverse/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/reverse/index.md -------------------------------------------------------------------------------- /docs/reverse/practical-malware-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/reverse/practical-malware-analysis.md -------------------------------------------------------------------------------- /docs/reverse/stripped-binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/reverse/stripped-binary.md -------------------------------------------------------------------------------- /docs/web/JWT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/JWT.md -------------------------------------------------------------------------------- /docs/web/OAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/OAuth.md -------------------------------------------------------------------------------- /docs/web/XXE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/XXE.md -------------------------------------------------------------------------------- /docs/web/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/authentication.md -------------------------------------------------------------------------------- /docs/web/bugbounty/01-enumeration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/bugbounty/01-enumeration.md -------------------------------------------------------------------------------- /docs/web/bugbounty/02-scanner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/bugbounty/02-scanner.md -------------------------------------------------------------------------------- /docs/web/bugbounty/05-reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/bugbounty/05-reports.md -------------------------------------------------------------------------------- /docs/web/bugbounty/06-uncommon-vulns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/bugbounty/06-uncommon-vulns.md -------------------------------------------------------------------------------- /docs/web/burpsuite/intruder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/burpsuite/intruder.md -------------------------------------------------------------------------------- /docs/web/burpsuite/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/burpsuite/others.md -------------------------------------------------------------------------------- /docs/web/burpsuite/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/burpsuite/proxy.md -------------------------------------------------------------------------------- /docs/web/burpsuite/target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/burpsuite/target.md -------------------------------------------------------------------------------- /docs/web/business-logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/business-logic.md -------------------------------------------------------------------------------- /docs/web/cache-poisoning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/cache-poisoning.md -------------------------------------------------------------------------------- /docs/web/clickjacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/clickjacking.md -------------------------------------------------------------------------------- /docs/web/clientside/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/clientside/01-introduction.md -------------------------------------------------------------------------------- /docs/web/clientside/02-CSRF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/clientside/02-CSRF.md -------------------------------------------------------------------------------- /docs/web/clientside/03-XSS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/clientside/03-XSS.md -------------------------------------------------------------------------------- /docs/web/clientside/04-prototype-pollution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/clientside/04-prototype-pollution.md -------------------------------------------------------------------------------- /docs/web/clientside/05-cors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/clientside/05-cors.md -------------------------------------------------------------------------------- /docs/web/ctf/web_academy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/ctf/web_academy.md -------------------------------------------------------------------------------- /docs/web/deserialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/deserialization.md -------------------------------------------------------------------------------- /docs/web/dom-clobbering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/dom-clobbering.md -------------------------------------------------------------------------------- /docs/web/file-upload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/file-upload.md -------------------------------------------------------------------------------- /docs/web/host-header-attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/host-header-attack.md -------------------------------------------------------------------------------- /docs/web/php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/php.md -------------------------------------------------------------------------------- /docs/web/request-smuggling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/request-smuggling.md -------------------------------------------------------------------------------- /docs/web/sql-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/sql-injection.md -------------------------------------------------------------------------------- /docs/web/websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/websocket.md -------------------------------------------------------------------------------- /docs/web/wordpress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/docs/web/wordpress.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xanhacks/ctf-docs/HEAD/mkdocs.yml --------------------------------------------------------------------------------