├── README.md ├── crypto ├── Eddy │ ├── README.md │ ├── challenge.py │ ├── server.py │ └── solve.py ├── README.md ├── The_Matrix │ ├── README.md │ ├── encrypted_flag.txt │ ├── matrix.txt │ ├── public_key.txt │ ├── solve.sage │ ├── solve.sage.py │ └── the_matrix.py ├── The_Messager │ ├── README.md │ ├── main.py │ ├── solve.py │ └── values.py ├── eXORcist │ ├── README.md │ └── server.py ├── franklin_last_words │ ├── README.md │ ├── main.py │ ├── message.py │ ├── solve.sage │ └── solve.sage.py └── nitro │ ├── README.md │ ├── nitro.py │ ├── nitro_server.py │ └── solve.py ├── jail ├── README.md ├── garbage_truck │ ├── README.md │ └── solve.py ├── kevin-higgs-the-revenge │ ├── Dockerfile │ ├── README.md │ ├── challenge │ │ ├── challenge.py │ │ ├── entrypoint.sh │ │ └── flag.txt │ ├── docker-compose.yml │ └── solve.py ├── py-explorer │ ├── README.md │ ├── chall.py │ └── solve.py ├── red-diamond │ └── README.md ├── type_it │ ├── README.md │ ├── chal.py │ └── solve.py ├── type_it_2 │ └── README.md ├── venomous-2 │ └── README.md └── venomous │ ├── README.md │ └── exploit.sh ├── misc ├── Intruder │ ├── AK.png │ ├── README.md │ └── files │ │ ├── AK.png │ │ ├── Untitled 1.png │ │ └── Untitled.png ├── Kvant │ ├── README.md │ ├── enc.txt │ ├── kvant.py │ └── solve.py ├── MLM │ ├── README.md │ ├── solve.py │ └── solve.sh ├── Netflix-Prize │ ├── Description.md │ ├── README.md │ └── Solver_Netflix_Prize_chall.ipynb ├── POSTAL │ ├── README.md │ └── files │ │ ├── 158220451-c5b22d38-bb8f-4859-9e78-69c5b3e8c707.png │ │ ├── Untitled.png │ │ ├── barcode.png │ │ └── msg.jpg ├── README.md ├── colorful_recipe │ ├── README.md │ └── recipe.zip └── follow │ └── README.md ├── pwn ├── README.md ├── counter │ ├── README.md │ ├── counter │ ├── counter.c │ ├── flag.txt │ └── solve.py ├── encryptor │ ├── README.md │ ├── encryptor.zip │ ├── libc.so.6 │ └── solve.py ├── faster-python │ ├── README.md │ ├── cext.cpython-310-x86_64-linux-gnu.so │ ├── lib │ │ ├── ld-linux-x86-64.so.2 │ │ ├── libc.so.6 │ │ ├── libexpat.so.1 │ │ ├── libm.so.6 │ │ └── libz.so.1 │ ├── main.py │ ├── python3.10 │ └── solve.py ├── mind-games │ ├── README.md │ ├── actual-flag.txt │ ├── flag.txt │ ├── lib │ │ ├── ld-linux-x86-64.so.2 │ │ └── libc.so.6 │ ├── mind-games │ └── solve.py ├── notes_keeper │ ├── README.md │ ├── chall │ ├── ld-2.29.so │ ├── libc.so.6 │ └── solve.py ├── xor │ ├── README.md │ ├── lib │ │ ├── ld-linux-x86-64.so.2 │ │ └── libc.so.6 │ ├── solve.py │ ├── xor │ └── xor.c └── yanc │ ├── README.md │ ├── ld-2.31.so │ ├── libc.so.6 │ ├── solve.py │ └── yanc ├── reverse ├── README.md ├── dark_dimension │ ├── Dockerfile │ ├── README.md │ ├── dark_dimension.dart │ ├── dark_dimension.exe │ └── speedtest.py ├── impossible_challenge │ ├── README.md │ ├── impossible_challenge │ └── impossible_challenge.c ├── mazinrev │ ├── README.md │ └── mazinrev ├── oldschool │ ├── README.md │ ├── find_eq.rb │ ├── mbr.asm │ └── oldschool └── traditions │ ├── README.md │ └── prog └── web ├── README.md ├── cookauth ├── README.md └── solve.py ├── ezphp-fixed └── README.md ├── ezphp └── README.md ├── lay-lowah └── README.md ├── perfect-model ├── README.md ├── expl.pkl ├── exploit.py ├── model.pkl └── public.csv ├── pipe-your-way ├── README.md ├── app.py └── solver.py ├── validator ├── README.md ├── app.py └── solve.py └── yatodo └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/README.md -------------------------------------------------------------------------------- /crypto/Eddy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/Eddy/README.md -------------------------------------------------------------------------------- /crypto/Eddy/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/Eddy/challenge.py -------------------------------------------------------------------------------- /crypto/Eddy/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/Eddy/server.py -------------------------------------------------------------------------------- /crypto/Eddy/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/Eddy/solve.py -------------------------------------------------------------------------------- /crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/README.md -------------------------------------------------------------------------------- /crypto/The_Matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/The_Matrix/README.md -------------------------------------------------------------------------------- /crypto/The_Matrix/encrypted_flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/The_Matrix/encrypted_flag.txt -------------------------------------------------------------------------------- /crypto/The_Matrix/matrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/The_Matrix/matrix.txt -------------------------------------------------------------------------------- /crypto/The_Matrix/public_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/The_Matrix/public_key.txt -------------------------------------------------------------------------------- /crypto/The_Matrix/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/The_Matrix/solve.sage -------------------------------------------------------------------------------- /crypto/The_Matrix/solve.sage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/The_Matrix/solve.sage.py -------------------------------------------------------------------------------- /crypto/The_Matrix/the_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/The_Matrix/the_matrix.py -------------------------------------------------------------------------------- /crypto/The_Messager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/The_Messager/README.md -------------------------------------------------------------------------------- /crypto/The_Messager/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/The_Messager/main.py -------------------------------------------------------------------------------- /crypto/The_Messager/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/The_Messager/solve.py -------------------------------------------------------------------------------- /crypto/The_Messager/values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/The_Messager/values.py -------------------------------------------------------------------------------- /crypto/eXORcist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/eXORcist/README.md -------------------------------------------------------------------------------- /crypto/eXORcist/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/eXORcist/server.py -------------------------------------------------------------------------------- /crypto/franklin_last_words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/franklin_last_words/README.md -------------------------------------------------------------------------------- /crypto/franklin_last_words/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/franklin_last_words/main.py -------------------------------------------------------------------------------- /crypto/franklin_last_words/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/franklin_last_words/message.py -------------------------------------------------------------------------------- /crypto/franklin_last_words/solve.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/franklin_last_words/solve.sage -------------------------------------------------------------------------------- /crypto/franklin_last_words/solve.sage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/franklin_last_words/solve.sage.py -------------------------------------------------------------------------------- /crypto/nitro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/nitro/README.md -------------------------------------------------------------------------------- /crypto/nitro/nitro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/nitro/nitro.py -------------------------------------------------------------------------------- /crypto/nitro/nitro_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/nitro/nitro_server.py -------------------------------------------------------------------------------- /crypto/nitro/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/crypto/nitro/solve.py -------------------------------------------------------------------------------- /jail/README.md: -------------------------------------------------------------------------------- 1 | # jail 2 | 3 | This directory contains write-ups for `jail` challenges. 4 | -------------------------------------------------------------------------------- /jail/garbage_truck/README.md: -------------------------------------------------------------------------------- 1 | # Garbage Truck 2 | 3 | ## Write-up 4 | 5 | [Exploit script](./solve.py). 6 | -------------------------------------------------------------------------------- /jail/garbage_truck/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/garbage_truck/solve.py -------------------------------------------------------------------------------- /jail/kevin-higgs-the-revenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/kevin-higgs-the-revenge/Dockerfile -------------------------------------------------------------------------------- /jail/kevin-higgs-the-revenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/kevin-higgs-the-revenge/README.md -------------------------------------------------------------------------------- /jail/kevin-higgs-the-revenge/challenge/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/kevin-higgs-the-revenge/challenge/challenge.py -------------------------------------------------------------------------------- /jail/kevin-higgs-the-revenge/challenge/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/kevin-higgs-the-revenge/challenge/entrypoint.sh -------------------------------------------------------------------------------- /jail/kevin-higgs-the-revenge/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | CyberErudites{fake_flag} 2 | -------------------------------------------------------------------------------- /jail/kevin-higgs-the-revenge/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/kevin-higgs-the-revenge/docker-compose.yml -------------------------------------------------------------------------------- /jail/kevin-higgs-the-revenge/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/kevin-higgs-the-revenge/solve.py -------------------------------------------------------------------------------- /jail/py-explorer/README.md: -------------------------------------------------------------------------------- 1 | # PY explorer 2 | 3 | ## Write-up 4 | 5 | [Exploit script](./solve.py). 6 | -------------------------------------------------------------------------------- /jail/py-explorer/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/py-explorer/chall.py -------------------------------------------------------------------------------- /jail/py-explorer/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/py-explorer/solve.py -------------------------------------------------------------------------------- /jail/red-diamond/README.md: -------------------------------------------------------------------------------- 1 | # Red Diamond 2 | 3 | ## Write-up 4 | 5 | ```ruby 6 | `ls /` 7 | `cat /flag.txt` 8 | ``` 9 | -------------------------------------------------------------------------------- /jail/type_it/README.md: -------------------------------------------------------------------------------- 1 | # Type it 2 | 3 | ## Write-up 4 | 5 | [Exploit script](./solve.py). 6 | -------------------------------------------------------------------------------- /jail/type_it/chal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/type_it/chal.py -------------------------------------------------------------------------------- /jail/type_it/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/type_it/solve.py -------------------------------------------------------------------------------- /jail/type_it_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/type_it_2/README.md -------------------------------------------------------------------------------- /jail/venomous-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/venomous-2/README.md -------------------------------------------------------------------------------- /jail/venomous/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/venomous/README.md -------------------------------------------------------------------------------- /jail/venomous/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/jail/venomous/exploit.sh -------------------------------------------------------------------------------- /misc/Intruder/AK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Intruder/AK.png -------------------------------------------------------------------------------- /misc/Intruder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Intruder/README.md -------------------------------------------------------------------------------- /misc/Intruder/files/AK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Intruder/files/AK.png -------------------------------------------------------------------------------- /misc/Intruder/files/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Intruder/files/Untitled 1.png -------------------------------------------------------------------------------- /misc/Intruder/files/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Intruder/files/Untitled.png -------------------------------------------------------------------------------- /misc/Kvant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Kvant/README.md -------------------------------------------------------------------------------- /misc/Kvant/enc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Kvant/enc.txt -------------------------------------------------------------------------------- /misc/Kvant/kvant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Kvant/kvant.py -------------------------------------------------------------------------------- /misc/Kvant/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Kvant/solve.py -------------------------------------------------------------------------------- /misc/MLM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/MLM/README.md -------------------------------------------------------------------------------- /misc/MLM/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/MLM/solve.py -------------------------------------------------------------------------------- /misc/MLM/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/MLM/solve.sh -------------------------------------------------------------------------------- /misc/Netflix-Prize/Description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Netflix-Prize/Description.md -------------------------------------------------------------------------------- /misc/Netflix-Prize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Netflix-Prize/README.md -------------------------------------------------------------------------------- /misc/Netflix-Prize/Solver_Netflix_Prize_chall.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/Netflix-Prize/Solver_Netflix_Prize_chall.ipynb -------------------------------------------------------------------------------- /misc/POSTAL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/POSTAL/README.md -------------------------------------------------------------------------------- /misc/POSTAL/files/158220451-c5b22d38-bb8f-4859-9e78-69c5b3e8c707.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/POSTAL/files/158220451-c5b22d38-bb8f-4859-9e78-69c5b3e8c707.png -------------------------------------------------------------------------------- /misc/POSTAL/files/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/POSTAL/files/Untitled.png -------------------------------------------------------------------------------- /misc/POSTAL/files/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/POSTAL/files/barcode.png -------------------------------------------------------------------------------- /misc/POSTAL/files/msg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/POSTAL/files/msg.jpg -------------------------------------------------------------------------------- /misc/README.md: -------------------------------------------------------------------------------- 1 | # misc 2 | 3 | This directory contains write-ups for `misc` challenges. 4 | -------------------------------------------------------------------------------- /misc/colorful_recipe/README.md: -------------------------------------------------------------------------------- 1 | # Colorful Recipe 2 | 3 | ## Write-up 4 | 5 | TODO 6 | -------------------------------------------------------------------------------- /misc/colorful_recipe/recipe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/colorful_recipe/recipe.zip -------------------------------------------------------------------------------- /misc/follow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/misc/follow/README.md -------------------------------------------------------------------------------- /pwn/README.md: -------------------------------------------------------------------------------- 1 | # pwn 2 | 3 | This directory contains write-ups for `pwn` challenges. 4 | -------------------------------------------------------------------------------- /pwn/counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/counter/README.md -------------------------------------------------------------------------------- /pwn/counter/counter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/counter/counter -------------------------------------------------------------------------------- /pwn/counter/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/counter/counter.c -------------------------------------------------------------------------------- /pwn/counter/flag.txt: -------------------------------------------------------------------------------- 1 | CyberErudites{1NtegeR_0v3rfloWS_ar3_Na$ty} 2 | -------------------------------------------------------------------------------- /pwn/counter/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/counter/solve.py -------------------------------------------------------------------------------- /pwn/encryptor/README.md: -------------------------------------------------------------------------------- 1 | # Encryptor 2 | 3 | ## Write-up 4 | 5 | [Exploit script](./solve.py). 6 | -------------------------------------------------------------------------------- /pwn/encryptor/encryptor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/encryptor/encryptor.zip -------------------------------------------------------------------------------- /pwn/encryptor/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/encryptor/libc.so.6 -------------------------------------------------------------------------------- /pwn/encryptor/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/encryptor/solve.py -------------------------------------------------------------------------------- /pwn/faster-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/faster-python/README.md -------------------------------------------------------------------------------- /pwn/faster-python/cext.cpython-310-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/faster-python/cext.cpython-310-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /pwn/faster-python/lib/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/faster-python/lib/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /pwn/faster-python/lib/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/faster-python/lib/libc.so.6 -------------------------------------------------------------------------------- /pwn/faster-python/lib/libexpat.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/faster-python/lib/libexpat.so.1 -------------------------------------------------------------------------------- /pwn/faster-python/lib/libm.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/faster-python/lib/libm.so.6 -------------------------------------------------------------------------------- /pwn/faster-python/lib/libz.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/faster-python/lib/libz.so.1 -------------------------------------------------------------------------------- /pwn/faster-python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/faster-python/main.py -------------------------------------------------------------------------------- /pwn/faster-python/python3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/faster-python/python3.10 -------------------------------------------------------------------------------- /pwn/faster-python/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/faster-python/solve.py -------------------------------------------------------------------------------- /pwn/mind-games/README.md: -------------------------------------------------------------------------------- 1 | # Mind games 2 | 3 | ## Write-up 4 | 5 | [Commented exploit script](./solve.py). 6 | -------------------------------------------------------------------------------- /pwn/mind-games/actual-flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/mind-games/actual-flag.txt -------------------------------------------------------------------------------- /pwn/mind-games/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/mind-games/flag.txt -------------------------------------------------------------------------------- /pwn/mind-games/lib/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/mind-games/lib/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /pwn/mind-games/lib/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/mind-games/lib/libc.so.6 -------------------------------------------------------------------------------- /pwn/mind-games/mind-games: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/mind-games/mind-games -------------------------------------------------------------------------------- /pwn/mind-games/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/mind-games/solve.py -------------------------------------------------------------------------------- /pwn/notes_keeper/README.md: -------------------------------------------------------------------------------- 1 | # Notes keeper 2 | 3 | ## Write-up 4 | 5 | [Exploit script](./solve.py). 6 | -------------------------------------------------------------------------------- /pwn/notes_keeper/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/notes_keeper/chall -------------------------------------------------------------------------------- /pwn/notes_keeper/ld-2.29.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/notes_keeper/ld-2.29.so -------------------------------------------------------------------------------- /pwn/notes_keeper/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/notes_keeper/libc.so.6 -------------------------------------------------------------------------------- /pwn/notes_keeper/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/notes_keeper/solve.py -------------------------------------------------------------------------------- /pwn/xor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/xor/README.md -------------------------------------------------------------------------------- /pwn/xor/lib/ld-linux-x86-64.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/xor/lib/ld-linux-x86-64.so.2 -------------------------------------------------------------------------------- /pwn/xor/lib/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/xor/lib/libc.so.6 -------------------------------------------------------------------------------- /pwn/xor/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/xor/solve.py -------------------------------------------------------------------------------- /pwn/xor/xor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/xor/xor -------------------------------------------------------------------------------- /pwn/xor/xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/xor/xor.c -------------------------------------------------------------------------------- /pwn/yanc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/yanc/README.md -------------------------------------------------------------------------------- /pwn/yanc/ld-2.31.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/yanc/ld-2.31.so -------------------------------------------------------------------------------- /pwn/yanc/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/yanc/libc.so.6 -------------------------------------------------------------------------------- /pwn/yanc/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/yanc/solve.py -------------------------------------------------------------------------------- /pwn/yanc/yanc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/pwn/yanc/yanc -------------------------------------------------------------------------------- /reverse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/README.md -------------------------------------------------------------------------------- /reverse/dark_dimension/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/dark_dimension/Dockerfile -------------------------------------------------------------------------------- /reverse/dark_dimension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/dark_dimension/README.md -------------------------------------------------------------------------------- /reverse/dark_dimension/dark_dimension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/dark_dimension/dark_dimension.dart -------------------------------------------------------------------------------- /reverse/dark_dimension/dark_dimension.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/dark_dimension/dark_dimension.exe -------------------------------------------------------------------------------- /reverse/dark_dimension/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/dark_dimension/speedtest.py -------------------------------------------------------------------------------- /reverse/impossible_challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/impossible_challenge/README.md -------------------------------------------------------------------------------- /reverse/impossible_challenge/impossible_challenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/impossible_challenge/impossible_challenge -------------------------------------------------------------------------------- /reverse/impossible_challenge/impossible_challenge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/impossible_challenge/impossible_challenge.c -------------------------------------------------------------------------------- /reverse/mazinrev/README.md: -------------------------------------------------------------------------------- 1 | # MazinRev 2 | 3 | ## Write-up 4 | 5 | TODO 6 | -------------------------------------------------------------------------------- /reverse/mazinrev/mazinrev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/mazinrev/mazinrev -------------------------------------------------------------------------------- /reverse/oldschool/README.md: -------------------------------------------------------------------------------- 1 | # oldschool 2 | 3 | ## Write-up 4 | 5 | [Solve script](./find_eq.rb). 6 | -------------------------------------------------------------------------------- /reverse/oldschool/find_eq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/oldschool/find_eq.rb -------------------------------------------------------------------------------- /reverse/oldschool/mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/oldschool/mbr.asm -------------------------------------------------------------------------------- /reverse/oldschool/oldschool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/oldschool/oldschool -------------------------------------------------------------------------------- /reverse/traditions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/traditions/README.md -------------------------------------------------------------------------------- /reverse/traditions/prog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/reverse/traditions/prog -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- 1 | # web 2 | 3 | This directory contains write-ups for `web` challenges. 4 | -------------------------------------------------------------------------------- /web/cookauth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/cookauth/README.md -------------------------------------------------------------------------------- /web/cookauth/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/cookauth/solve.py -------------------------------------------------------------------------------- /web/ezphp-fixed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/ezphp-fixed/README.md -------------------------------------------------------------------------------- /web/ezphp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/ezphp/README.md -------------------------------------------------------------------------------- /web/lay-lowah/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/lay-lowah/README.md -------------------------------------------------------------------------------- /web/perfect-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/perfect-model/README.md -------------------------------------------------------------------------------- /web/perfect-model/expl.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/perfect-model/expl.pkl -------------------------------------------------------------------------------- /web/perfect-model/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/perfect-model/exploit.py -------------------------------------------------------------------------------- /web/perfect-model/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/perfect-model/model.pkl -------------------------------------------------------------------------------- /web/perfect-model/public.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/perfect-model/public.csv -------------------------------------------------------------------------------- /web/pipe-your-way/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/pipe-your-way/README.md -------------------------------------------------------------------------------- /web/pipe-your-way/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/pipe-your-way/app.py -------------------------------------------------------------------------------- /web/pipe-your-way/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/pipe-your-way/solver.py -------------------------------------------------------------------------------- /web/validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/validator/README.md -------------------------------------------------------------------------------- /web/validator/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/validator/app.py -------------------------------------------------------------------------------- /web/validator/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/validator/solve.py -------------------------------------------------------------------------------- /web/yatodo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GDGAlgiers/gdg-algiers-ctf-2022-writeups/HEAD/web/yatodo/README.md --------------------------------------------------------------------------------