Added Atbash Cipher for reference

pull/1/head
John Hammond 2018-02-22 17:36:18 -05:00
parent b56c876529
commit f692da2bff
1 changed files with 13 additions and 1 deletions

View File

@ -72,6 +72,7 @@ sudo apt install zbar-tools
Cryptography
-----------------
* Reversed Text
Sometimes a "ciphertext" is just as easy as reversed text. Don't forgot to check under this rock! You can reverse a string in [Python] like so:
@ -103,6 +104,10 @@ Cryptography
A command-line caesar cipher tool (noted above) found in the `bsdgames` package.
* [Atbash Cipher]
If you have some text that you have no idea what it is, try the [Atbash cipher]! It's a letter mapping, but the alphabet is reversed: like `A` maps to `Z`, `B` maps to `Y` and so on. There are tons of online tools to do this ([http://rumkin.com/tools/cipher/atbash.php](http://rumkin.com/tools/cipher/atbash.php)), and you can build it with [Python].
* [Vigenere Cipher]
[http://www.mygeocachingprofile.com/codebreaker.vigenerecipher.aspx](http://www.mygeocachingprofile.com/codebreaker.vigenerecipher.aspx), [https://www.guballa.de/vigenere-solver](https://www.guballa.de/vigenere-solver)
@ -191,6 +196,11 @@ ls -1t | head -5 # see the last 5 recently modified files
```
* [PcapXray]
A GUI tool to visualize network traffic.
PHP
------------
@ -517,4 +527,6 @@ Miscellaneous
[JAR]: https://en.wikipedia.org/wiki/JAR_(file_format)
[OpenStego]: https://www.openstego.com/
[Stegsolve.jar]: http://www.caesum.com/handbook/stego.htm
[Stegsolve]: http://www.caesum.com/handbook/stego.htm
[Stegsolve]: http://www.caesum.com/handbook/stego.htm
[PcapXray]: https://github.com/Srinivas11789/PcapXray
[Atbash Cipher]: https://en.wikipedia.org/wiki/Atbash