BaseCracker

Build Help Wanted codecov Lines Of Code

BaseCracker is a tool to encode, decode and crack encoded data. It can be really useful to crack some random encoded strings in CTFs.

Installation

You can build and install it from source using cargo:

console cargo install basecracker

Current supported encodings

Options

``` basecracker 0.1.0 Encode, decode and crack encoded data

USAGE: basecracker [OPTIONS]

OPTIONS: -b, --bases ... Set base to use (can be separated by comma or space) -c, --crack Crack the cipher/file using the specified bases (default: all) -d, --decode Decode given cipher/file using the specified bases -e, --encode

Encode given plaintext/file using the specified bases -h, --help Print help information -j, --json Output cracker results in json format -l, --list List supported bases -q, --quiet Quiet mode, don't print anything except results -r, --reversed Reverse bases order (default: false) -v, --verbose Verbose mode, print encoding/decoding steps -V, --version Print version information ```</p> <h2>Example</h2> <p><code>console $ basecracker -e "Awsome CTF tool" -b b64,b85,hex,b32,b62,b58 2SYnX25ZB1torUZ1AmsobB58ESDjzHzb2dJTZuwt22KfynQP1eRjxPoumGWiA45iGpRw2sx5LVB1D8K8xaLTTetafmPs3a44oiaFxrg3s4d4fkWJ36UzrSFWuLL6WbdQ5nbQSBCV7gC2DCzrxpaj $ basecracker -d 2SYnX25ZB1torUZ1AmsobB58ESDjzHzb2dJTZuwt22KfynQP1eRjxPoumGWiA45iGpRw2sx5LVB1D8K8xaLTTetafmPs3a44oiaFxrg3s4d4fkWJ36UzrSFWuLL6WbdQ5nbQSBCV7gC2DCzrxpaj -b b64,b85,hex,b32,b62,b58 -r Awsome CTF tool $ basecracker -c 2SYnX25ZB1torUZ1AmsobB58ESDjzHzb2dJTZuwt22KfynQP1eRjxPoumGWiA45iGpRw2sx5LVB1D8K8xaLTTetafmPs3a44oiaFxrg3s4d4fkWJ36UzrSFWuLL6WbdQ5nbQSBCV7gC2DCzrxpaj Recipe: base58 -&gt; base62 -&gt; base32 -&gt; hex -&gt; base85 -&gt; base64 Result: Awsome CTF tool </code></p> <h2>JSON output</h2> <p>BaseCracker can output results in JSON format. This is useful for other tools that can parse JSON output.</p> <p><code>console $ basecracker -c 2SYnX25ZB1torUZ1AmsobB58ESDjzHzb2dJTZuwt22KfynQP1eRjxPoumGWiA45iGpRw2sx5LVB1D8K8xaLTTetafmPs3a44oiaFxrg3s4d4fkWJ36UzrSFWuLL6WbdQ5nbQSBCV7gC2DCzrxpaj -j | jq { "cipher": "2SYnX25ZB1torUZ1AmsobB58ESDjzHzb2dJTZuwt22KfynQP1eRjxPoumGWiA45iGpRw2sx5LVB1D8K8xaLTTetafmPs3a44oiaFxrg3s4d4fkWJ36UzrSFWuLL6WbdQ5nbQSBCV7gC2DCzrxpaj", "plaintexts": [ { "bases": [ "base58", "base62", "base32", "hex", "base85", "base64" ], "plaintext": "Awsome CTF tool" } ] } </code></p> <h2>Verbose mode</h2> <p>Useful if you want to see the steps of encoding/decoding.</p> <p>```console $ basecracker -d 2SYnX25ZB1torUZ1AmsobB58ESDjzHzb2dJTZuwt22KfynQP1eRjxPoumGWiA45iGpRw2sx5LVB1D8K8xaLTTetafmPs3a44oiaFxrg3s4d4fkWJ36UzrSFWuLL6WbdQ5nbQSBCV7gC2DCzrxpaj -b b64,b85,hex,b32,b62,b58 -r -v Cipher: 2SYnX25ZB1torUZ1AmsobB58ESDjzHzb2dJTZuwt22KfynQP1eRjxPoumGWiA45iGpRw2sx5LVB1D8K8xaLTTetafmPs3a44oiaFxrg3s4d4fkWJ36UzrSFWuLL6WbdQ5nbQSBCV7gC2DCzrxpaj</p> <p>Applying base58: 24zWWqnLNTkqrJLFhyjKgOLhOVogWn56yCpBh7iHx8gU5QIcIwP4HuxlqkbBy7ccozgSHPut9d04qUU2erRetVaJE8bkM0XiKqQBWGaM96NH Applying base62: GNRDEZBTG42DANJUGQYDKMBVGQ2WCNJTGM4DIZRVME2DENJTGNRDIYJUGE2DQNDGGQYDKMBVGQ3TENRS Applying base32: 3b2d3740544050545a53384f5a42533b4a41484f4050547262 Applying hex: ;-7@T@PTZS8OZBS;JAHO@PTrb Applying base85: QXdzb21lIENURiB0b29s Applying base64: Awsome CTF tool</p> <p>Plaintext: Awsome CTF tool ```</p> <h2>License</h2> <p>Licensed under either of</p> <ul> <li>Apache License, Version 2.0 (<a href="LICENSE-APACHE">LICENSE-APACHE</a> or http://www.apache.org/licenses/LICENSE-2.0)</li> <li>MIT license (<a href="LICENSE-MIT">LICENSE-MIT</a> or http://opensource.org/licenses/MIT)</li> </ul> <p>at your option.</p> <h2>Contribution</h2> <p>Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.</p> </body></html>