2020-07-15 15:43:14 +00:00
# MISC
2021-10-18 11:21:18 +00:00
In a ping response TTL:\
127 = Windows\
254 = Cisco\
2020-07-15 15:43:14 +00:00
Lo demás,algunlinux
2021-10-18 11:21:18 +00:00
$1$- md5\
$2$or $2a$ - Blowfish\
$5$- sha256\
2020-07-15 15:43:14 +00:00
$6$- sha512
If you do not know what is behind a service, try to make and HTTP GET request.
2021-10-18 11:21:18 +00:00
**UDP Scans**\
****nc -nv -u -z -w 1 \<IP> 160-16
2020-07-15 15:43:14 +00:00
2021-10-18 11:21:18 +00:00
An empty UDP packet is sent to a specific port. If the UDP port is open, no reply is sent back from the target machine. If the UDP port is closed, an ICMP port unreachable packet should be sent back from the target machine.\
2020-07-15 15:43:14 +00:00
2021-10-18 11:21:18 +00:00
UDP port scanning is often unreliable, as firewalls and routers may drop ICMP\
packets. This can lead to false positives in your scan, and you will regularly see\
UDP port scans showing all UDP ports open on a scanned machine.\
o Most port scanners do not scan all available ports, and usually have a preset list\
2020-07-15 15:43:14 +00:00
of “interesting ports” that are scanned.
## CTF - Tricks
2021-10-18 11:21:18 +00:00
In **Windows** use **Winzip** to search for files.\
**Alternate data Streams**: _dir /r | find ":$DATA"_ \
2020-07-15 15:43:14 +00:00
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
binwalk --dd=".*" < file > #Extract everything
binwalk -M -e -d=10000 suspicious.pdf #Extract , look inside extracted files and continue extracing (depth of 10000)
```
### Crypto
2021-10-18 11:21:18 +00:00
**featherduster**\
2020-07-15 15:43:14 +00:00
2021-10-18 11:21:18 +00:00
**Basae64**(6—>8) —> 0...9, a...z, A…Z,+,/\
**Base32**(5 —>8) —> A…Z, 2…7\
**Base85** (Ascii85, 7—>8) —> 0...9, a...z, A...Z, ., -, :, +, =, ^, !, /, \*, ?, & , < , >, (, ), \[, ], {, }, @, %, $, #\
**Uuencode** --> Start with "_begin \<mode> \<filename>_" and weird chars\
**Xxencoding** --> Start with "_begin \<mode> \<filename>_" and B64\
\
**Vigenere** (frequency analysis) —> [https://www.guballa.de/vigenere-solver ](https://www.guballa.de/vigenere-solver )\
**Scytale** (offset of characters) —> [https://www.dcode.fr/scytale-cipher ](https://www.dcode.fr/scytale-cipher )
2020-07-15 15:43:14 +00:00
**25x25 = QR**
2021-10-18 11:21:18 +00:00
factordb.com\
2020-07-15 15:43:14 +00:00
rsatool
2021-10-18 11:21:18 +00:00
Snow --> Hide messages using spaces and tabs
2020-07-15 15:43:14 +00:00
## Characters
2021-10-18 11:21:18 +00:00
%E2%80%AE => RTL Character (writes payloads backwards)