mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-27 19:16:08 -04:00
26 lines
474 B
Markdown
26 lines
474 B
Markdown
# TOOLS:
|
|
|
|
- https://www.cryptool.org/en/cryptool1-en
|
|
|
|
- frequency analyses online:
|
|
http://www.simonsingh.net/The_Black_Chamber/hintsandtips.html
|
|
http://www.xarg.org/tools/caesar-cipher/
|
|
|
|
|
|
## ROT13
|
|
|
|
In the command line
|
|
```
|
|
VAR=$(cat data.txt)
|
|
echo "$VAR"
|
|
alias rot13="tr A-Za-z N-ZA-Mn-za-m"
|
|
echo "$VAR" | rot13
|
|
```
|
|
----
|
|
|
|
|
|
In Python we can use: ```"YRIRY GJB CNFFJBEQ EBGGRA".decode(encoding="ROT13")```
|
|
https://docs.python.org/2/library/codecs.html#codec-base-classes
|
|
|
|
---
|