mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-27 02:59:08 -04:00
Cryptography
MD5
Scripts
- Hash length extension attack
- Brute force hex digest chars
SHA
Scripts
- SHA-256 brute force
Rotation Ciphers
Scripts
- Caesar
- Brute force rotation
- Pygenere
- Frequency analysis
Online tools:
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
In Python we can use decoding:
"YRIRY GJB CNFFJBEQ EBGGRA".decode(encoding="ROT13")
Pailier Cryptosystem
Scripts
- POC
- Primes
Tools
Scripts:
- Finding GDC
- Finding if prime
- Generate prime
- Quick Select
- XORtool