BaseCracker
BaseCracker copied to clipboard
Encode, Decode and Crack encoded data, useful to crack some random encoded strings in CTFs.
Works with Base64 but fail with Base32 ```bash > RUST_BACKTRACE=1 basecracker crack "MJQXG2LMNFZWW4Y=" thread 'main' panicked at 'explicit panic', /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/base85-1.1.1/src/lib.rs:210:18 stack backtrace: 0: rust_begin_unwind at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/std/src/panicking.rs:578:5 1: core::panicking::panic_fmt at /rustc/90c541806f23a127002de5b4038be731ba1458ca/library/core/src/panicking.rs:67:14...
Sometimes, cipher is reversed or maybe something else, not just encoded with bases. It can be a good idea to brute-force them too. But a problem will arise, it can...