cscg ist super

This commit is contained in:
2026-04-10 03:31:12 +02:00
parent 7a9dfeda60
commit db0324c43d
99 changed files with 92358 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,4 @@
#!/bin/sh
tshark -r intro-forensics-2.pcapng -n -Y "(tcp.flags==0x10 && ip.src==192.168.178.21) && (tcp.seq==1)" -T fields -e tcp.dstport | \
python3 -c "import sys; print(''.join([int(p).to_bytes(2, 'big').decode() for p in sys.stdin if p.strip()]).replace('\n', ''))"