Crates.io | basecracker |
lib.rs | basecracker |
version | 0.2.1 |
source | src |
created_at | 2022-03-17 17:09:46.776956 |
updated_at | 2024-06-25 20:54:14.676029 |
description | Encode, Decode and Crack encoded data, useful to crack some random encoded strings in CTFs. |
homepage | |
repository | https://github.com/skyf0l/BaseCracker |
max_upload_size | |
id | 551912 |
size | 68,597 |
BaseCracker is a tool to encode, decode and crack encoded data. It can be really useful to crack some random encoded strings in CTFs.
[!IMPORTANT] Archived because Ciphey is already way better for this...
From crates.io:
cargo install basecracker
Encode, Decode and Crack encoded data, useful to crack some random encoded strings in CTFs.
Usage: basecracker [OPTIONS] <COMMAND>
Commands:
encode Encode given plaintext/file using the specified bases
decode Decode given cipher/file using the specified bases
crack Crack given cipher/file
help Print this message or the help of the given subcommand(s)
Options:
-q, --quiet
Quiet mode, don't print anything except results
-v, --verbose
Verbose mode
-m, --min-printable-percentage <MIN_PRINTABLE_PERCENTAGE>
Minimum printable percentage to consider a result valid [default: 0.9]
-n, --no-newline
Do not output the trailing newline
-h, --help
Print help
-V, --version
Print version
$ basecracker encode "Awsome CTF tool" b64,b85,hex,b32,b62,b58
2eSHB3WFgFiySPWP47oyrMrT6Vb4WXTEv5ZyWdmWWJNJ4H65n2auRW4ZFutQPtXegrNimoCAeUfiQwMAnb4UYg6grcK2WUCTL9LquGa4564JBJK2jAbRfPVjKx9sCgUVdrsUfyMuMR6MipKYERRr
$ basecracker decode 2eSHB3WFgFiySPWP47oyrMrT6Vb4WXTEv5ZyWdmWWJNJ4H65n2auRW4ZFutQPtXegrNimoCAeUfiQwMAnb4UYg6grcK2WUCTL9LquGa4564JBJK2jAbRfPVjKx9sCgUVdrsUfyMuMR6MipKYERRr b64,b85,hex,b32,b62,b58 -r
Awsome CTF tool
$ basecracker crack 2eSHB3WFgFiySPWP47oyrMrT6Vb4WXTEv5ZyWdmWWJNJ4H65n2auRW4ZFutQPtXegrNimoCAeUfiQwMAnb4UYg6grcK2WUCTL9LquGa4564JBJK2jAbRfPVjKx9sCgUVdrsUfyMuMR6MipKYERRr
Recipe: base58,base62,base32,hex,base85,base64
Awsome CTF tool
Useful if you want to see the steps of encoding/decoding/cracking
$ basecracker -v crack 2eSHB3WFgFiySPWP47oyrMrT6Vb4WXTEv5ZyWdmWWJNJ4H65n2auRW4ZFutQPtXegrNimoCAeUfiQwMAnb4UYg6grcK2WUCTL9LquGa4564JBJK2jAbRf
PVjKx9sCgUVdrsUfyMuMR6MipKYERRr
Recipe: base58,base62,base32,hex,base85,base64
Applying base58: 9Y91a8AfMC1fYZFb6THWx0VBVu1R6BPhFsVhmAksMcKNLIibCXXnDGACS9woBiiuUhmwYgcEHrO4ZjPlvMVUTBxuOkLovyLgGTL2MOCZml9y
Applying base62: GUYTIMZUMQ2TMNZQGU3DMYZXGA3TMNTGGRSTMYRXGY2TQNTGGUYTMNRVG43DINTCGU3DMYZXGA3WEMRV
Applying base32: 51434d5670566c70766f4e6b76586f516657646b566c707b25
Applying hex: QCMVpVlpvoNkvXoQfWdkVlp{%
Applying base85: QXdzb21lIENURiB0b29s
Applying base64: Awsome CTF tool
Awsome CTF tool
Licensed under either of
at your option.
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.