Question Q-5935 A pentester uses Mimikatz on a compromised Windows system and…
1 comment · last active Apr 28, 2026
By Jordan Blake · Updated Jul 10, 2026
| Questions | 25 |
| Passing Score | 75% |
| Format | 100% Multiple Choice |
| Sessions Logged | 623 |
| Your progress | Log in / Register to track times taken, best score, questions mastered, and coverage on this quiz. |
| Rating |
Uncategorized25 questions
Log in to post a comment, reply, or expand a question.
Passive recon = OSINT, LinkedIn, DNS records — no direct scanning of target required.
Report findings section = technical vulns, CVEs, repro steps. Executive summary is separate audience.
Tailgating/piggybacking = physical social engineering through a door.
SQLi classic: ' OR '1'='1 — parameterized queries fix this at dev time.
Capture WPA2 4-way handshake → offline crack with hashcat/aircrack, not live brute on AP.
Rules of Engagement + signed authorization (SOW/MSA) — without it you're committing a crime, not a pentest.
Red team = adversary simulation over time with objectives; pentest = scoped assessment with report.
nmap -sV -sC -p- = version detect, default scripts, all ports. Loud but thorough.
Catalog listing of the 5 preview questions for this quiz.
A pentester discovers that an internal web application uses `http://app.internal/fetch?url=http://169.254.169.254/latest/meta-data/` and returns AWS instance metadata. What vulnerability is this?
SSRF (Server-Side Request Forgery) occurs when an attacker can cause a server to make HTTP requests to arbitrary URLs. In cloud environments, this allows access to the instance metadata API (169.254.169.254) which can expose IAM credentials, allowing full cloud account compromise.
A pentester obtains an NTLM hash for a domain user from a compromised workstation. Without cracking the hash, they use it to authenticate to other systems. What technique is this?
Pass-the-Hash (PtH) uses an NTLM hash directly for authentication without knowing the plaintext password. Tools like Mimikatz, Impacket's wmiexec/psexec, and CrackMapExec support PtH attacks against Windows systems, enabling lateral movement without password cracking.
After completing a penetration test, the tester must restore all systems to their original state. Which of the following actions would be REQUIRED during cleanup?
Pentest cleanup (as defined in the ROE) requires: removing all backdoors, tools, test accounts, and files placed during the test; restoring any modified system configurations; and documenting everything removed. Leaving backdoors is unethical and potentially illegal.
During a pentest, a tester uses `msfvenom` to create a reverse shell payload. They embed it in a document. What type of payload delivery is this?
Client-side attacks deliver malicious payloads (macros, JavaScript, PDF exploits) embedded in documents that execute when a user opens them. This tests user security awareness and email filtering controls. `msfvenom` generates shellcode/payloads for various delivery mechanisms.
During a web application test, a pentester injects `' OR '1'='1` into a login form's username field. The application returns "Welcome, admin!" without requiring a password. What vulnerability has been exploited?
The payload `' OR '1'='1` terminates the username string and adds a condition that is always true, bypassing the SQL WHERE clause that checks credentials. The resulting query becomes `WHERE username='' OR '1'='1' AND password='...'`, authenticating without valid credentials.
Mimikatz sekurlsa::logonpasswords dumps creds from LSASS — post-exploitation on Windows.