Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Decodify — Detect and decode encoded strings, recursively. | Kitploit
Tools/GitHubGitHub/s0md3v/decodify
General Purpose UtilitiesHash AnalysisCryptography
GitHubs0md3v/decodify

Decodify

Detect and decode encoded strings, recursively.

View Repository
93116111 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Decodify

It can detect and decode encoded strings, recursively.
Lets take this string : s0md3v and encode it in Base 64

root@kitploit:~
czBtZDN2

Now lets encode it in hex

root@kitploit:~
637a42745a444e32

And now again in Base 64

root@kitploit:~
NjM3YTQyNzQ1YTQ0NGUzMg==

Now lets supply it to Decodify

Boom! Thats what Decodify does. It automatically detects the encoding and decodes it and it does that recursively.

Supported Encodings and Encryptions

  • Caesar ciphers
  • Hex
  • Decimal
  • Binary
  • Base64
  • URL
  • FromChar
  • MD5
  • SHA1
  • SHA2

Warning: Decodify uses third party web services for MD5, SHA1 & SHA2 hash lookups. If you are dealing with sensitive data, you are advised to use the -s option which will prevent Decodify to use these services.

Usage

Download Decodify with the following command:

root@kitploit:~
git clone https://github.com/s0md3v/Decodify

Now switch to Decodify directory and run the installer with this command:

root@kitploit:~
make install

Now you can run decodify by entering dcode <string to decode> in your terminal.

To remove Decodify run the uninstaller with this command

root@kitploit:~
make uninstall

Decoding Caesar Cipher

You can supply the offest by --rot option or you can tell Decodify to decode for 1-26 offest by using --rot all.
Using -rot all option on the string bpgkta xh qtiitg iwpc sr gives the following output:

rot all demo

Reversing a String

You can reverse a string by using the -rev option.

Contribution

If you encounter a valid encoded string which wasn't correctly processed by Decodfiy, please open an issue including the string.
You can also contribute by adding support for more encodings or by fixing my poorly writting code.

Download Tool