├── .gitignore ├── 2023-CrewCTF ├── README.md └── crypto │ ├── README.md │ └── pi_is_3.14 │ ├── README.md │ ├── server.py │ └── sol │ └── solve.sage ├── 2023-HackTMCTF-Final ├── README.md ├── crypto │ ├── README.md │ ├── ddlp │ │ ├── README.md │ │ └── server.sage │ └── kaitenzushi-the-final │ │ ├── README.md │ │ └── server.py └── koth │ └── chatgptf │ └── README.md ├── 2023-HackTMCTF-Quals ├── README.md └── crypto │ ├── README.md │ ├── broken-oracle │ ├── README.md │ ├── crypto_broken_oracle_2e7e83453d8845159dabf04de5209523.tar.gz │ └── sol │ │ ├── README.md │ │ └── solve.sage │ ├── d-phi-enc │ ├── README.md │ ├── crypto_d_phi_enc_cb9def117334a2130d88e6b3cd806f5f.tar.gz │ └── sol │ │ ├── README.md │ │ ├── output.txt │ │ └── solve.sage │ ├── glp-420 │ ├── README.md │ ├── crypto_glp_420_43b99dbdaa5fe685c7427d95704c9cf9.tar.gz │ └── sol │ │ ├── README.md │ │ └── solve.sage │ ├── kaitenzushi │ ├── README.md │ ├── crypto_kaitenzushi_83ed72abf5447bcb8b6ee331fddd71f7.tar.gz │ └── sol │ │ ├── README.md │ │ ├── gen.sage │ │ ├── output.txt │ │ └── solve.sage │ └── unrandom-dsa │ ├── README.md │ ├── crypto_unrandom_dsa_016cb3a21a04b5ff19c882b530f152a6.tar.gz │ └── sol │ ├── README.md │ ├── find_params.sage │ ├── find_seed.py │ └── solve.sage ├── 2023-SECCONCTF-Final ├── README.md └── crypto │ ├── README.md │ ├── dlp-4.0 │ ├── README.md │ ├── dist │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ └── problem.sage │ └── solution │ │ ├── README.md │ │ ├── find_p.sage │ │ └── solve.sage │ ├── kex-4.0 │ ├── README.md │ ├── dist │ │ ├── output.txt │ │ └── problem.sage │ └── solution │ │ ├── README.md │ │ └── solve.sage │ └── paillier-4.0 │ ├── README.md │ ├── dist │ ├── output.txt │ └── problem.sage │ └── solution │ ├── README.md │ └── solve.sage ├── 2023-SECCONCTF-Quals ├── README.md └── crypto │ ├── README.md │ ├── cigisicgicgicg │ ├── README.md │ ├── dist │ │ ├── output.txt │ │ └── problem.py │ └── solution │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── output.txt │ │ └── solve.sage │ ├── increasing-entropoid │ ├── README.md │ ├── dist │ │ ├── output.txt │ │ └── problem.sage │ └── solution │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── output.txt │ │ └── solve.sage │ └── rsa-4.0 │ ├── README.md │ ├── dist │ ├── output.txt │ └── problem.sage │ └── solution │ ├── Dockerfile │ ├── README.md │ ├── output.txt │ └── solve.sage ├── 2024-SECCONCTF-Finals ├── README.md ├── crypto │ ├── README.md │ ├── dlp_plus │ │ ├── README.md │ │ └── dist │ │ │ ├── Dockerfile │ │ │ ├── compose.yaml │ │ │ └── server.py │ └── rsa_plus │ │ ├── README.md │ │ └── dist │ │ ├── Dockerfile │ │ ├── compose.yaml │ │ └── server.py └── koth │ └── heccon │ ├── README.md │ └── overview.png └── 2024-SECCONCTF-Quals ├── README.md └── crypto ├── README.md ├── seqr ├── README.md ├── dist │ ├── Dockerfile │ ├── docker-compose.yaml │ └── server.py └── solution │ ├── Dockerfile │ ├── README.md │ ├── lll_cvp.py │ └── solve.sage └── xiyi ├── README.md ├── dist ├── Dockerfile ├── client_example.py ├── docker-compose.yaml ├── lib.py ├── params.py └── server.py └── solution ├── Dockerfile ├── README.md └── solve.sage /.gitignore: -------------------------------------------------------------------------------- 1 | *.sage.py 2 | -------------------------------------------------------------------------------- /2023-CrewCTF/README.md: -------------------------------------------------------------------------------- 1 | # CrewCTF 2023 2 | -------------------------------------------------------------------------------- /2023-CrewCTF/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-CrewCTF/crypto/README.md -------------------------------------------------------------------------------- /2023-CrewCTF/crypto/pi_is_3.14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-CrewCTF/crypto/pi_is_3.14/README.md -------------------------------------------------------------------------------- /2023-CrewCTF/crypto/pi_is_3.14/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-CrewCTF/crypto/pi_is_3.14/server.py -------------------------------------------------------------------------------- /2023-CrewCTF/crypto/pi_is_3.14/sol/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-CrewCTF/crypto/pi_is_3.14/sol/solve.sage -------------------------------------------------------------------------------- /2023-HackTMCTF-Final/README.md: -------------------------------------------------------------------------------- 1 | # HackTM CTF Finals 2023 2 | -------------------------------------------------------------------------------- /2023-HackTMCTF-Final/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Final/crypto/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Final/crypto/ddlp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Final/crypto/ddlp/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Final/crypto/ddlp/server.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Final/crypto/ddlp/server.sage -------------------------------------------------------------------------------- /2023-HackTMCTF-Final/crypto/kaitenzushi-the-final/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Final/crypto/kaitenzushi-the-final/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Final/crypto/kaitenzushi-the-final/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Final/crypto/kaitenzushi-the-final/server.py -------------------------------------------------------------------------------- /2023-HackTMCTF-Final/koth/chatgptf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Final/koth/chatgptf/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/README.md: -------------------------------------------------------------------------------- 1 | # HackTM CTF Quals 2023 2 | https://ctftime.org/event/1848 3 | -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/broken-oracle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/broken-oracle/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/broken-oracle/crypto_broken_oracle_2e7e83453d8845159dabf04de5209523.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/broken-oracle/crypto_broken_oracle_2e7e83453d8845159dabf04de5209523.tar.gz -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/broken-oracle/sol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/broken-oracle/sol/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/broken-oracle/sol/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/broken-oracle/sol/solve.sage -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/d-phi-enc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/d-phi-enc/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/d-phi-enc/crypto_d_phi_enc_cb9def117334a2130d88e6b3cd806f5f.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/d-phi-enc/crypto_d_phi_enc_cb9def117334a2130d88e6b3cd806f5f.tar.gz -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/d-phi-enc/sol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/d-phi-enc/sol/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/d-phi-enc/sol/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/d-phi-enc/sol/output.txt -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/d-phi-enc/sol/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/d-phi-enc/sol/solve.sage -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/glp-420/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/glp-420/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/glp-420/crypto_glp_420_43b99dbdaa5fe685c7427d95704c9cf9.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/glp-420/crypto_glp_420_43b99dbdaa5fe685c7427d95704c9cf9.tar.gz -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/glp-420/sol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/glp-420/sol/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/glp-420/sol/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/glp-420/sol/solve.sage -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/kaitenzushi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/kaitenzushi/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/kaitenzushi/crypto_kaitenzushi_83ed72abf5447bcb8b6ee331fddd71f7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/kaitenzushi/crypto_kaitenzushi_83ed72abf5447bcb8b6ee331fddd71f7.tar.gz -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/kaitenzushi/sol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/kaitenzushi/sol/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/kaitenzushi/sol/gen.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/kaitenzushi/sol/gen.sage -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/kaitenzushi/sol/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/kaitenzushi/sol/output.txt -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/kaitenzushi/sol/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/kaitenzushi/sol/solve.sage -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/unrandom-dsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/unrandom-dsa/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/unrandom-dsa/crypto_unrandom_dsa_016cb3a21a04b5ff19c882b530f152a6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/unrandom-dsa/crypto_unrandom_dsa_016cb3a21a04b5ff19c882b530f152a6.tar.gz -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/unrandom-dsa/sol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/unrandom-dsa/sol/README.md -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/unrandom-dsa/sol/find_params.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/unrandom-dsa/sol/find_params.sage -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/unrandom-dsa/sol/find_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/unrandom-dsa/sol/find_seed.py -------------------------------------------------------------------------------- /2023-HackTMCTF-Quals/crypto/unrandom-dsa/sol/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-HackTMCTF-Quals/crypto/unrandom-dsa/sol/solve.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/README.md: -------------------------------------------------------------------------------- 1 | # SECCON CTF 2023 Final 2 | -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/dlp-4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/dlp-4.0/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/dlp-4.0/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/dlp-4.0/dist/Dockerfile -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/dlp-4.0/dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/dlp-4.0/dist/docker-compose.yml -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/dlp-4.0/dist/problem.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/dlp-4.0/dist/problem.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/dlp-4.0/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/dlp-4.0/solution/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/dlp-4.0/solution/find_p.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/dlp-4.0/solution/find_p.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/dlp-4.0/solution/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/dlp-4.0/solution/solve.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/kex-4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/kex-4.0/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/kex-4.0/dist/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/kex-4.0/dist/output.txt -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/kex-4.0/dist/problem.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/kex-4.0/dist/problem.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/kex-4.0/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/kex-4.0/solution/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/kex-4.0/solution/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/kex-4.0/solution/solve.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/paillier-4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/paillier-4.0/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/paillier-4.0/dist/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/paillier-4.0/dist/output.txt -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/paillier-4.0/dist/problem.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/paillier-4.0/dist/problem.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/paillier-4.0/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/paillier-4.0/solution/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Final/crypto/paillier-4.0/solution/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Final/crypto/paillier-4.0/solution/solve.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/README.md: -------------------------------------------------------------------------------- 1 | # SECCON CTF 2023 Quals 2 | -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/cigisicgicgicg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/cigisicgicgicg/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/cigisicgicgicg/dist/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/cigisicgicgicg/dist/output.txt -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/cigisicgicgicg/dist/problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/cigisicgicgicg/dist/problem.py -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/cigisicgicgicg/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/cigisicgicgicg/solution/Dockerfile -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/cigisicgicgicg/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/cigisicgicgicg/solution/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/cigisicgicgicg/solution/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/cigisicgicgicg/solution/output.txt -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/cigisicgicgicg/solution/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/cigisicgicgicg/solution/solve.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/increasing-entropoid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/increasing-entropoid/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/increasing-entropoid/dist/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/increasing-entropoid/dist/output.txt -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/increasing-entropoid/dist/problem.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/increasing-entropoid/dist/problem.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/increasing-entropoid/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/increasing-entropoid/solution/Dockerfile -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/increasing-entropoid/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/increasing-entropoid/solution/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/increasing-entropoid/solution/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/increasing-entropoid/solution/output.txt -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/increasing-entropoid/solution/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/increasing-entropoid/solution/solve.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/rsa-4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/rsa-4.0/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/rsa-4.0/dist/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/rsa-4.0/dist/output.txt -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/rsa-4.0/dist/problem.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/rsa-4.0/dist/problem.sage -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/rsa-4.0/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/rsa-4.0/solution/Dockerfile -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/rsa-4.0/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/rsa-4.0/solution/README.md -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/rsa-4.0/solution/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/rsa-4.0/solution/output.txt -------------------------------------------------------------------------------- /2023-SECCONCTF-Quals/crypto/rsa-4.0/solution/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2023-SECCONCTF-Quals/crypto/rsa-4.0/solution/solve.sage -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/README.md: -------------------------------------------------------------------------------- 1 | # SECCON CTF 13 Finals 2 | -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Finals/crypto/README.md -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/crypto/dlp_plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Finals/crypto/dlp_plus/README.md -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/crypto/dlp_plus/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Finals/crypto/dlp_plus/dist/Dockerfile -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/crypto/dlp_plus/dist/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Finals/crypto/dlp_plus/dist/compose.yaml -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/crypto/dlp_plus/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Finals/crypto/dlp_plus/dist/server.py -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/crypto/rsa_plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Finals/crypto/rsa_plus/README.md -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/crypto/rsa_plus/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Finals/crypto/rsa_plus/dist/Dockerfile -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/crypto/rsa_plus/dist/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Finals/crypto/rsa_plus/dist/compose.yaml -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/crypto/rsa_plus/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Finals/crypto/rsa_plus/dist/server.py -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/koth/heccon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Finals/koth/heccon/README.md -------------------------------------------------------------------------------- /2024-SECCONCTF-Finals/koth/heccon/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Finals/koth/heccon/overview.png -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/README.md: -------------------------------------------------------------------------------- 1 | # SECCON CTF 13 Quals 2 | -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/README.md -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/seqr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/seqr/README.md -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/seqr/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/seqr/dist/Dockerfile -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/seqr/dist/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/seqr/dist/docker-compose.yaml -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/seqr/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/seqr/dist/server.py -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/seqr/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/seqr/solution/Dockerfile -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/seqr/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/seqr/solution/README.md -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/seqr/solution/lll_cvp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/seqr/solution/lll_cvp.py -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/seqr/solution/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/seqr/solution/solve.sage -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/xiyi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/xiyi/README.md -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/xiyi/dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/xiyi/dist/Dockerfile -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/xiyi/dist/client_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/xiyi/dist/client_example.py -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/xiyi/dist/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/xiyi/dist/docker-compose.yaml -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/xiyi/dist/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/xiyi/dist/lib.py -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/xiyi/dist/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/xiyi/dist/params.py -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/xiyi/dist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/xiyi/dist/server.py -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/xiyi/solution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/xiyi/solution/Dockerfile -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/xiyi/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/xiyi/solution/README.md -------------------------------------------------------------------------------- /2024-SECCONCTF-Quals/crypto/xiyi/solution/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/y011d4/my-ctf-challenges/HEAD/2024-SECCONCTF-Quals/crypto/xiyi/solution/solve.sage --------------------------------------------------------------------------------