TLS ANALYSIS WITHOUT DECRYPTION
Even encrypted TLS traffic leaks information:
Server Name Indication (SNI) — hostname in Client Hello (unencrypted) — reveals destination even for HTTPS
Certificate CN/SAN — server certificate fields visible before encryption
JA3 fingerprint — hash of TLS Client Hello parameters — identifies malware families
Packet timing and size — C2 beaconing shows regular intervals
KEY DISPLAY FILTERS
http HTTP traffic
tls All TLS
tls.handshake.type == 1 Client Hello (SNI visible)
tls.handshake.extensions_server_name Filter by SNI
dns DNS queries
dns.qry.name contains "exfil" DNS with keyword
smb2 SMB version 2
tcp.len > 10000 Large TCP segments
ip.src == 185.220.101.45 Attacker traffic
tcp.analysis.bytes_in_flight Throughput analysis
SMB LATERAL MOVEMENT IN PACKETS
SMB2 authentication sequence: NegotiateProtocol → SessionSetup (NTLM) → TreeConnect → file operations. NTLM hash visible in SessionSetup request/response. Admin share access (C$, ADMIN$) is the lateral movement indicator.
DNS EXFILTRATION SIGNATURES
Long subdomain labels (Base64 data)
Sequential queries to same parent domain
NXDOMAIN responses (data channel, not resolution)
High query rate to a single external domain
Query names longer than 50 characters
DATA EXFILTRATION DETECTION
Statistics → Conversations sorted by bytes reveals the largest data transfers. Legitimate traffic has balanced upload/download ratios. Exfiltration shows high upload bytes to an external IP that previously only received small requests.