Skip to content

Anon-Exploiter/decoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Decoder

Automating the Manual :)

made-with-python GitHub Contributors GitHub closed issues GitHub pull requests Twitter

image

A simple script to try and decode a string in various encoding mechanisms regardless of it's (original) type.

The one-liner doesn't make much sense right? Don't worry, I gotcha!

Let's say you've a string (you obtained from somewhere, maybe a boot2root machine, ctf, etc.), you know it's encoded (isn't a hash and is not encrypted) but just can't figure out the encoding mechanism used? No worries, this script will try and decode it in most used encoding mechanisms (i.e. base64, rot47, atbash, etc.)

Once the results come back, make sure to go through each and every line! That's all manual :3

The script for now only supports:

  • Base16
  • Base32
  • Base64
  • Base85
  • Atbash
  • Baconian
  • Caesar
  • Morse
  • Rot13
  • Rot47

Tested On (OS & Python version)

  • Ubuntu 20.04 LTS -- Python 3.8.5
  • Arch Linux -- Python 3.9.2

Downloading & Installation

pip3 install decoder 

OR

git clone https://github.com/Anon-Exploiter/decoder/
cd decoder/
python3 setup.py build 
python3 setup.py install

Usage

Decoding a string from directly from argument:

decoder -s 'uryyb'

Decoding a string from a file:

decoder -f rot47-encoded.txt

Todos

  • Add Colors
  • Utilize internal libraries to add all the decoding (rather than custom written code)

Filing Bugs/Contribution

Feel free to file a issue or create a PR for that issue if you come across any.

Screenshots

image

image

image

Contributors

Credits

Well this is shit work, any other tools which have the same functionality and actually work? Yes!

About

A simple script to try and decode a string in various encoding mechanisms regardless of its (original) type.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages