From 50834bafd7c3108120319ac476bc6253a7b7e49c Mon Sep 17 00:00:00 2001 From: bl-ue <54780737+bl-ue@users.noreply.github.com> Date: Wed, 14 Apr 2021 03:43:10 -0400 Subject: [PATCH] dcode: add page (#5747) --- pages/common/dcode.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/dcode.md diff --git a/pages/common/dcode.md b/pages/common/dcode.md new file mode 100644 index 000000000..cfa09c144 --- /dev/null +++ b/pages/common/dcode.md @@ -0,0 +1,21 @@ +# dcode + +> Recursively detect and decode strings, supporting hex, decimal, binary, base64, URL, FromChar encodings, Caesar ciphers, and MD5, SHA1, and SHA2 hashes. +> Warning: uses 3rd-party web services for MD5, SHA1 and SHA2 hash lookups. For sensitive data, use `-s` to avoid these services. +> More information: . + +- Recursively detect and decode a string: + +`dcode "{{NjM3YTQyNzQ1YTQ0NGUzMg==}}"` + +- Rotate a string by the specified offset: + +`dcode -rot {{11}} "{{spwwz hzcwo}}"` + +- Rotate a string by all 26 possible offsets: + +`dcode -rot {{all}} "{{bpgkta xh qtiitg iwpc sr}}"` + +- Reverse a string: + +`dcode -rev "{{hello world}}"`