Ulli Weichert/ April 5, 2022/ IT-Security, Write-Ups/ 0Kommentare

Packets Primer

Description

Download the packet capture file and use packet analysis software to find the flag.

Solving

  1. We got a pcap file... lets look into it...
  2. First lets check for low hanging fruits... with strings - ah there is the flag 🙂
  3. The flag is in plainsight!
  4. Just remove the whitespaces
  5. You can use tr -d ' ' to remove the whitespaces
#!/bin/bash

echo "Getting flag from pcap file..."

strings network-dump.flag.pcap | grep "p i c o"| tr -d ' '
Share this Post

Über Ulli Weichert

2004 fing Ulli bei der Bundeswehr als Ausbilder und IT-Spezialist an. 2011 hat Ulli eine Umschulung zum Fachinformatiker für Systemintegration absolviert und sich auf Linux spezialisiert. 2016 hat Ulli dann bei einem mittelständischem Unternehmen, welches Kunden in ganz Deutschland betreut, als Linuxadministrator angefangen und kümmert sich seither nebst, Netzwerk, Security, Firewall, Storage überwiegend um Linuxthemen aller Art. Seit kurzem hat auch Ihn das Thema Container und k8s erwischt.

Hinterlasse einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

*
*