Skip to main content
XsiSec.com
HomeReposBlogProjectsPortfolio
© 2026 XsiSec.com
Security rules |security.txt
Updated 2026-08-15 · v1.0.0+2026-08-14.82f92cb · 82f92cb
← Back to overview
Security article

HTB Academy - Wireshark #2

HTB Academy - Wireshark #2: Network Traffic Analysis — Worksheet (My Notes) • HTB Academy • htb-academy, module81

2022-09-263 tags
Tags

Network Traffic Analysis — Worksheet (My Notes)

A tidy, fill-in-as-you-go checklist I use when reviewing packet captures. Copy it into your lab notes and complete each item as you analyze.


Fundamental Analysis

  • How many conversations are there?
    Count unique 5-tuples (src/dst IP, src/dst port, protocol).

  • Can we determine who the clients and servers are?
    Look at who initiates the TCP handshake (SYN) and who answers; check service ports.

  • What protocols are being used?
    List by volume and importance (e.g., TCP/80, TCP/443, UDP/53, etc.).

  • Anything notable happening?

    • Unusual or misused ports?
    • Clear-text credentials or sensitive data?
    • Protocol anomalies, resets, retransmits, errors?
    • Suspicious destinations, odd User-Agents, or beacons?

FTP Analysis

  • Was FTP traffic present?
    Yes/No — Identify flows (typically TCP/21 for control, data on negotiated ports).

  • Who was the FTP server?
    Record the server IP/hostname.

  • Authentication context

    • Anonymous login used? Yes/No
    • Authenticated user? Username seen
    • Any credentials in clear text? Capture details carefully.
  • Transferred content
    List filenames, directions (GET/PUT), sizes, and any noteworthy strings.


HTTP Analysis

  • Web server identified?
    IP/host, server banner (e.g., Apache/Nginx/IIS), version if visible.

  • What application is running?
    Framework/CMS/app hints from headers, paths, titles, fingerprints.

  • Most common request methods
    e.g., GET, POST, HEAD, PUT, DELETE; include counts if helpful.

  • Extras to check

    • Clear-text creds (Basic/Digest forms, params).
    • Interesting headers (Server, X-Powered-By, Cookies).
    • Notable endpoints (auth, admin, upload).
    • Response codes distribution (200/301/302/401/403/404/500).

Scope Snapshot

Use this table to summarize what you’ve actually observed.

Net (CIDR)Host(s)Protocol(s)Info (Services/Banners)Data (Creds/Files/Indicators)Sources (PCAP/Logs)
e.g., 10.0.2.0/2410.0.2.5, 10.0.2.15TCP/21, TCP/80, UDP/53vsftpd 3.0.3; Apache/2.4user:pass over FTP; /admin endpointcapture1.pcapng

Quick Tips

  • Reconstruct conversations with flow filters; pivot from anomalies to context.
  • When you see plaintext protocols (FTP/HTTP/Telnet), assume credentials and inspect carefully.
  • Always note timestamps/timezone to align with other telemetry.
Navigate

In this post

  1. 01Network Traffic Analysis — Worksheet (My Notes)
  2. 02Fundamental Analysis
  3. 03FTP Analysis
  4. 04HTTP Analysis
  5. 05Scope Snapshot
  6. 06Quick Tips
Search
Explore

Popular tags

Browse all 30 tags

Comments

0 comments

No comments yet — be the first to comment.