├── AI ├── Prompts │ └── readme.md ├── Tips.md └── readme.md ├── CRYPTO ├── CRYPTOGRAPHY.md ├── Crypto and network security │ ├── Advanced Network Technology.PDF │ ├── Mobile Computing.ppt │ ├── Networking and Security.ppt │ ├── SSL.pdf │ ├── SSL_Protocol.ppt │ ├── TLS.pdf │ ├── ch01.ppt │ ├── ch02.ppt │ ├── ch03.ppt │ ├── ch04.ppt │ ├── ch05.ppt │ ├── ch06.ppt │ ├── ch07.ppt │ ├── ch08.ppt │ ├── ch09.ppt │ ├── ch10.ppt │ ├── ch11.ppt │ ├── ch12.ppt │ ├── ch13.ppt │ ├── ch14.ppt │ ├── ch15.ppt │ ├── ch16.ppt │ ├── ch17.ppt │ ├── ch18.ppt │ ├── ch19.ppt │ ├── ch20.ppt │ └── readme.md ├── Crypto_Notes │ ├── Readme.md │ ├── lecture1.pdf │ ├── lecture2.pdf │ ├── lecture3.pdf │ ├── lecture4.pdf │ ├── lecture5.pdf │ ├── lecture6.pdf │ └── lecture7.pdf ├── Encryption │ ├── Assymetric │ │ ├── ECC │ │ │ └── readme.md │ │ ├── Elgamal │ │ │ └── reamde.md │ │ ├── PGP │ │ │ └── readme.md │ │ └── readme.md │ ├── Diffie-Hellman │ │ ├── Pohlig–Hellman algorithm │ │ │ └── readme.md │ │ └── readme.md │ ├── Symmetric │ │ ├── AES │ │ │ ├── byte-at-time ECB attack │ │ │ │ ├── readme.md │ │ │ │ └── wolv_ecb.py │ │ │ ├── computeAES.py │ │ │ └── readme.md │ │ ├── Bacon │ │ │ └── readme.md │ │ ├── EaaS │ │ │ └── readme.md │ │ ├── Enigma │ │ │ └── script1.py │ │ ├── GPG │ │ │ └── readme.md │ │ ├── OTP │ │ │ ├── Broken_otp.py │ │ │ └── readme.md │ │ ├── RC4 │ │ │ └── readme.md │ │ ├── Vigenere Cipher │ │ │ └── readme.md │ │ └── XOR │ │ │ ├── Scripts │ │ │ └── random_xor.py │ │ │ └── readme.md │ └── readme.md ├── README.md ├── RSA │ ├── Algorithms │ │ ├── PEM FILE │ │ │ └── readme.md │ │ └── RSA algo │ │ │ └── readme.md │ ├── Different attacks │ │ ├── CRT │ │ │ ├── Combinations.py │ │ │ ├── pearl_crt.py │ │ │ └── readme.md │ │ ├── Coppersmith attack │ │ │ └── readme.md │ │ ├── E very small │ │ │ ├── Attack1.py │ │ │ ├── Cube Root Attack │ │ │ │ └── readme.md │ │ │ └── readme.md │ │ ├── Factor N given e,d │ │ │ ├── RSA_Construct.py │ │ │ └── readme.md │ │ ├── Fermat's attack │ │ │ ├── readme.md │ │ │ └── solv.py │ │ ├── Franklin-reiter attack │ │ │ └── readme.md │ │ ├── Known factors attack │ │ │ └── readme.md │ │ ├── Known plaintext │ │ │ ├── Flag range known.py │ │ │ └── readme.md │ │ ├── LCG │ │ │ └── readme.md │ │ ├── ROCA │ │ │ └── readme.md │ │ ├── Weiner attack │ │ │ ├── Weiner.py │ │ │ ├── Weiner2.py │ │ │ └── readme.md │ │ ├── gcd(e,phi)>1 │ │ │ └── readme.md │ │ └── hastad_broadcast_attack │ │ │ ├── script.py │ │ │ └── scriptctf.py │ ├── Notes2.md │ ├── README.md │ ├── SAGE │ │ ├── Small Primes │ │ │ └── script.py │ │ ├── readme.md │ │ ├── sagescript1.py │ │ └── sagescript2.py │ ├── Scripts │ │ ├── Pensive-TamuCTF'23 │ │ │ └── script.py │ │ ├── one_prime_utctf.py │ │ └── small_e_utctf.py │ └── Tadpole_writeup │ │ └── readme.md ├── Scripts │ ├── CRC_check.py │ ├── Misc │ │ ├── alien.py │ │ ├── base64.py │ │ ├── blake2b_bf.py │ │ ├── decrypt_rev_pass.py │ │ └── tunes_decode.py │ ├── Multistep_cipher.py │ ├── RSA │ │ ├── Multi_prime_rsa.py │ │ ├── blind_rsa.py │ │ └── pqqp.py │ ├── Random_seed │ │ └── seed_tenable.py │ ├── baby_enc_htb.py │ └── readme.md └── Understanding Cryptography │ ├── README.md │ ├── Understanding_Cryptography_Chptr_1---Intro_to_Crypto + Historical_Ciphers.pdf │ ├── Understanding_Cryptography_Chptr_10---Digital signatures.pdf │ ├── Understanding_Cryptography_Chptr_11---Hash Functions.pdf │ ├── Understanding_Cryptography_Chptr_2---Stream_Ciphers.pdf │ ├── Understanding_Cryptography_Chptr_3---DES.pdf │ ├── Understanding_Cryptography_Chptr_4---AES.pdf │ ├── Understanding_Cryptography_Chptr_5---More_about_Block_Ciphers.pdf │ ├── Understanding_Cryptography_Chptr_6---Intro_to_Public_Key.pdf │ ├── Understanding_Cryptography_Chptr_7---The_RSA_Cryptosystem.pdf │ ├── Understanding_Cryptography_Chptr_8---Discrete_Logarithm.pdf │ └── Understanding_Cryptography_Chptr_9---ECC.pdf ├── LICENSE.md ├── LINUX ├── CTFTIME │ ├── CTF Hosting │ │ └── readme.md │ ├── Calc.cpp │ ├── Calc.py │ └── readme.md ├── Cut │ └── readme.md ├── Finding a file │ └── readme.md ├── HTB │ └── readme.md ├── Learning_websites │ └── readme.md ├── SSH │ ├── Commands │ │ ├── Env │ │ │ └── readme.md │ │ ├── Hex and base64 │ │ │ └── readme.md │ │ └── readme.md │ ├── Connections │ │ └── readme.md │ ├── Private key │ │ └── readme.md │ └── readme.md ├── Sqlite │ └── readme.md ├── Tryhackme_room │ ├── Commands │ │ └── readme.md │ ├── Linux_fundamentals1.md │ └── Linux_fundamentals2.md ├── Ubuntu │ └── commands │ │ └── readme.md └── readme.md ├── MISC ├── DBMS │ └── SQL │ │ └── readme.md ├── Google sheets │ ├── Practice │ │ └── readme.md │ └── readme.md ├── Linux commands │ └── readme.md ├── Privilege_escalation │ └── readme.md ├── Protocols │ └── FTP │ │ └── readme.md ├── Scripts │ └── minecraft_anvil.py └── readme.md ├── OSINT ├── Geoguesser │ └── readme.md └── readme.md ├── PENTEST ├── Gobuster │ └── readme.md ├── Pentester │ ├── Fundamentals │ │ └── readme.md │ ├── Principle of Security │ │ └── readme.md │ └── readme.md ├── Pre-Security │ ├── Firewall & VPN │ │ └── readme.md │ ├── Intro to Lan │ │ └── readme.md │ ├── OSI model │ │ └── readme.md │ ├── Packets and frames │ │ └── readme.md │ ├── Website working │ │ └── readme.md │ └── Windows │ │ └── readme.md ├── Protocols │ ├── FTP │ │ └── readme.md │ └── reamde.md ├── Web Hacking │ └── readme.md └── readme.md ├── PWN ├── How to approach a PWN question │ ├── 01-What is a Binary │ │ └── readme.md │ ├── 02-Assembly │ │ └── readme.md │ ├── Achieve a target value pwn │ │ └── readme.md │ ├── Examples │ │ └── readme.md │ ├── How to bypass the return address │ │ └── readme.md │ └── Walkthrough │ │ └── Jumprope.md ├── Notes of PWN │ ├── Guideline.md │ ├── Module1_Introduction.md │ ├── Module2_programming interactions.md │ ├── Module3_Misusing programs.md │ └── readme.md ├── PWN Vulns │ ├── Buffer Overflow │ │ ├── Notes1.md │ │ ├── Notes2.md │ │ └── readme.md │ ├── Format String Vuln │ │ └── readme.md │ ├── Misc │ │ └── PIE │ │ │ └── readme.md │ ├── Privilege Escalation │ │ └── readme.md │ ├── Shellcode │ │ ├── ir0nstone.py │ │ ├── readme.md │ │ └── scrip1.py │ ├── readme.md │ ├── ret2libc │ │ ├── 32bit.py │ │ ├── 64bit.py │ │ ├── automated_32.py │ │ └── readme.md │ └── ret2win │ │ ├── 64-bit │ │ └── readme.md │ │ ├── Scripts │ │ ├── param32.py │ │ ├── param64.py │ │ ├── script1.py │ │ ├── script2.py │ │ └── tjctf_1stpwn.py │ │ └── readme.md ├── PWN_2.0 │ ├── Buff_exploit.py │ ├── Canary.py │ ├── Format_specifier.py │ ├── Modify_variably.py │ ├── Shellcode.py │ ├── readme.md │ ├── ret2libc │ │ ├── Black Market - Writeup.pdf │ │ └── readme.md │ └── ret2win.py ├── Pwntools │ ├── Getting Started │ │ └── readme.md │ ├── Little endian to ascii │ │ └── readme.md │ ├── Math │ │ ├── Leisure Maths.py │ │ └── unknown iterations.py │ └── Scripts │ │ ├── Bof2.py │ │ ├── bof1.py │ │ └── readme.md ├── Py Jail │ ├── Approach │ │ └── readme.md │ ├── Blacklist │ │ ├── Examples.md │ │ └── readme.md │ ├── Payloads │ │ ├── blacklists │ │ │ └── readme.md │ │ └── readme.md │ ├── Restricted shell │ ├── readme.md │ └── vimshell │ │ ├── echoshell │ │ └── readme.md │ │ └── readme.md ├── Readme.md ├── Scripts │ ├── Format String │ │ ├── brunerctf_printf.py │ │ └── readme.md │ ├── Misc │ │ ├── Bruteforce.py │ │ ├── Numbers.py │ │ ├── cryptohack.py │ │ ├── linear_swampCTF.py │ │ ├── rickroll.py │ │ └── wxmctf_moodle.py │ ├── ROP │ │ ├── drywall_wolv.py │ │ ├── really_old_citctf.py │ │ └── rop_wxmctf.py │ ├── pwncollege │ │ └── P1.md │ ├── readme.md │ └── ret2win │ │ ├── brunerctf_othello.py │ │ ├── ritsec_addr_buff.py │ │ ├── ritsec_clue.py │ │ ├── swampctf_ret2win.py │ │ └── wxmctf_tej3m.py ├── Templates │ ├── template1.py │ └── template2.py └── Tools │ └── radare │ └── readme.md ├── README.md ├── REV ├── DIFFN_TYPES │ ├── APK │ │ └── readme.md │ ├── GO Binary │ │ └── readme.md │ ├── PYC │ │ └── readme.md │ ├── Python │ │ └── readme.md │ ├── RUST │ │ └── readme.md │ └── readme.md ├── README.md ├── SCRIPTS │ ├── Calculator.py │ ├── Rev_php.py │ ├── Xor rev.py │ └── deobfuscation.py └── solving a basic ELF 64 binary │ ├── Steps.md │ └── readme.md ├── STEGO ├── Analyzing pcapng files │ ├── DNS tunnelling │ │ └── readme.md │ ├── Filtering │ │ ├── Notes1.md │ │ └── readme.md │ ├── Mouse │ │ ├── HID.py │ │ ├── HID2.py │ │ └── readme.md │ ├── Notes │ │ └── readme.md │ ├── README.md │ ├── SMB_SMB2 │ │ └── readme.md │ ├── SSl-TSL Pvt key │ │ └── readme.md │ ├── Scripts │ │ ├── hci.py │ │ └── icmp.py │ ├── USB │ │ ├── mouse.py │ │ ├── readme.md │ │ ├── usb.py │ │ └── utctf.py │ ├── VNC │ │ └── readme.md │ └── tshark │ │ └── readme.md ├── Memory Dump │ ├── Disk Image │ │ └── readme.md │ ├── Luksy │ │ └── readme.md │ └── readme.md ├── PDF and DOCS │ └── readme.md ├── PGP Files │ └── readme.md ├── PNG XOR │ ├── Headers │ │ └── readme.md │ ├── Image dimensions using CRC hex.py │ ├── Notes │ │ └── readme.md │ ├── readme.md │ ├── script.py │ └── script2.py ├── Password cracking │ ├── Hashcat │ │ └── readme.md │ ├── Hydra │ │ └── readme.md │ ├── John the Ripper │ │ └── readme.md │ ├── fcrackzip │ │ └── readme.md │ └── readme.md ├── Practice stego images │ ├── 345.PNG │ ├── Capture.PNG │ ├── FIR.jpg │ ├── Graffiti.png │ ├── Imagee.jpg │ ├── animal.jpg │ ├── bar_final.PNG │ ├── barcode_returns.PNG │ ├── barrrrrrrrrrrrrrrrr.PNG │ ├── begulga.wav │ ├── dcode-image.png │ ├── flag.jpg │ ├── flag.png │ ├── hint.jpg │ ├── image.jpg │ └── readme.md ├── README.md ├── Registry_Forensics │ └── readme.md ├── Scripts │ ├── Base64 │ │ └── base64.py │ ├── Fix │ │ └── gif.md │ ├── PIL │ │ ├── Cursor_Tracker.py │ │ ├── Hexahue_convert.py │ │ ├── Image_comparison_tamuctf.py │ │ └── Wavfile.py │ ├── RGB │ │ ├── Alpha.py │ │ ├── Morse_pngpwd.py │ │ └── pixel.py │ ├── Wave_Steg │ │ └── diff_plane.py │ ├── ZWSP │ │ ├── Whitespace.py │ │ └── zwsp.cpp │ └── message │ │ └── readme.md ├── Steganography.md ├── Wav files │ ├── lsb.py │ └── readme.md └── XML Files │ └── readme.md └── WEB ├── Elements of webpage ├── Authentication │ └── readme.md ├── CURL │ └── readme.md └── Favicon and robots.txt │ └── readme.md ├── Images ├── My project-1 (2).png ├── apogee.png ├── bits1.png ├── bits61.png ├── discord-removebg-preview (1).png ├── discord.png ├── github-removebg-preview.png ├── github.png ├── gmail-removebg-preview.png ├── grep.gif ├── grep2.gif ├── instagram-removebg-preview.png ├── instagram.png ├── linkedin.png ├── readme.md └── untitled.png ├── Notes └── readme.md ├── Payloads ├── Ruby Injections │ └── readme.md └── readme.md ├── Php vulnerabilities ├── Bypassing strcmp │ └── readme.md ├── HTTP Head method │ ├── HTTP HEAD method trick in php scripts.pdf │ └── readme.md ├── LFI │ └── readme.md ├── Preg_replace │ └── readme.md ├── Type Juggling │ ├── Notes.md │ ├── Strict comparison │ │ └── readme.md │ ├── Writeup1.md │ └── readme.md └── readme.md ├── README.md ├── Scanning └── readme.md ├── Scripts ├── Automate Cookie change.py ├── Decode multiple qr.py ├── Requests │ ├── Gpt_tenable.py │ └── quantum.py ├── Username_bf.py ├── blindsqli.py ├── lat_long.py └── qr_gen.py ├── Tools ├── Burpsuite │ ├── Proxy │ │ ├── Payloads │ │ │ └── readme.md │ │ └── readme.md │ └── README.md ├── DIG │ └── readme.md ├── Gobuster │ └── readme.md ├── HTB │ └── readme.md ├── Hydra │ └── readme.md ├── Nikto │ └── readme.md └── Nmap │ └── readme.md ├── WEB ├── Understanding Web Exploitaion │ └── readme.md ├── Web3 │ └── readme.md ├── notes.md └── protocols │ ├── ftp │ └── readme.md │ └── smb │ └── readme.md └── Web Vulnerabilities ├── CRLF └── readme.md ├── CSRF └── readme.md ├── Changing UserAgent └── readme.md ├── Command Injection └── readme.md ├── Directory Traversal └── readme.md ├── Format String Vulnerability └── readme.md ├── IDOR └── readme.md ├── JWT └── readme.md ├── LDAP └── readme.md ├── LFI └── readme.md ├── Latex Injection └── readme.md ├── Null Byte Injection └── readme.md ├── RCE └── reverse_shell.md ├── SQLI ├── Blind Injection │ ├── Blind Xpath.py │ └── readme.md ├── Notes │ ├── Portswigger.md │ └── readme.md ├── Payloads │ └── readme.md ├── README.md ├── SQLI in tables │ ├── readme.md │ └── sqlmap.md └── admin.txt ├── SSRF ├── Scripts │ └── S1.py └── readme.md ├── SSTI ├── Template Engine │ └── readme.md ├── jinja2 │ └── readme.md └── readme.md ├── Shell Injection └── readme.md ├── XSS ├── Image payload injection │ └── readme.md ├── Notes │ └── readme.md ├── payloads │ ├── Dom-based XSS │ │ └── readme.md │ ├── Reflected XSS │ │ └── readme.md │ ├── Stored XSS │ │ └── readme.md │ └── readme.md └── readme.md └── readme.md /AI/Prompts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/AI/Prompts/readme.md -------------------------------------------------------------------------------- /AI/Tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/AI/Tips.md -------------------------------------------------------------------------------- /AI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/AI/readme.md -------------------------------------------------------------------------------- /CRYPTO/CRYPTOGRAPHY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/CRYPTOGRAPHY.md -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/Advanced Network Technology.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/Advanced Network Technology.PDF -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/Mobile Computing.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/Mobile Computing.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/Networking and Security.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/Networking and Security.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/SSL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/SSL.pdf -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/SSL_Protocol.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/SSL_Protocol.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/TLS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/TLS.pdf -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch01.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch01.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch02.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch02.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch03.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch03.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch04.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch04.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch05.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch05.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch06.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch06.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch07.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch07.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch08.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch08.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch09.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch09.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch10.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch10.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch11.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch11.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch12.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch12.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch13.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch13.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch14.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch14.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch15.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch15.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch16.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch16.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch17.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch17.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch18.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch18.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch19.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch19.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/ch20.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto and network security/ch20.ppt -------------------------------------------------------------------------------- /CRYPTO/Crypto and network security/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CRYPTO/Crypto_Notes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto_Notes/Readme.md -------------------------------------------------------------------------------- /CRYPTO/Crypto_Notes/lecture1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto_Notes/lecture1.pdf -------------------------------------------------------------------------------- /CRYPTO/Crypto_Notes/lecture2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto_Notes/lecture2.pdf -------------------------------------------------------------------------------- /CRYPTO/Crypto_Notes/lecture3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto_Notes/lecture3.pdf -------------------------------------------------------------------------------- /CRYPTO/Crypto_Notes/lecture4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto_Notes/lecture4.pdf -------------------------------------------------------------------------------- /CRYPTO/Crypto_Notes/lecture5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto_Notes/lecture5.pdf -------------------------------------------------------------------------------- /CRYPTO/Crypto_Notes/lecture6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto_Notes/lecture6.pdf -------------------------------------------------------------------------------- /CRYPTO/Crypto_Notes/lecture7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Crypto_Notes/lecture7.pdf -------------------------------------------------------------------------------- /CRYPTO/Encryption/Assymetric/ECC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Assymetric/ECC/readme.md -------------------------------------------------------------------------------- /CRYPTO/Encryption/Assymetric/Elgamal/reamde.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Assymetric/Elgamal/reamde.md -------------------------------------------------------------------------------- /CRYPTO/Encryption/Assymetric/PGP/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Assymetric/PGP/readme.md -------------------------------------------------------------------------------- /CRYPTO/Encryption/Assymetric/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CRYPTO/Encryption/Diffie-Hellman/Pohlig–Hellman algorithm/readme.md: -------------------------------------------------------------------------------- 1 | ### Pohlig–Hellman algorithm 2 | 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /CRYPTO/Encryption/Diffie-Hellman/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Diffie-Hellman/readme.md -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/AES/byte-at-time ECB attack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/AES/byte-at-time ECB attack/readme.md -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/AES/byte-at-time ECB attack/wolv_ecb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/AES/byte-at-time ECB attack/wolv_ecb.py -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/AES/computeAES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/AES/computeAES.py -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/AES/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/AES/readme.md -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/Bacon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/Bacon/readme.md -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/EaaS/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/Enigma/script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/Enigma/script1.py -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/GPG/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/GPG/readme.md -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/OTP/Broken_otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/OTP/Broken_otp.py -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/OTP/readme.md: -------------------------------------------------------------------------------- 1 | ### One time pad 2 | 3 | Security depends on the randomness of key 4 | -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/RC4/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/RC4/readme.md -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/Vigenere Cipher/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/Vigenere Cipher/readme.md -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/XOR/Scripts/random_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/XOR/Scripts/random_xor.py -------------------------------------------------------------------------------- /CRYPTO/Encryption/Symmetric/XOR/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/Symmetric/XOR/readme.md -------------------------------------------------------------------------------- /CRYPTO/Encryption/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Encryption/readme.md -------------------------------------------------------------------------------- /CRYPTO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/README.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Algorithms/PEM FILE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Algorithms/PEM FILE/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Algorithms/RSA algo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Algorithms/RSA algo/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/CRT/Combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/CRT/Combinations.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/CRT/pearl_crt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/CRT/pearl_crt.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/CRT/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/CRT/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Coppersmith attack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/Coppersmith attack/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/E very small/Attack1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/E very small/Attack1.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/E very small/Cube Root Attack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/E very small/Cube Root Attack/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/E very small/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/E very small/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Factor N given e,d/RSA_Construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/Factor N given e,d/RSA_Construct.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Factor N given e,d/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/Factor N given e,d/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Fermat's attack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/Fermat's attack/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Fermat's attack/solv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/Fermat's attack/solv.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Franklin-reiter attack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/Franklin-reiter attack/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Known factors attack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/Known factors attack/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Known plaintext/Flag range known.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/Known plaintext/Flag range known.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Known plaintext/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/LCG/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/LCG/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/ROCA/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/ROCA/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Weiner attack/Weiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/Weiner attack/Weiner.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Weiner attack/Weiner2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/Weiner attack/Weiner2.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/Weiner attack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/Weiner attack/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/gcd(e,phi)>1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/gcd(e,phi)>1/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/hastad_broadcast_attack/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/hastad_broadcast_attack/script.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Different attacks/hastad_broadcast_attack/scriptctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Different attacks/hastad_broadcast_attack/scriptctf.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Notes2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Notes2.md -------------------------------------------------------------------------------- /CRYPTO/RSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/README.md -------------------------------------------------------------------------------- /CRYPTO/RSA/SAGE/Small Primes/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/SAGE/Small Primes/script.py -------------------------------------------------------------------------------- /CRYPTO/RSA/SAGE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/SAGE/readme.md -------------------------------------------------------------------------------- /CRYPTO/RSA/SAGE/sagescript1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/SAGE/sagescript1.py -------------------------------------------------------------------------------- /CRYPTO/RSA/SAGE/sagescript2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/SAGE/sagescript2.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Scripts/Pensive-TamuCTF'23/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Scripts/Pensive-TamuCTF'23/script.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Scripts/one_prime_utctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Scripts/one_prime_utctf.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Scripts/small_e_utctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Scripts/small_e_utctf.py -------------------------------------------------------------------------------- /CRYPTO/RSA/Tadpole_writeup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/RSA/Tadpole_writeup/readme.md -------------------------------------------------------------------------------- /CRYPTO/Scripts/CRC_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/CRC_check.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/Misc/alien.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/Misc/alien.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/Misc/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/Misc/base64.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/Misc/blake2b_bf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/Misc/blake2b_bf.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/Misc/decrypt_rev_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/Misc/decrypt_rev_pass.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/Misc/tunes_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/Misc/tunes_decode.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/Multistep_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/Multistep_cipher.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/RSA/Multi_prime_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/RSA/Multi_prime_rsa.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/RSA/blind_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/RSA/blind_rsa.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/RSA/pqqp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/RSA/pqqp.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/Random_seed/seed_tenable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/Random_seed/seed_tenable.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/baby_enc_htb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Scripts/baby_enc_htb.py -------------------------------------------------------------------------------- /CRYPTO/Scripts/readme.md: -------------------------------------------------------------------------------- 1 | ### Scripts by ckc9759 2 | 3 | --- 4 | 5 | Start date - 05-05-2023 6 | -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/README.md: -------------------------------------------------------------------------------- 1 | ### `Info regarding Cryptography` 2 | 3 | Ckc9759 4 | -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_1---Intro_to_Crypto + Historical_Ciphers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_1---Intro_to_Crypto + Historical_Ciphers.pdf -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_10---Digital signatures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_10---Digital signatures.pdf -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_11---Hash Functions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_11---Hash Functions.pdf -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_2---Stream_Ciphers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_2---Stream_Ciphers.pdf -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_3---DES.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_3---DES.pdf -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_4---AES.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_4---AES.pdf -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_5---More_about_Block_Ciphers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_5---More_about_Block_Ciphers.pdf -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_6---Intro_to_Public_Key.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_6---Intro_to_Public_Key.pdf -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_7---The_RSA_Cryptosystem.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_7---The_RSA_Cryptosystem.pdf -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_8---Discrete_Logarithm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_8---Discrete_Logarithm.pdf -------------------------------------------------------------------------------- /CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_9---ECC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/CRYPTO/Understanding Cryptography/Understanding_Cryptography_Chptr_9---ECC.pdf -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LINUX/CTFTIME/CTF Hosting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/CTFTIME/CTF Hosting/readme.md -------------------------------------------------------------------------------- /LINUX/CTFTIME/Calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/CTFTIME/Calc.cpp -------------------------------------------------------------------------------- /LINUX/CTFTIME/Calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/CTFTIME/Calc.py -------------------------------------------------------------------------------- /LINUX/CTFTIME/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/CTFTIME/readme.md -------------------------------------------------------------------------------- /LINUX/Cut/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/Cut/readme.md -------------------------------------------------------------------------------- /LINUX/Finding a file/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/Finding a file/readme.md -------------------------------------------------------------------------------- /LINUX/HTB/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/HTB/readme.md -------------------------------------------------------------------------------- /LINUX/Learning_websites/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/Learning_websites/readme.md -------------------------------------------------------------------------------- /LINUX/SSH/Commands/Env/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/SSH/Commands/Env/readme.md -------------------------------------------------------------------------------- /LINUX/SSH/Commands/Hex and base64/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/SSH/Commands/Hex and base64/readme.md -------------------------------------------------------------------------------- /LINUX/SSH/Commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/SSH/Commands/readme.md -------------------------------------------------------------------------------- /LINUX/SSH/Connections/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/SSH/Connections/readme.md -------------------------------------------------------------------------------- /LINUX/SSH/Private key/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/SSH/Private key/readme.md -------------------------------------------------------------------------------- /LINUX/SSH/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/SSH/readme.md -------------------------------------------------------------------------------- /LINUX/Sqlite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/Sqlite/readme.md -------------------------------------------------------------------------------- /LINUX/Tryhackme_room/Commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/Tryhackme_room/Commands/readme.md -------------------------------------------------------------------------------- /LINUX/Tryhackme_room/Linux_fundamentals1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/Tryhackme_room/Linux_fundamentals1.md -------------------------------------------------------------------------------- /LINUX/Tryhackme_room/Linux_fundamentals2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/Tryhackme_room/Linux_fundamentals2.md -------------------------------------------------------------------------------- /LINUX/Ubuntu/commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/Ubuntu/commands/readme.md -------------------------------------------------------------------------------- /LINUX/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/LINUX/readme.md -------------------------------------------------------------------------------- /MISC/DBMS/SQL/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/MISC/DBMS/SQL/readme.md -------------------------------------------------------------------------------- /MISC/Google sheets/Practice/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/MISC/Google sheets/Practice/readme.md -------------------------------------------------------------------------------- /MISC/Google sheets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/MISC/Google sheets/readme.md -------------------------------------------------------------------------------- /MISC/Linux commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/MISC/Linux commands/readme.md -------------------------------------------------------------------------------- /MISC/Privilege_escalation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/MISC/Privilege_escalation/readme.md -------------------------------------------------------------------------------- /MISC/Protocols/FTP/readme.md: -------------------------------------------------------------------------------- 1 | ### FTP server 2 | 3 | --- 4 | 5 | Useful commands 6 | 7 | ```py 8 | LIST 9 | CWD 10 | RETR 11 | STOR 12 | ``` 13 | 14 | -------------------------------------------------------------------------------- /MISC/Scripts/minecraft_anvil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/MISC/Scripts/minecraft_anvil.py -------------------------------------------------------------------------------- /MISC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/MISC/readme.md -------------------------------------------------------------------------------- /OSINT/Geoguesser/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/OSINT/Geoguesser/readme.md -------------------------------------------------------------------------------- /OSINT/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/OSINT/readme.md -------------------------------------------------------------------------------- /PENTEST/Gobuster/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Gobuster/readme.md -------------------------------------------------------------------------------- /PENTEST/Pentester/Fundamentals/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Pentester/Fundamentals/readme.md -------------------------------------------------------------------------------- /PENTEST/Pentester/Principle of Security/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Pentester/Principle of Security/readme.md -------------------------------------------------------------------------------- /PENTEST/Pentester/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Pentester/readme.md -------------------------------------------------------------------------------- /PENTEST/Pre-Security/Firewall & VPN/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Pre-Security/Firewall & VPN/readme.md -------------------------------------------------------------------------------- /PENTEST/Pre-Security/Intro to Lan/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Pre-Security/Intro to Lan/readme.md -------------------------------------------------------------------------------- /PENTEST/Pre-Security/OSI model/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Pre-Security/OSI model/readme.md -------------------------------------------------------------------------------- /PENTEST/Pre-Security/Packets and frames/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Pre-Security/Packets and frames/readme.md -------------------------------------------------------------------------------- /PENTEST/Pre-Security/Website working/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Pre-Security/Website working/readme.md -------------------------------------------------------------------------------- /PENTEST/Pre-Security/Windows/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Pre-Security/Windows/readme.md -------------------------------------------------------------------------------- /PENTEST/Protocols/FTP/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Protocols/FTP/readme.md -------------------------------------------------------------------------------- /PENTEST/Protocols/reamde.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PENTEST/Web Hacking/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/Web Hacking/readme.md -------------------------------------------------------------------------------- /PENTEST/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PENTEST/readme.md -------------------------------------------------------------------------------- /PWN/How to approach a PWN question/01-What is a Binary/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/How to approach a PWN question/01-What is a Binary/readme.md -------------------------------------------------------------------------------- /PWN/How to approach a PWN question/02-Assembly/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/How to approach a PWN question/02-Assembly/readme.md -------------------------------------------------------------------------------- /PWN/How to approach a PWN question/Achieve a target value pwn/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/How to approach a PWN question/Achieve a target value pwn/readme.md -------------------------------------------------------------------------------- /PWN/How to approach a PWN question/Examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/How to approach a PWN question/Examples/readme.md -------------------------------------------------------------------------------- /PWN/How to approach a PWN question/How to bypass the return address/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/How to approach a PWN question/How to bypass the return address/readme.md -------------------------------------------------------------------------------- /PWN/How to approach a PWN question/Walkthrough/Jumprope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/How to approach a PWN question/Walkthrough/Jumprope.md -------------------------------------------------------------------------------- /PWN/Notes of PWN/Guideline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Notes of PWN/Guideline.md -------------------------------------------------------------------------------- /PWN/Notes of PWN/Module1_Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Notes of PWN/Module1_Introduction.md -------------------------------------------------------------------------------- /PWN/Notes of PWN/Module2_programming interactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Notes of PWN/Module2_programming interactions.md -------------------------------------------------------------------------------- /PWN/Notes of PWN/Module3_Misusing programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Notes of PWN/Module3_Misusing programs.md -------------------------------------------------------------------------------- /PWN/Notes of PWN/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Notes of PWN/readme.md -------------------------------------------------------------------------------- /PWN/PWN Vulns/Buffer Overflow/Notes1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/Buffer Overflow/Notes1.md -------------------------------------------------------------------------------- /PWN/PWN Vulns/Buffer Overflow/Notes2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/Buffer Overflow/Notes2.md -------------------------------------------------------------------------------- /PWN/PWN Vulns/Buffer Overflow/readme.md: -------------------------------------------------------------------------------- 1 | ### Buffer Overflow 2 | 3 | --- 4 | 5 | ```py 6 | python -c 'print("A"*32+' | ./program 7 | ``` 8 | -------------------------------------------------------------------------------- /PWN/PWN Vulns/Format String Vuln/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/Format String Vuln/readme.md -------------------------------------------------------------------------------- /PWN/PWN Vulns/Misc/PIE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/Misc/PIE/readme.md -------------------------------------------------------------------------------- /PWN/PWN Vulns/Privilege Escalation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/Privilege Escalation/readme.md -------------------------------------------------------------------------------- /PWN/PWN Vulns/Shellcode/ir0nstone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/Shellcode/ir0nstone.py -------------------------------------------------------------------------------- /PWN/PWN Vulns/Shellcode/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/Shellcode/readme.md -------------------------------------------------------------------------------- /PWN/PWN Vulns/Shellcode/scrip1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/Shellcode/scrip1.py -------------------------------------------------------------------------------- /PWN/PWN Vulns/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/readme.md -------------------------------------------------------------------------------- /PWN/PWN Vulns/ret2libc/32bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/ret2libc/32bit.py -------------------------------------------------------------------------------- /PWN/PWN Vulns/ret2libc/64bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/ret2libc/64bit.py -------------------------------------------------------------------------------- /PWN/PWN Vulns/ret2libc/automated_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/ret2libc/automated_32.py -------------------------------------------------------------------------------- /PWN/PWN Vulns/ret2libc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/ret2libc/readme.md -------------------------------------------------------------------------------- /PWN/PWN Vulns/ret2win/64-bit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/ret2win/64-bit/readme.md -------------------------------------------------------------------------------- /PWN/PWN Vulns/ret2win/Scripts/param32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/ret2win/Scripts/param32.py -------------------------------------------------------------------------------- /PWN/PWN Vulns/ret2win/Scripts/param64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/ret2win/Scripts/param64.py -------------------------------------------------------------------------------- /PWN/PWN Vulns/ret2win/Scripts/script1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/ret2win/Scripts/script1.py -------------------------------------------------------------------------------- /PWN/PWN Vulns/ret2win/Scripts/script2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/ret2win/Scripts/script2.py -------------------------------------------------------------------------------- /PWN/PWN Vulns/ret2win/Scripts/tjctf_1stpwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/ret2win/Scripts/tjctf_1stpwn.py -------------------------------------------------------------------------------- /PWN/PWN Vulns/ret2win/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN Vulns/ret2win/readme.md -------------------------------------------------------------------------------- /PWN/PWN_2.0/Buff_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN_2.0/Buff_exploit.py -------------------------------------------------------------------------------- /PWN/PWN_2.0/Canary.py: -------------------------------------------------------------------------------- 1 | # Stack smashing detected bypass 2 | 3 | -------------------------------------------------------------------------------- /PWN/PWN_2.0/Format_specifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN_2.0/Format_specifier.py -------------------------------------------------------------------------------- /PWN/PWN_2.0/Modify_variably.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN_2.0/Modify_variably.py -------------------------------------------------------------------------------- /PWN/PWN_2.0/Shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN_2.0/Shellcode.py -------------------------------------------------------------------------------- /PWN/PWN_2.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN_2.0/readme.md -------------------------------------------------------------------------------- /PWN/PWN_2.0/ret2libc/Black Market - Writeup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN_2.0/ret2libc/Black Market - Writeup.pdf -------------------------------------------------------------------------------- /PWN/PWN_2.0/ret2libc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN_2.0/ret2libc/readme.md -------------------------------------------------------------------------------- /PWN/PWN_2.0/ret2win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/PWN_2.0/ret2win.py -------------------------------------------------------------------------------- /PWN/Pwntools/Getting Started/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Pwntools/Getting Started/readme.md -------------------------------------------------------------------------------- /PWN/Pwntools/Little endian to ascii/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Pwntools/Little endian to ascii/readme.md -------------------------------------------------------------------------------- /PWN/Pwntools/Math/Leisure Maths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Pwntools/Math/Leisure Maths.py -------------------------------------------------------------------------------- /PWN/Pwntools/Math/unknown iterations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Pwntools/Math/unknown iterations.py -------------------------------------------------------------------------------- /PWN/Pwntools/Scripts/Bof2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Pwntools/Scripts/Bof2.py -------------------------------------------------------------------------------- /PWN/Pwntools/Scripts/bof1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Pwntools/Scripts/bof1.py -------------------------------------------------------------------------------- /PWN/Pwntools/Scripts/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PWN/Py Jail/Approach/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Py Jail/Approach/readme.md -------------------------------------------------------------------------------- /PWN/Py Jail/Blacklist/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Py Jail/Blacklist/Examples.md -------------------------------------------------------------------------------- /PWN/Py Jail/Blacklist/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Py Jail/Blacklist/readme.md -------------------------------------------------------------------------------- /PWN/Py Jail/Payloads/blacklists/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Py Jail/Payloads/blacklists/readme.md -------------------------------------------------------------------------------- /PWN/Py Jail/Payloads/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Py Jail/Payloads/readme.md -------------------------------------------------------------------------------- /PWN/Py Jail/Restricted shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Py Jail/Restricted shell -------------------------------------------------------------------------------- /PWN/Py Jail/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Py Jail/readme.md -------------------------------------------------------------------------------- /PWN/Py Jail/vimshell/echoshell/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Py Jail/vimshell/echoshell/readme.md -------------------------------------------------------------------------------- /PWN/Py Jail/vimshell/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Py Jail/vimshell/readme.md -------------------------------------------------------------------------------- /PWN/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Readme.md -------------------------------------------------------------------------------- /PWN/Scripts/Format String/brunerctf_printf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/Format String/brunerctf_printf.py -------------------------------------------------------------------------------- /PWN/Scripts/Format String/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/Format String/readme.md -------------------------------------------------------------------------------- /PWN/Scripts/Misc/Bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/Misc/Bruteforce.py -------------------------------------------------------------------------------- /PWN/Scripts/Misc/Numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/Misc/Numbers.py -------------------------------------------------------------------------------- /PWN/Scripts/Misc/cryptohack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/Misc/cryptohack.py -------------------------------------------------------------------------------- /PWN/Scripts/Misc/linear_swampCTF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/Misc/linear_swampCTF.py -------------------------------------------------------------------------------- /PWN/Scripts/Misc/rickroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/Misc/rickroll.py -------------------------------------------------------------------------------- /PWN/Scripts/Misc/wxmctf_moodle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/Misc/wxmctf_moodle.py -------------------------------------------------------------------------------- /PWN/Scripts/ROP/drywall_wolv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/ROP/drywall_wolv.py -------------------------------------------------------------------------------- /PWN/Scripts/ROP/really_old_citctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/ROP/really_old_citctf.py -------------------------------------------------------------------------------- /PWN/Scripts/ROP/rop_wxmctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/ROP/rop_wxmctf.py -------------------------------------------------------------------------------- /PWN/Scripts/pwncollege/P1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/pwncollege/P1.md -------------------------------------------------------------------------------- /PWN/Scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/readme.md -------------------------------------------------------------------------------- /PWN/Scripts/ret2win/brunerctf_othello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/ret2win/brunerctf_othello.py -------------------------------------------------------------------------------- /PWN/Scripts/ret2win/ritsec_addr_buff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/ret2win/ritsec_addr_buff.py -------------------------------------------------------------------------------- /PWN/Scripts/ret2win/ritsec_clue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/ret2win/ritsec_clue.py -------------------------------------------------------------------------------- /PWN/Scripts/ret2win/swampctf_ret2win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/ret2win/swampctf_ret2win.py -------------------------------------------------------------------------------- /PWN/Scripts/ret2win/wxmctf_tej3m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Scripts/ret2win/wxmctf_tej3m.py -------------------------------------------------------------------------------- /PWN/Templates/template1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Templates/template1.py -------------------------------------------------------------------------------- /PWN/Templates/template2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Templates/template2.py -------------------------------------------------------------------------------- /PWN/Tools/radare/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/PWN/Tools/radare/readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/README.md -------------------------------------------------------------------------------- /REV/DIFFN_TYPES/APK/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/DIFFN_TYPES/APK/readme.md -------------------------------------------------------------------------------- /REV/DIFFN_TYPES/GO Binary/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/DIFFN_TYPES/GO Binary/readme.md -------------------------------------------------------------------------------- /REV/DIFFN_TYPES/PYC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/DIFFN_TYPES/PYC/readme.md -------------------------------------------------------------------------------- /REV/DIFFN_TYPES/Python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/DIFFN_TYPES/Python/readme.md -------------------------------------------------------------------------------- /REV/DIFFN_TYPES/RUST/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/DIFFN_TYPES/RUST/readme.md -------------------------------------------------------------------------------- /REV/DIFFN_TYPES/readme.md: -------------------------------------------------------------------------------- 1 | ### REV... 2 | -------------------------------------------------------------------------------- /REV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/README.md -------------------------------------------------------------------------------- /REV/SCRIPTS/Calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/SCRIPTS/Calculator.py -------------------------------------------------------------------------------- /REV/SCRIPTS/Rev_php.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/SCRIPTS/Rev_php.py -------------------------------------------------------------------------------- /REV/SCRIPTS/Xor rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/SCRIPTS/Xor rev.py -------------------------------------------------------------------------------- /REV/SCRIPTS/deobfuscation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/SCRIPTS/deobfuscation.py -------------------------------------------------------------------------------- /REV/solving a basic ELF 64 binary/Steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/solving a basic ELF 64 binary/Steps.md -------------------------------------------------------------------------------- /REV/solving a basic ELF 64 binary/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/REV/solving a basic ELF 64 binary/readme.md -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/DNS tunnelling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/DNS tunnelling/readme.md -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/Filtering/Notes1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/Filtering/Notes1.md -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/Filtering/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/Filtering/readme.md -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/Mouse/HID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/Mouse/HID.py -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/Mouse/HID2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/Mouse/HID2.py -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/Mouse/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/Mouse/readme.md -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/Notes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/Notes/readme.md -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/README.md -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/SMB_SMB2/readme.md: -------------------------------------------------------------------------------- 1 | ### SMB 2 | 3 | --- 4 | 5 | [SMB2](https://www.youtube.com/watch?v=ZikJQA_ImMc) 6 | -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/SSl-TSL Pvt key/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/SSl-TSL Pvt key/readme.md -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/Scripts/hci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/Scripts/hci.py -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/Scripts/icmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/Scripts/icmp.py -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/USB/mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/USB/mouse.py -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/USB/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/USB/readme.md -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/USB/usb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/USB/usb.py -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/USB/utctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/USB/utctf.py -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/VNC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/VNC/readme.md -------------------------------------------------------------------------------- /STEGO/Analyzing pcapng files/tshark/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Analyzing pcapng files/tshark/readme.md -------------------------------------------------------------------------------- /STEGO/Memory Dump/Disk Image/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Memory Dump/Disk Image/readme.md -------------------------------------------------------------------------------- /STEGO/Memory Dump/Luksy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Memory Dump/Luksy/readme.md -------------------------------------------------------------------------------- /STEGO/Memory Dump/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Memory Dump/readme.md -------------------------------------------------------------------------------- /STEGO/PDF and DOCS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/PDF and DOCS/readme.md -------------------------------------------------------------------------------- /STEGO/PGP Files/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /STEGO/PNG XOR/Headers/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/PNG XOR/Headers/readme.md -------------------------------------------------------------------------------- /STEGO/PNG XOR/Image dimensions using CRC hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/PNG XOR/Image dimensions using CRC hex.py -------------------------------------------------------------------------------- /STEGO/PNG XOR/Notes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/PNG XOR/Notes/readme.md -------------------------------------------------------------------------------- /STEGO/PNG XOR/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/PNG XOR/readme.md -------------------------------------------------------------------------------- /STEGO/PNG XOR/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/PNG XOR/script.py -------------------------------------------------------------------------------- /STEGO/PNG XOR/script2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/PNG XOR/script2.py -------------------------------------------------------------------------------- /STEGO/Password cracking/Hashcat/readme.md: -------------------------------------------------------------------------------- 1 | ### Hashcat 2 | 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /STEGO/Password cracking/Hydra/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Password cracking/Hydra/readme.md -------------------------------------------------------------------------------- /STEGO/Password cracking/John the Ripper/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Password cracking/John the Ripper/readme.md -------------------------------------------------------------------------------- /STEGO/Password cracking/fcrackzip/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Password cracking/fcrackzip/readme.md -------------------------------------------------------------------------------- /STEGO/Password cracking/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Password cracking/readme.md -------------------------------------------------------------------------------- /STEGO/Practice stego images/345.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/345.PNG -------------------------------------------------------------------------------- /STEGO/Practice stego images/Capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/Capture.PNG -------------------------------------------------------------------------------- /STEGO/Practice stego images/FIR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/FIR.jpg -------------------------------------------------------------------------------- /STEGO/Practice stego images/Graffiti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/Graffiti.png -------------------------------------------------------------------------------- /STEGO/Practice stego images/Imagee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/Imagee.jpg -------------------------------------------------------------------------------- /STEGO/Practice stego images/animal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/animal.jpg -------------------------------------------------------------------------------- /STEGO/Practice stego images/bar_final.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/bar_final.PNG -------------------------------------------------------------------------------- /STEGO/Practice stego images/barcode_returns.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/barcode_returns.PNG -------------------------------------------------------------------------------- /STEGO/Practice stego images/barrrrrrrrrrrrrrrrr.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/barrrrrrrrrrrrrrrrr.PNG -------------------------------------------------------------------------------- /STEGO/Practice stego images/begulga.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/begulga.wav -------------------------------------------------------------------------------- /STEGO/Practice stego images/dcode-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/dcode-image.png -------------------------------------------------------------------------------- /STEGO/Practice stego images/flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/flag.jpg -------------------------------------------------------------------------------- /STEGO/Practice stego images/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/flag.png -------------------------------------------------------------------------------- /STEGO/Practice stego images/hint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/hint.jpg -------------------------------------------------------------------------------- /STEGO/Practice stego images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Practice stego images/image.jpg -------------------------------------------------------------------------------- /STEGO/Practice stego images/readme.md: -------------------------------------------------------------------------------- 1 | ### Some png and other files for practising stego. 2 | -------------------------------------------------------------------------------- /STEGO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/README.md -------------------------------------------------------------------------------- /STEGO/Registry_Forensics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Registry_Forensics/readme.md -------------------------------------------------------------------------------- /STEGO/Scripts/Base64/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/Base64/base64.py -------------------------------------------------------------------------------- /STEGO/Scripts/Fix/gif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/Fix/gif.md -------------------------------------------------------------------------------- /STEGO/Scripts/PIL/Cursor_Tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/PIL/Cursor_Tracker.py -------------------------------------------------------------------------------- /STEGO/Scripts/PIL/Hexahue_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/PIL/Hexahue_convert.py -------------------------------------------------------------------------------- /STEGO/Scripts/PIL/Image_comparison_tamuctf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/PIL/Image_comparison_tamuctf.py -------------------------------------------------------------------------------- /STEGO/Scripts/PIL/Wavfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/PIL/Wavfile.py -------------------------------------------------------------------------------- /STEGO/Scripts/RGB/Alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/RGB/Alpha.py -------------------------------------------------------------------------------- /STEGO/Scripts/RGB/Morse_pngpwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/RGB/Morse_pngpwd.py -------------------------------------------------------------------------------- /STEGO/Scripts/RGB/pixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/RGB/pixel.py -------------------------------------------------------------------------------- /STEGO/Scripts/Wave_Steg/diff_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/Wave_Steg/diff_plane.py -------------------------------------------------------------------------------- /STEGO/Scripts/ZWSP/Whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/ZWSP/Whitespace.py -------------------------------------------------------------------------------- /STEGO/Scripts/ZWSP/zwsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/ZWSP/zwsp.cpp -------------------------------------------------------------------------------- /STEGO/Scripts/message/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Scripts/message/readme.md -------------------------------------------------------------------------------- /STEGO/Steganography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Steganography.md -------------------------------------------------------------------------------- /STEGO/Wav files/lsb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Wav files/lsb.py -------------------------------------------------------------------------------- /STEGO/Wav files/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/Wav files/readme.md -------------------------------------------------------------------------------- /STEGO/XML Files/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/STEGO/XML Files/readme.md -------------------------------------------------------------------------------- /WEB/Elements of webpage/Authentication/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Elements of webpage/Authentication/readme.md -------------------------------------------------------------------------------- /WEB/Elements of webpage/CURL/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Elements of webpage/CURL/readme.md -------------------------------------------------------------------------------- /WEB/Elements of webpage/Favicon and robots.txt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Elements of webpage/Favicon and robots.txt/readme.md -------------------------------------------------------------------------------- /WEB/Images/My project-1 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/My project-1 (2).png -------------------------------------------------------------------------------- /WEB/Images/apogee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/apogee.png -------------------------------------------------------------------------------- /WEB/Images/bits1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/bits1.png -------------------------------------------------------------------------------- /WEB/Images/bits61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/bits61.png -------------------------------------------------------------------------------- /WEB/Images/discord-removebg-preview (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/discord-removebg-preview (1).png -------------------------------------------------------------------------------- /WEB/Images/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/discord.png -------------------------------------------------------------------------------- /WEB/Images/github-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/github-removebg-preview.png -------------------------------------------------------------------------------- /WEB/Images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/github.png -------------------------------------------------------------------------------- /WEB/Images/gmail-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/gmail-removebg-preview.png -------------------------------------------------------------------------------- /WEB/Images/grep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/grep.gif -------------------------------------------------------------------------------- /WEB/Images/grep2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/grep2.gif -------------------------------------------------------------------------------- /WEB/Images/instagram-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/instagram-removebg-preview.png -------------------------------------------------------------------------------- /WEB/Images/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/instagram.png -------------------------------------------------------------------------------- /WEB/Images/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/linkedin.png -------------------------------------------------------------------------------- /WEB/Images/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WEB/Images/untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Images/untitled.png -------------------------------------------------------------------------------- /WEB/Notes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Notes/readme.md -------------------------------------------------------------------------------- /WEB/Payloads/Ruby Injections/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Payloads/Ruby Injections/readme.md -------------------------------------------------------------------------------- /WEB/Payloads/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Payloads/readme.md -------------------------------------------------------------------------------- /WEB/Php vulnerabilities/Bypassing strcmp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Php vulnerabilities/Bypassing strcmp/readme.md -------------------------------------------------------------------------------- /WEB/Php vulnerabilities/HTTP Head method/HTTP HEAD method trick in php scripts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Php vulnerabilities/HTTP Head method/HTTP HEAD method trick in php scripts.pdf -------------------------------------------------------------------------------- /WEB/Php vulnerabilities/HTTP Head method/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WEB/Php vulnerabilities/LFI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Php vulnerabilities/LFI/readme.md -------------------------------------------------------------------------------- /WEB/Php vulnerabilities/Preg_replace/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Php vulnerabilities/Preg_replace/readme.md -------------------------------------------------------------------------------- /WEB/Php vulnerabilities/Type Juggling/Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Php vulnerabilities/Type Juggling/Notes.md -------------------------------------------------------------------------------- /WEB/Php vulnerabilities/Type Juggling/Strict comparison/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Php vulnerabilities/Type Juggling/Strict comparison/readme.md -------------------------------------------------------------------------------- /WEB/Php vulnerabilities/Type Juggling/Writeup1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Php vulnerabilities/Type Juggling/Writeup1.md -------------------------------------------------------------------------------- /WEB/Php vulnerabilities/Type Juggling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Php vulnerabilities/Type Juggling/readme.md -------------------------------------------------------------------------------- /WEB/Php vulnerabilities/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Php vulnerabilities/readme.md -------------------------------------------------------------------------------- /WEB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/README.md -------------------------------------------------------------------------------- /WEB/Scanning/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Scanning/readme.md -------------------------------------------------------------------------------- /WEB/Scripts/Automate Cookie change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Scripts/Automate Cookie change.py -------------------------------------------------------------------------------- /WEB/Scripts/Decode multiple qr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Scripts/Decode multiple qr.py -------------------------------------------------------------------------------- /WEB/Scripts/Requests/Gpt_tenable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Scripts/Requests/Gpt_tenable.py -------------------------------------------------------------------------------- /WEB/Scripts/Requests/quantum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Scripts/Requests/quantum.py -------------------------------------------------------------------------------- /WEB/Scripts/Username_bf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Scripts/Username_bf.py -------------------------------------------------------------------------------- /WEB/Scripts/blindsqli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Scripts/blindsqli.py -------------------------------------------------------------------------------- /WEB/Scripts/lat_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Scripts/lat_long.py -------------------------------------------------------------------------------- /WEB/Scripts/qr_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Scripts/qr_gen.py -------------------------------------------------------------------------------- /WEB/Tools/Burpsuite/Proxy/Payloads/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Tools/Burpsuite/Proxy/Payloads/readme.md -------------------------------------------------------------------------------- /WEB/Tools/Burpsuite/Proxy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Tools/Burpsuite/Proxy/readme.md -------------------------------------------------------------------------------- /WEB/Tools/Burpsuite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Tools/Burpsuite/README.md -------------------------------------------------------------------------------- /WEB/Tools/DIG/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Tools/DIG/readme.md -------------------------------------------------------------------------------- /WEB/Tools/Gobuster/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Tools/Gobuster/readme.md -------------------------------------------------------------------------------- /WEB/Tools/HTB/readme.md: -------------------------------------------------------------------------------- 1 | ### TOOLS 2 | 3 | --- 4 | 5 | 1. AWS 6 | 2. impacket 7 | 3. Responder 8 | 4. 9 | -------------------------------------------------------------------------------- /WEB/Tools/Hydra/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Tools/Hydra/readme.md -------------------------------------------------------------------------------- /WEB/Tools/Nikto/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Tools/Nikto/readme.md -------------------------------------------------------------------------------- /WEB/Tools/Nmap/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Tools/Nmap/readme.md -------------------------------------------------------------------------------- /WEB/WEB/Understanding Web Exploitaion/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/WEB/Understanding Web Exploitaion/readme.md -------------------------------------------------------------------------------- /WEB/WEB/Web3/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/WEB/Web3/readme.md -------------------------------------------------------------------------------- /WEB/WEB/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/WEB/notes.md -------------------------------------------------------------------------------- /WEB/WEB/protocols/ftp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/WEB/protocols/ftp/readme.md -------------------------------------------------------------------------------- /WEB/WEB/protocols/smb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/WEB/protocols/smb/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/CRLF/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/CRLF/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/CSRF/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/CSRF/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/Changing UserAgent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/Changing UserAgent/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/Command Injection/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/Command Injection/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/Directory Traversal/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/Directory Traversal/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/Format String Vulnerability/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/Format String Vulnerability/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/IDOR/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/IDOR/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/JWT/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/JWT/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/LDAP/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/LDAP/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/LFI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/LFI/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/Latex Injection/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/Latex Injection/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/Null Byte Injection/readme.md: -------------------------------------------------------------------------------- 1 | ### Notes 2 | 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/RCE/reverse_shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/RCE/reverse_shell.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SQLI/Blind Injection/Blind Xpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SQLI/Blind Injection/Blind Xpath.py -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SQLI/Blind Injection/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SQLI/Blind Injection/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SQLI/Notes/Portswigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SQLI/Notes/Portswigger.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SQLI/Notes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SQLI/Notes/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SQLI/Payloads/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SQLI/Payloads/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SQLI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SQLI/README.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SQLI/SQLI in tables/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SQLI/SQLI in tables/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SQLI/SQLI in tables/sqlmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SQLI/SQLI in tables/sqlmap.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SQLI/admin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SQLI/admin.txt -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SSRF/Scripts/S1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SSRF/Scripts/S1.py -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SSRF/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SSRF/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SSTI/Template Engine/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SSTI/Template Engine/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SSTI/jinja2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SSTI/jinja2/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/SSTI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/SSTI/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/Shell Injection/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/Shell Injection/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/XSS/Image payload injection/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/XSS/Image payload injection/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/XSS/Notes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/XSS/Notes/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/XSS/payloads/Dom-based XSS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/XSS/payloads/Dom-based XSS/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/XSS/payloads/Reflected XSS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/XSS/payloads/Reflected XSS/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/XSS/payloads/Stored XSS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/XSS/payloads/Stored XSS/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/XSS/payloads/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/XSS/payloads/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/XSS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/XSS/readme.md -------------------------------------------------------------------------------- /WEB/Web Vulnerabilities/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckc9759/CTF_resources/HEAD/WEB/Web Vulnerabilities/readme.md --------------------------------------------------------------------------------