Code Monkey home page Code Monkey logo

try_decodings's Introduction

This Python script tries to decode bytes to plain text using some common binary-to-ascii encodings like Base64, percent encoding, HTML entity encoding, and a few others. Its inspiration was a StackExchange post by Nicolas Raoul.

Use it like this on a file:

python3 try_decodings.py temp.txt

Use it like this in a pipe:

$ printf 'example text' | base64 | try_decodings.py
Base64  : example text
Ascii85 : b'\xb3d\xdb\xf7\xac^\xdb\xf5g@\x05\xef'
Base85  : b'n ,\xbfg\x1a.\xc1"=\x9a\x86'
ROT13   : MKuuoKOfMFO0MKu0
Failed to decode: Base32, Base16, Uuencoding, BinHex
Output same as input: MIME quoted-printable, Percent-encoding, HTML

For a demonstration, run the self-test:

$ python3 try_decodings.py --selftest | less

License

This project is licensed under the terms of the MIT license.

try_decodings's People

Contributors

nbeaver avatar

Stargazers

iqiqiya avatar Tony Lin avatar cryb4by avatar  avatar  avatar  avatar icssec avatar  avatar  avatar  avatar  avatar  avatar Nicolas Raoul avatar

Watchers

James Cloos avatar  avatar  avatar

try_decodings's Issues

[Enhancement] Small suggestions for faster reading

Great program, I just feel the reading speed could be improved a little bit by:

  • Aligning the strings
  • Putting all failed encoding at the end
  • Removing the b'' part

Example:

Base64 :                Hi Tomas!
Ascii85 :               \x9c\xfeA\xadw%\xd1\xc8\x8b
Base85 :                W\xb9\x92{2"\xbd\x0fF
ROT13 :                 FTxtIT9gLKZu
MIME quoted-printable : SGkgVG9tYXMh
Percent-encoding :      SGkgVG9tYXMh
Base32 failed.
Base16 failed.
Uuencoding failed.
BinHex failed.

This will be especially important when many more encodings are implemented.

Cheers! :-)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.