All Practice Exams

100+ Free PSAA Practice Questions

Practical SOC Analyst Associate (PSAA) practice questions are available now; exam metadata is being verified.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

What is the key difference between a false positive (FP) and a false negative (FN) in SIEM detection?

A
B
C
D
to track
2026 Statistics

Key Facts: PSAA Exam

$249

Exam Cost (incl. course)

TCM Security

2 days

Practical Assessment Window

TCM Security

2 days

Incident Report Submission

TCM Security

30+ hours

SOC 101 Course Length

TCM Security

Lifetime

Certification Validity

TCM Security

1 free

Retake Included

TCM Security

The PSAA (Practical SOC Analyst Associate) is TCM Security's entry-level blue team certification. The 2-day practical exam simulates real SOC work—analyzing phishing emails, network packet captures, SIEM alerts, and EDR telemetry—followed by a 2-day window to submit an incident report. It costs $249 (includes SOC 101 course access and one free retake) and does not expire. This 100-question practice bank prepares candidates with testable knowledge from all PSAA domains.

Sample PSAA Practice Questions

Try these sample questions to test your PSAA exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1When analyzing an email for phishing indicators, which header field most reliably reveals the actual sending mail server's IP address?
A.From:
B.Reply-To:
C.Received:
D.X-Originating-IP:
Explanation: The 'Received:' header chain records every mail server the message passed through, with the topmost entry added by the receiving server. Because each hop adds a new Received line in order, the oldest entry (bottom of the chain) contains the originating server's IP. Forged From: and Reply-To: values are trivial for attackers to set, making Received: the most reliable field for source attribution.
2An email passes SPF checks but fails DMARC. Which scenario best explains this?
A.The email was sent from an authorized IP but the From: domain does not align with the SPF-authenticated domain.
B.The email was sent from an unauthorized IP and the SPF record is missing.
C.DMARC cannot fail if SPF passes; the configuration is incorrect.
D.The email was signed with DKIM but the DKIM key was revoked.
Explanation: DMARC requires alignment: the domain in the RFC5322 From: header must match the domain authenticated by SPF (envelope sender) or DKIM. A forwarded or indirect mail flow can pass SPF on the envelope but still fail DMARC because the From: domain differs from the envelope domain. This SPF-pass/DMARC-fail scenario is a common phishing technique called cousin-domain spoofing.
3A SOC analyst receives a suspicious email with a URL: https://paypa1-secure.login.example.com/verify. What phishing technique does this URL demonstrate?
A.Typosquatting on the target brand's domain
B.Subdomain spoofing using a trusted brand keyword
C.DNS hijacking of the legitimate domain
D.Homograph attack using Unicode characters
Explanation: The URL uses 'paypa1' as a subdomain of example.com, placing a brand-like keyword at the left of the hostname to deceive a casual reader who only looks at the start of the URL. This is subdomain spoofing: the attacker controls example.com and creates any subdomain they wish. The actual domain (example.com) is entirely different from PayPal.
4Which tool is specifically designed to detonate suspicious email attachments in an isolated environment to observe malicious behavior without risking production systems?
A.Wireshark
B.Any.run or Cuckoo Sandbox
C.Splunk
D.Volatility
Explanation: Any.run and Cuckoo Sandbox are malware sandboxing platforms that execute suspicious files in isolated virtual environments, recording process creation, network connections, file system changes, and registry modifications. This allows analysts to observe malicious behavior safely. Sandboxing is a core step when analyzing email attachments whose hash has no reputation hits.
5During phishing triage, an analyst finds the sender domain was registered 2 days ago. Why is this significant?
A.Newly registered domains are blocked by all email gateways by default.
B.A very low domain age is a strong indicator of a throwaway phishing domain.
C.Attackers always register domains in advance, making recent registration normal.
D.Domain age only matters for DKIM verification, not phishing assessment.
Explanation: Threat actors commonly register new domains immediately before phishing campaigns, giving defenders little time to blocklist them. A domain age of 1–7 days combined with suspicious email content is a high-confidence phishing indicator. WHOIS lookups and passive DNS data revealing low domain age are standard enrichment steps in phishing triage workflows.
6A Wireshark capture shows a host making hundreds of DNS queries per minute to a single domain with long random-looking subdomains (e.g., a1b2c3d4e5.evil.com). What activity does this most likely indicate?
A.Normal CDN traffic
B.DNS amplification DDoS attack
C.DNS tunneling used for data exfiltration or C2
D.Legitimate recursive DNS resolution
Explanation: DNS tunneling encodes data in DNS query and response fields to bypass network controls. Attackers encode exfiltrated data or C2 commands as long, random-looking subdomains. A high volume of queries with lengthy, randomized hostnames under a single domain is a classic DNS tunneling fingerprint. Tools like iodine and dnscat2 implement this technique.
7Which Wireshark display filter would isolate only HTTP POST requests from captured traffic?
A.http.method == POST
B.http.request.method == "POST"
C.tcp.port == 80 and method == "POST"
D.http.response.code == 200
Explanation: The correct Wireshark display filter syntax is http.request.method == "POST". This filters the packet list to show only HTTP packets where the request method is POST, which is useful for identifying credential submission, data exfiltration, or C2 callback traffic over unencrypted HTTP.
8An analyst observes repeated TCP SYN packets from one external IP to multiple ports on an internal host with no SYN-ACK responses. What does this pattern indicate?
A.A completed TCP three-way handshake
B.A TCP port scan (SYN scan / half-open scan)
C.TCP session hijacking
D.A denial-of-service SYN flood targeting the firewall
Explanation: A SYN scan (also called a half-open scan) sends TCP SYN packets to multiple ports without completing the three-way handshake. Closed ports respond with RST; filtered ports send nothing. The absence of SYN-ACK responses to most probes while SYNs continue across many ports is the signature of port scanning, used by attackers for host and service discovery (nmap -sS).
9In network traffic analysis, what characteristic best identifies beaconing behavior associated with C2 communication?
A.Sporadic, high-bandwidth bursts to CDN IP addresses
B.One-time large data transfers over SFTP
C.Regular, periodic outbound connections to the same external host at consistent intervals
D.High-volume inbound ICMP echo replies
Explanation: C2 beaconing is characterized by malware periodically checking in with its command-and-control server at regular intervals (e.g., every 60 seconds). Analysts look for consistent inter-packet timing, small payload sizes, and repeated connections to the same external IP or domain. Statistical analysis of connection intervals (jitter analysis) can detect even beacons with added randomness.
10What does the Wireshark 'Follow TCP Stream' feature allow an analyst to do?
A.Block a TCP connection in real time
B.Reconstruct the full application-layer conversation between two endpoints
C.Decrypt TLS-encrypted traffic automatically
D.Identify the operating system of a remote host from TCP fingerprints
Explanation: Follow TCP Stream reassembles the full byte sequence exchanged between two endpoints across multiple packets, displaying the conversation in readable form. This is invaluable for reconstructing plaintext HTTP sessions, FTP commands, SMTP conversations, or any clear-text protocol payload that spans multiple TCP segments.

About the PSAA Practice Questions

Verified exam format metadata for Practical SOC Analyst Associate (PSAA) is pending. The practice questions above remain available while official exam length, timing, passing score, fee, and administrator details are reviewed.