├── 9447 CTF 2015 └── The real flag finder │ ├── flagFinderRedux │ ├── redux.rr2 │ └── solve.py ├── Atenea CTF ├── Counter │ ├── Counter-d060ed1dd46ee60319b7013d2b65f186.exe │ └── README.md ├── Crackme- if you can... │ └── README.md ├── Saint Seiya │ ├── README.md │ ├── Saint_Seiya-3db53d5cf73c57e698c0687738404478.exe │ └── dissas.PNG ├── Spear Phising... Can you catch me │ └── README.md └── WannaCry │ ├── README.md │ └── wannacry.exe ├── CSAW 2016 └── Gametime │ ├── Captura.PNG │ ├── README.md │ └── gametime.exe ├── Defcamp CTF Qualifications 2015 └── entry-language-100 │ ├── r100 │ ├── r100patch │ ├── r100patch.rr2 │ └── solve.py ├── Flare-On 2018 └── Ultimate Minesweeper │ ├── Captura.PNG │ ├── README.md │ ├── Solve │ └── Program.cs │ └── UltimateMinesweeper.exe ├── H4CK1T CTF 2016 └── Crypt00perator │ ├── crypt0_0perator.py │ └── crypt0_0perator_56e0a9f07f54b3634ab5cc2b30e5b29e.exe ├── Hack The Box ├── Find The Easy Pass │ ├── EasyPass.exe │ ├── README.md │ ├── output.PNG │ └── solve.7z └── Impossible Password │ ├── README.md │ ├── impossible_password.bin │ └── out.png ├── Hacklu CTF 2018 └── Baby Reverse │ ├── estimate.py │ └── public │ ├── chall │ └── notes ├── HoneyCON CTF 2018 ├── Basic Conditional Decision │ └── rev3 ├── Brute Me │ ├── rev4 │ └── solve.py └── Ultra Secure Bank Login │ └── reto5 ├── INSTRUO CTF 2018 └── Tez Bano Tez │ ├── rev150 │ ├── rev150.rr2 │ ├── rev_patch │ └── solve.py ├── InCTF 2018 └── Decoy │ ├── Decoy.exe │ └── README.md ├── LICENSE ├── Malware Data Science └── ch1 │ ├── README.md │ ├── fakepdfmalware.exe │ ├── fakeword.exe │ └── ircbot.exe ├── Navarra Lan Party CTF 2018 ├── In time │ ├── in-time │ ├── intime.rr2 │ └── solve_intime.py └── Key is the key │ ├── keyisthekey.bin │ ├── keyisthekey_patch │ └── reverse.py ├── PatataCTF └── Angry Potato │ ├── angry-potato │ └── reverse.py ├── Practical Malware Analysis Lab ├── Lab01-01 │ ├── Lab01-01.dll │ ├── Lab01-01.exe │ ├── README.md │ └── recon-lab1-1.py └── Lab01-02 │ ├── Lab01-02.exe │ ├── README.md │ ├── Unpacked_Lab01-02.exe │ └── recon-lab1-2.py ├── README.md ├── State machine └── Ret0 │ ├── Ret0.zip │ └── keygen.py ├── X-MAS CTF 2019 ├── LAST_XMAS └── main ├── babyrevjohnson └── main ├── basic.asm ├── entropy ├── entropy └── solver.py ├── r2con2018 ├── disqualified │ ├── disqualified │ ├── disqualified.rr2 │ └── solve.py ├── forceme │ ├── forceme │ ├── reverse-brute.py │ └── reverse.py ├── psv │ ├── psv │ └── solve.py └── scrabble │ ├── reverse-brute.py │ ├── reverse.py │ └── scrabble └── whats-a-rune ├── chall.py ├── main-chall.go └── the /9447 CTF 2015/The real flag finder/flagFinderRedux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/9447 CTF 2015/The real flag finder/flagFinderRedux -------------------------------------------------------------------------------- /9447 CTF 2015/The real flag finder/redux.rr2: -------------------------------------------------------------------------------- 1 | #!/usr/bin/rarun2 2 | program=./flagFinderRedux 3 | arg1="AAAA" 4 | 5 | -------------------------------------------------------------------------------- /9447 CTF 2015/The real flag finder/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/9447 CTF 2015/The real flag finder/solve.py -------------------------------------------------------------------------------- /Atenea CTF/Counter/Counter-d060ed1dd46ee60319b7013d2b65f186.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Atenea CTF/Counter/Counter-d060ed1dd46ee60319b7013d2b65f186.exe -------------------------------------------------------------------------------- /Atenea CTF/Counter/README.md: -------------------------------------------------------------------------------- 1 | Packed .NET dnspy is your friend :) 2 | -------------------------------------------------------------------------------- /Atenea CTF/Crackme- if you can.../README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Atenea CTF/Crackme- if you can.../README.md -------------------------------------------------------------------------------- /Atenea CTF/Saint Seiya/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Atenea CTF/Saint Seiya/README.md -------------------------------------------------------------------------------- /Atenea CTF/Saint Seiya/Saint_Seiya-3db53d5cf73c57e698c0687738404478.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Atenea CTF/Saint Seiya/Saint_Seiya-3db53d5cf73c57e698c0687738404478.exe -------------------------------------------------------------------------------- /Atenea CTF/Saint Seiya/dissas.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Atenea CTF/Saint Seiya/dissas.PNG -------------------------------------------------------------------------------- /Atenea CTF/Spear Phising... Can you catch me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Atenea CTF/Spear Phising... Can you catch me/README.md -------------------------------------------------------------------------------- /Atenea CTF/WannaCry/README.md: -------------------------------------------------------------------------------- 1 | Baby challenge :) 2 | -------------------------------------------------------------------------------- /Atenea CTF/WannaCry/wannacry.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Atenea CTF/WannaCry/wannacry.exe -------------------------------------------------------------------------------- /CSAW 2016/Gametime/Captura.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/CSAW 2016/Gametime/Captura.PNG -------------------------------------------------------------------------------- /CSAW 2016/Gametime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/CSAW 2016/Gametime/README.md -------------------------------------------------------------------------------- /CSAW 2016/Gametime/gametime.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/CSAW 2016/Gametime/gametime.exe -------------------------------------------------------------------------------- /Defcamp CTF Qualifications 2015/entry-language-100/r100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Defcamp CTF Qualifications 2015/entry-language-100/r100 -------------------------------------------------------------------------------- /Defcamp CTF Qualifications 2015/entry-language-100/r100patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Defcamp CTF Qualifications 2015/entry-language-100/r100patch -------------------------------------------------------------------------------- /Defcamp CTF Qualifications 2015/entry-language-100/r100patch.rr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Defcamp CTF Qualifications 2015/entry-language-100/r100patch.rr2 -------------------------------------------------------------------------------- /Defcamp CTF Qualifications 2015/entry-language-100/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Defcamp CTF Qualifications 2015/entry-language-100/solve.py -------------------------------------------------------------------------------- /Flare-On 2018/Ultimate Minesweeper/Captura.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Flare-On 2018/Ultimate Minesweeper/Captura.PNG -------------------------------------------------------------------------------- /Flare-On 2018/Ultimate Minesweeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Flare-On 2018/Ultimate Minesweeper/README.md -------------------------------------------------------------------------------- /Flare-On 2018/Ultimate Minesweeper/Solve/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Flare-On 2018/Ultimate Minesweeper/Solve/Program.cs -------------------------------------------------------------------------------- /Flare-On 2018/Ultimate Minesweeper/UltimateMinesweeper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Flare-On 2018/Ultimate Minesweeper/UltimateMinesweeper.exe -------------------------------------------------------------------------------- /H4CK1T CTF 2016/Crypt00perator/crypt0_0perator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/H4CK1T CTF 2016/Crypt00perator/crypt0_0perator.py -------------------------------------------------------------------------------- /H4CK1T CTF 2016/Crypt00perator/crypt0_0perator_56e0a9f07f54b3634ab5cc2b30e5b29e.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/H4CK1T CTF 2016/Crypt00perator/crypt0_0perator_56e0a9f07f54b3634ab5cc2b30e5b29e.exe -------------------------------------------------------------------------------- /Hack The Box/Find The Easy Pass/EasyPass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Hack The Box/Find The Easy Pass/EasyPass.exe -------------------------------------------------------------------------------- /Hack The Box/Find The Easy Pass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Hack The Box/Find The Easy Pass/README.md -------------------------------------------------------------------------------- /Hack The Box/Find The Easy Pass/output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Hack The Box/Find The Easy Pass/output.PNG -------------------------------------------------------------------------------- /Hack The Box/Find The Easy Pass/solve.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Hack The Box/Find The Easy Pass/solve.7z -------------------------------------------------------------------------------- /Hack The Box/Impossible Password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Hack The Box/Impossible Password/README.md -------------------------------------------------------------------------------- /Hack The Box/Impossible Password/impossible_password.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Hack The Box/Impossible Password/impossible_password.bin -------------------------------------------------------------------------------- /Hack The Box/Impossible Password/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Hack The Box/Impossible Password/out.png -------------------------------------------------------------------------------- /Hacklu CTF 2018/Baby Reverse/estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Hacklu CTF 2018/Baby Reverse/estimate.py -------------------------------------------------------------------------------- /Hacklu CTF 2018/Baby Reverse/public/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Hacklu CTF 2018/Baby Reverse/public/chall -------------------------------------------------------------------------------- /Hacklu CTF 2018/Baby Reverse/public/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Hacklu CTF 2018/Baby Reverse/public/notes -------------------------------------------------------------------------------- /HoneyCON CTF 2018/Basic Conditional Decision/rev3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/HoneyCON CTF 2018/Basic Conditional Decision/rev3 -------------------------------------------------------------------------------- /HoneyCON CTF 2018/Brute Me/rev4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/HoneyCON CTF 2018/Brute Me/rev4 -------------------------------------------------------------------------------- /HoneyCON CTF 2018/Brute Me/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/HoneyCON CTF 2018/Brute Me/solve.py -------------------------------------------------------------------------------- /HoneyCON CTF 2018/Ultra Secure Bank Login/reto5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/HoneyCON CTF 2018/Ultra Secure Bank Login/reto5 -------------------------------------------------------------------------------- /INSTRUO CTF 2018/Tez Bano Tez/rev150: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/INSTRUO CTF 2018/Tez Bano Tez/rev150 -------------------------------------------------------------------------------- /INSTRUO CTF 2018/Tez Bano Tez/rev150.rr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/INSTRUO CTF 2018/Tez Bano Tez/rev150.rr2 -------------------------------------------------------------------------------- /INSTRUO CTF 2018/Tez Bano Tez/rev_patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/INSTRUO CTF 2018/Tez Bano Tez/rev_patch -------------------------------------------------------------------------------- /INSTRUO CTF 2018/Tez Bano Tez/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/INSTRUO CTF 2018/Tez Bano Tez/solve.py -------------------------------------------------------------------------------- /InCTF 2018/Decoy/Decoy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/InCTF 2018/Decoy/Decoy.exe -------------------------------------------------------------------------------- /InCTF 2018/Decoy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/InCTF 2018/Decoy/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/LICENSE -------------------------------------------------------------------------------- /Malware Data Science/ch1/README.md: -------------------------------------------------------------------------------- 1 | Code and Data 2 | -------------------------------------------------------------------------------- /Malware Data Science/ch1/fakepdfmalware.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Malware Data Science/ch1/fakepdfmalware.exe -------------------------------------------------------------------------------- /Malware Data Science/ch1/fakeword.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Malware Data Science/ch1/fakeword.exe -------------------------------------------------------------------------------- /Malware Data Science/ch1/ircbot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Malware Data Science/ch1/ircbot.exe -------------------------------------------------------------------------------- /Navarra Lan Party CTF 2018/In time/in-time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Navarra Lan Party CTF 2018/In time/in-time -------------------------------------------------------------------------------- /Navarra Lan Party CTF 2018/In time/intime.rr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Navarra Lan Party CTF 2018/In time/intime.rr2 -------------------------------------------------------------------------------- /Navarra Lan Party CTF 2018/In time/solve_intime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Navarra Lan Party CTF 2018/In time/solve_intime.py -------------------------------------------------------------------------------- /Navarra Lan Party CTF 2018/Key is the key/keyisthekey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Navarra Lan Party CTF 2018/Key is the key/keyisthekey.bin -------------------------------------------------------------------------------- /Navarra Lan Party CTF 2018/Key is the key/keyisthekey_patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Navarra Lan Party CTF 2018/Key is the key/keyisthekey_patch -------------------------------------------------------------------------------- /Navarra Lan Party CTF 2018/Key is the key/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Navarra Lan Party CTF 2018/Key is the key/reverse.py -------------------------------------------------------------------------------- /PatataCTF/Angry Potato/angry-potato: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/PatataCTF/Angry Potato/angry-potato -------------------------------------------------------------------------------- /PatataCTF/Angry Potato/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/PatataCTF/Angry Potato/reverse.py -------------------------------------------------------------------------------- /Practical Malware Analysis Lab/Lab01-01/Lab01-01.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Practical Malware Analysis Lab/Lab01-01/Lab01-01.dll -------------------------------------------------------------------------------- /Practical Malware Analysis Lab/Lab01-01/Lab01-01.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Practical Malware Analysis Lab/Lab01-01/Lab01-01.exe -------------------------------------------------------------------------------- /Practical Malware Analysis Lab/Lab01-01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Practical Malware Analysis Lab/Lab01-01/README.md -------------------------------------------------------------------------------- /Practical Malware Analysis Lab/Lab01-01/recon-lab1-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Practical Malware Analysis Lab/Lab01-01/recon-lab1-1.py -------------------------------------------------------------------------------- /Practical Malware Analysis Lab/Lab01-02/Lab01-02.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Practical Malware Analysis Lab/Lab01-02/Lab01-02.exe -------------------------------------------------------------------------------- /Practical Malware Analysis Lab/Lab01-02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Practical Malware Analysis Lab/Lab01-02/README.md -------------------------------------------------------------------------------- /Practical Malware Analysis Lab/Lab01-02/Unpacked_Lab01-02.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Practical Malware Analysis Lab/Lab01-02/Unpacked_Lab01-02.exe -------------------------------------------------------------------------------- /Practical Malware Analysis Lab/Lab01-02/recon-lab1-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/Practical Malware Analysis Lab/Lab01-02/recon-lab1-2.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/README.md -------------------------------------------------------------------------------- /State machine/Ret0/Ret0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/State machine/Ret0/Ret0.zip -------------------------------------------------------------------------------- /State machine/Ret0/keygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/State machine/Ret0/keygen.py -------------------------------------------------------------------------------- /X-MAS CTF 2019/LAST_XMAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/X-MAS CTF 2019/LAST_XMAS -------------------------------------------------------------------------------- /X-MAS CTF 2019/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/X-MAS CTF 2019/main -------------------------------------------------------------------------------- /babyrevjohnson/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/babyrevjohnson/main -------------------------------------------------------------------------------- /basic.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/basic.asm -------------------------------------------------------------------------------- /entropy/entropy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/entropy/entropy -------------------------------------------------------------------------------- /entropy/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/entropy/solver.py -------------------------------------------------------------------------------- /r2con2018/disqualified/disqualified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/r2con2018/disqualified/disqualified -------------------------------------------------------------------------------- /r2con2018/disqualified/disqualified.rr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/r2con2018/disqualified/disqualified.rr2 -------------------------------------------------------------------------------- /r2con2018/disqualified/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/r2con2018/disqualified/solve.py -------------------------------------------------------------------------------- /r2con2018/forceme/forceme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/r2con2018/forceme/forceme -------------------------------------------------------------------------------- /r2con2018/forceme/reverse-brute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/r2con2018/forceme/reverse-brute.py -------------------------------------------------------------------------------- /r2con2018/forceme/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/r2con2018/forceme/reverse.py -------------------------------------------------------------------------------- /r2con2018/psv/psv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/r2con2018/psv/psv -------------------------------------------------------------------------------- /r2con2018/psv/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/r2con2018/psv/solve.py -------------------------------------------------------------------------------- /r2con2018/scrabble/reverse-brute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/r2con2018/scrabble/reverse-brute.py -------------------------------------------------------------------------------- /r2con2018/scrabble/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/r2con2018/scrabble/reverse.py -------------------------------------------------------------------------------- /r2con2018/scrabble/scrabble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/r2con2018/scrabble/scrabble -------------------------------------------------------------------------------- /whats-a-rune/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/whats-a-rune/chall.py -------------------------------------------------------------------------------- /whats-a-rune/main-chall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/whats-a-rune/main-chall.go -------------------------------------------------------------------------------- /whats-a-rune/the: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naivenom/reversing-list/HEAD/whats-a-rune/the --------------------------------------------------------------------------------