CTF tool for identifying, brute forcing and decoding encryption schemes in an automated way.
Click here for the live version (use Chrome).
Crypto CTF (sub)challenges can roughly be categorized as follows:
- Weak implementation/configuration of strong cryptographic schemes (e.g. RSA based challenges)
- Weak cryptographic cipher usage (e.g. Vigenère)
- Obfuscation (e.g. Skip, Railfence)
- Encodings (e.g. Base32, Morse)
While case 1 is arguably the most fun to solve, cases 2 to 4 are still used in CTFs, i.e. CyberLympics. It can take a lot of time figuring out what it exactly is. This is especially true since no available tool does the identification of which cipher/encoding is used.
Solve Crypto With Force (SCWF) was created in 2014 as a "scratch your own itch" to automate the identification and decryption of the above mentioned cases 2 to 4 in certain CTF's (cough CyberLympics). This allowed brainpower to be used for other, more fun challenges to be solved.
SCWF uses statistical analysis to identify which encoding or encryption is used and grade the output using a dictionary. It will grade each output by identifying English words, links and flags. You input a challenge in the top textarea and it will make a graph in an attempt to solve it.
A graph that is created within a few seconds from this example input: 2016 Internetwache CTF - crypto pirate 50
Currently, the following ciphers can be identified and solved fully or to a certain extent:
Click here for the live version.
For offline use: clone all and open index.html.
Optional: Host /ServerSidePHP/ folder on your own server and point "var lookup_proxy_host" to your own server.
Support: The code is only tested for Chrome on a 1080p normal-PPI screen. However, Firefox on Linux also seems to work reasonably well.
Manual testing can be done by pasting your obfuscated string or one from DECRYPTME.txt in the top textarea.
Running automated tests is as easy as hitting the top-right "Test-Mode" button. Every time a new cipher is added, add one extra test case in js/TestCases.js .
For testing, brainstorming and bug reports 😄
- Hack.ERS
- dotelite
All other projects I borrowed code from!
This project is licensed under the GNU General Public License v3.0.