Server & Attacker IP - KnightCTF 2025
Challange Details
- Challange Name: Server & Attacker IP
- Category: Networking
- Difficulty: Easy
- Description: Analzye the provided
.pcapng
file to get the attacker & server ip and solve the challange.
Solution
Step 1: Load file in Wireshark
- Open the
.pcapng
file in Wireshark - Note any suspicious protocols such as HTTP, FTP, DNS, or TELNET.
Step 2: Follow HTTP Steam
- Navigate to Analyze > follow > HTTP Stream.
- Shortcut
Ctrl+Alt+Shift+H
- Alternatively, use the filter :
tcp.stream eq 66108
Step 3: Read the Source and Destination
- Check the Source IP & Destination IP.
- Right click and follow TCP Stream.
- We got the Host.
Step 4: Identitfying the Attacker IP
- In the HTTP Steam you will find the only Attacker IP sending packates to enumerate the server.
Step 5: Submitting the flag
- To solve this challange we must write first the server ip & then attacker ip.
- Format of this flag KCTF{127.0.0.1_0.0.0.0} - actual flag redacted for privacy.