├── Inctfi-2019 └── huygens_gebouw │ ├── README.md │ ├── challenge │ ├── ecc.py │ └── ecdsa.py │ ├── signatures │ └── solution.sage ├── Inctfi-2020 ├── Bakflip_n_sons │ ├── challenge.py │ └── solve.sage ├── DLPoly │ ├── out.txt │ └── solve.sage ├── EaCy │ ├── ansi931.py │ ├── ecc.py │ ├── encrypt.py │ ├── prng.py │ └── solve.sage ├── PolyRSA │ ├── out.txt │ └── solve.sage └── Readme.md ├── Pwn2Win2020 ├── Lost_qkeys │ ├── lost_qkeys_solve.py │ └── server-model.py ├── Omni_Crypto │ ├── enc.py │ ├── omni_crypto_solve.sage │ └── output.txt └── Readme.md ├── README.md ├── TSG CTF 2020 ├── Beginners Crypto │ └── beginner.py ├── Modulus Amittendus │ ├── output.txt │ ├── pubkey.json │ ├── rsa.rb │ └── solve.py └── Readme.md ├── X-MAS CTF ├── RudolphCipherV5 │ ├── README.md │ ├── RudolphCipher.py │ ├── server.py │ └── solve.sage └── The Weather │ ├── README.md │ └── exploit.py ├── m0leconCTF └── Crypto │ └── KingExchange │ ├── Readme.md │ ├── output.txt │ ├── server.py │ └── solve.py └── zer0pts └── dirty laundry ├── Readme.md ├── chall.py ├── output.txt └── solve.sage /Inctfi-2019/huygens_gebouw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2019/huygens_gebouw/README.md -------------------------------------------------------------------------------- /Inctfi-2019/huygens_gebouw/challenge/ecc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2019/huygens_gebouw/challenge/ecc.py -------------------------------------------------------------------------------- /Inctfi-2019/huygens_gebouw/challenge/ecdsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2019/huygens_gebouw/challenge/ecdsa.py -------------------------------------------------------------------------------- /Inctfi-2019/huygens_gebouw/signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2019/huygens_gebouw/signatures -------------------------------------------------------------------------------- /Inctfi-2019/huygens_gebouw/solution.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2019/huygens_gebouw/solution.sage -------------------------------------------------------------------------------- /Inctfi-2020/Bakflip_n_sons/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/Bakflip_n_sons/challenge.py -------------------------------------------------------------------------------- /Inctfi-2020/Bakflip_n_sons/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/Bakflip_n_sons/solve.sage -------------------------------------------------------------------------------- /Inctfi-2020/DLPoly/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/DLPoly/out.txt -------------------------------------------------------------------------------- /Inctfi-2020/DLPoly/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/DLPoly/solve.sage -------------------------------------------------------------------------------- /Inctfi-2020/EaCy/ansi931.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/EaCy/ansi931.py -------------------------------------------------------------------------------- /Inctfi-2020/EaCy/ecc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/EaCy/ecc.py -------------------------------------------------------------------------------- /Inctfi-2020/EaCy/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/EaCy/encrypt.py -------------------------------------------------------------------------------- /Inctfi-2020/EaCy/prng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/EaCy/prng.py -------------------------------------------------------------------------------- /Inctfi-2020/EaCy/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/EaCy/solve.sage -------------------------------------------------------------------------------- /Inctfi-2020/PolyRSA/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/PolyRSA/out.txt -------------------------------------------------------------------------------- /Inctfi-2020/PolyRSA/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/PolyRSA/solve.sage -------------------------------------------------------------------------------- /Inctfi-2020/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Inctfi-2020/Readme.md -------------------------------------------------------------------------------- /Pwn2Win2020/Lost_qkeys/lost_qkeys_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Pwn2Win2020/Lost_qkeys/lost_qkeys_solve.py -------------------------------------------------------------------------------- /Pwn2Win2020/Lost_qkeys/server-model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Pwn2Win2020/Lost_qkeys/server-model.py -------------------------------------------------------------------------------- /Pwn2Win2020/Omni_Crypto/enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Pwn2Win2020/Omni_Crypto/enc.py -------------------------------------------------------------------------------- /Pwn2Win2020/Omni_Crypto/omni_crypto_solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Pwn2Win2020/Omni_Crypto/omni_crypto_solve.sage -------------------------------------------------------------------------------- /Pwn2Win2020/Omni_Crypto/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Pwn2Win2020/Omni_Crypto/output.txt -------------------------------------------------------------------------------- /Pwn2Win2020/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/Pwn2Win2020/Readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/README.md -------------------------------------------------------------------------------- /TSG CTF 2020/Beginners Crypto/beginner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/TSG CTF 2020/Beginners Crypto/beginner.py -------------------------------------------------------------------------------- /TSG CTF 2020/Modulus Amittendus/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/TSG CTF 2020/Modulus Amittendus/output.txt -------------------------------------------------------------------------------- /TSG CTF 2020/Modulus Amittendus/pubkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/TSG CTF 2020/Modulus Amittendus/pubkey.json -------------------------------------------------------------------------------- /TSG CTF 2020/Modulus Amittendus/rsa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/TSG CTF 2020/Modulus Amittendus/rsa.rb -------------------------------------------------------------------------------- /TSG CTF 2020/Modulus Amittendus/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/TSG CTF 2020/Modulus Amittendus/solve.py -------------------------------------------------------------------------------- /TSG CTF 2020/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/TSG CTF 2020/Readme.md -------------------------------------------------------------------------------- /X-MAS CTF/RudolphCipherV5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/X-MAS CTF/RudolphCipherV5/README.md -------------------------------------------------------------------------------- /X-MAS CTF/RudolphCipherV5/RudolphCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/X-MAS CTF/RudolphCipherV5/RudolphCipher.py -------------------------------------------------------------------------------- /X-MAS CTF/RudolphCipherV5/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/X-MAS CTF/RudolphCipherV5/server.py -------------------------------------------------------------------------------- /X-MAS CTF/RudolphCipherV5/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/X-MAS CTF/RudolphCipherV5/solve.sage -------------------------------------------------------------------------------- /X-MAS CTF/The Weather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/X-MAS CTF/The Weather/README.md -------------------------------------------------------------------------------- /X-MAS CTF/The Weather/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/X-MAS CTF/The Weather/exploit.py -------------------------------------------------------------------------------- /m0leconCTF/Crypto/KingExchange/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/m0leconCTF/Crypto/KingExchange/Readme.md -------------------------------------------------------------------------------- /m0leconCTF/Crypto/KingExchange/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/m0leconCTF/Crypto/KingExchange/output.txt -------------------------------------------------------------------------------- /m0leconCTF/Crypto/KingExchange/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/m0leconCTF/Crypto/KingExchange/server.py -------------------------------------------------------------------------------- /m0leconCTF/Crypto/KingExchange/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/m0leconCTF/Crypto/KingExchange/solve.py -------------------------------------------------------------------------------- /zer0pts/dirty laundry/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/zer0pts/dirty laundry/Readme.md -------------------------------------------------------------------------------- /zer0pts/dirty laundry/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/zer0pts/dirty laundry/chall.py -------------------------------------------------------------------------------- /zer0pts/dirty laundry/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/zer0pts/dirty laundry/output.txt -------------------------------------------------------------------------------- /zer0pts/dirty laundry/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/S3v3ru5/CTF-writeups/HEAD/zer0pts/dirty laundry/solve.sage --------------------------------------------------------------------------------