Question Q-6047 What type of attack involves an attacker intercepting communication between…
2 comments · last active Jun 8, 2026
By Jordan Blake · Updated May 25, 2026
| Questions | 23 |
| Passing Score | 75% |
| Format | 65% Multiple Choice |
| Sessions Logged | 652 |
| Your progress | Log in / Register to track times taken, best score, questions mastered, and coverage on this quiz. |
| Rating |
Uncategorized23 questions
Log in to post a comment, reply, or expand a question.
MFA and account lockout policies are the controls. Passphrases > complex rotation per NIST SP 800-63B guidance.
Password attacks: brute force, dictionary, rainbow tables (salt defeats precomputed tables), credential stuffing.
Ransomware encrypts + demands payment; modern strains exfiltrate first (double extortion). Offline backups are the recovery answer.
Rootkit hides presence; spyware watches; trojan disguises as legit software — know the primary behavior each.
Phishing = broad; spear = targeted; whaling = executives; vishing/smishing = voice/SMS channels.
Pretexting sets up the story; baiting uses curiosity (USB drop). Exam scenarios usually spell out the channel.
DDoS = distributed botnet volume; DoS = single source. Amplification attacks abuse reflectors (DNS/NTP).
Mitigation: rate limiting, scrubbing services, anycast, redundant bandwidth. Not 'patch the server' for volumetric floods.
Zero-day = no vendor patch yet. Virtual patch via IPS/WAF is compensating until code fix ships.
CVSS score describes severity, not exploitability in your environment — asset value and exposure matter for risk.
SQLi, XSS, CSRF — web app big three. Input validation + parameterized queries + CSRF tokens respectively.
XSS steals sessions in browser; stored vs reflected vs DOM — know where payload lives.
Risk = threat × vulnerability × impact. Transfer = insurance; accept = documented sign-off; mitigate = controls.
Threat vs threat actor vs vulnerability — definitions show up in fill-in-blank form on this quiz.
Supply chain: compromise upstream vendor (SolarWinds-style). Third-party libs and update channels are in scope for 701.
Watering hole targets sites your org frequents. Different from drive-by — attacker picks where victims browse.
Catalog listing of the 5 preview questions for this quiz.
Which THREE techniques are commonly used in a password attack?
Password attack types: (A) Brute Force — systematically tries every possible combination; effective against short/simple passwords but computationally expensive; (B) Dictionary Attack — uses wordlists (common passwords, dictionary words, variations); extremely effective against common passwords; (C) Credential Stuffing — takes breached credentials from one site and automates login attempts on others; effective because ~65% of users reuse passwords. Mitigations: strong unique passwords, MFA, account lockout policies, password managers. VLAN hopping and DNS poisoning are network attacks, not password attacks.
An attacker finds a web application that reflects user input directly back in the HTTP response without encoding. The attacker hosts a malicious link that embeds `<script>alert(document.cookie)</script>` in a URL parameter. Which XSS type is this?
Reflected XSS occurs when malicious script is embedded in a request (typically URL parameter) and the server reflects it back in the HTML response without sanitizing — executing in the victim's browser. It requires tricking the victim into clicking a crafted URL (via phishing). The script is NOT stored server-side. Stored XSS: malicious script saved in the database (comments, forum posts) — affects all visitors. DOM-Based XSS: client-side JavaScript processes attacker-controlled data without server involvement. Blind XSS: payload executes in a context the attacker can't directly observe (admin panels). Mitigations: output encoding, Content Security Policy (CSP), input validation, HTTPOnly cookies.
Which TWO techniques are used in a pass-the-hash (PtH) attack?
Pass-the-Hash exploits a fundamental weakness in Windows NTLM authentication: NTLM accepts the password hash as proof of identity, not just the plaintext password. Attack process: (1) Attacker obtains NTLM hash from memory (using Mimikatz, secretsdump.py), SAM database, or network capture; (2) Uses the hash directly in authentication protocols without ever knowing the plaintext password. This enables lateral movement across the network. Mitigations: Credential Guard (Windows 10+, protects LSA secrets in virtualized container), disable NTLM where possible (use Kerberos), Protected Users security group, privileged account separation. PtH does not require the plaintext password.
A penetration tester is hired by a company and given no prior information about the target environment. What type of engagement is this?
Penetration testing knowledge levels: Black-box — tester has NO prior knowledge of the target environment (simulates an external attacker with no insider information); most realistic simulation of real-world attack. White-box — tester has full knowledge (network diagrams, source code, credentials); most thorough coverage, tests defenses with complete information. Gray-box — tester has partial knowledge (some network info, maybe a low-privilege account); balances realism with efficiency. Red team — extended adversarial simulation covering physical, social engineering, and technical attack vectors; tests detection and response capabilities, not just defenses. Scope is defined in the Rules of Engagement (ROE)/Statement of Work.
An organization conducts a threat intelligence exercise and classifies a threat actor as having high sophistication, significant financial resources, and nation-state backing. Which threat actor category BEST describes this?
APT threat actors are highly sophisticated, well-funded organizations (often nation-states or state-sponsored groups) that conduct targeted, long-term cyberattacks. Characteristics: custom malware/exploits, patient multi-stage attacks, persistence mechanisms, espionage or sabotage goals, zero-day exploitation. Examples: APT28 (Fancy Bear/Russia), APT41 (China), Lazarus Group (North Korea). Script kiddies use existing tools without deep knowledge. Hacktivists are motivated by ideology (Anonymous). Insider threats involve current/former employees, contractors. APTs represent the most sophisticated and persistent threat category.
Mitigation: TLS, cert pinning, HSTS, VPN. DoS is availability, not interception.
MitM = attacker in the middle reads/alters traffic. ARP spoofing and rogue AP are local examples; SSL stripping is web-focused.