OSCP 2026: Why the TJ Null List Alone Won’t Get You Certified – And What You Really Need to Practice + Video

Listen to this Post

Featured Image

Introduction:

The Offensive Security Certified Professional (OSCP) certification, priced at $1,749 as of 2026, remains one of the most respected and challenging credentials in the cybersecurity industry. Candidates must compromise multiple live machines within a 24-hour window and deliver a professional penetration test report detailed enough that attacks can be replicated step-by-step. While the community-curated TJ Null list of OSCP-like machines has long been considered the “gold standard” for exam preparation, relying solely on this resource may leave significant gaps in your readiness.

Learning Objectives:

  • Master standalone machine penetration testing techniques that mirror actual OSCP exam environments
  • Develop a systematic methodology for reconnaissance, exploitation, and privilege escalation
  • Build practical muscle memory through diverse lab environments beyond traditional practice lists

You Should Know:

  1. The TJ Null List: A Foundation, Not a Finish Line

The TJ Null list is a curated collection of Hack The Box and VulnHub machines that closely mimic OSCP exam boxes. Community members have organized these machines by difficulty—Easy, Medium, Hard, Insane, and More Challenging—with color coding (Blue for Windows, Green for Linux, Purple for Other) to track progress. Many successful OSCP candidates report completing 40 to 70 Proving Grounds machines plus boxes from lists like TJ Null or LainKusanagi.

However, the cybersecurity landscape evolves rapidly. Some practitioners note that TJ Null’s list has become somewhat dated, with LainKusanagi’s machine selection more closely reflecting current exam styles. The exam machines are designed to be more confusing and overwhelming than practice labs—success depends on creative thinking and connecting disparate pieces of information. Simply grinding through a checklist without developing adaptive problem-solving skills will leave you underprepared.

The OSCP exam awards 70 points to pass: 40 from a mandatory Active Directory set and 30 from standalone machines. The standalone boxes in the exam are often described as harder than the lab environments, requiring test-takers to navigate rabbit holes and decoy services.

2. Building a Comprehensive Practice Regimen

A realistic OSCP preparation timeline requires 10-20 hours per week for 3-6 months. Beyond the TJ Null list, candidates should incorporate:

  • OffSec Proving Grounds: ~60 OSCP-like machines with both Play and Practice tiers
  • OSCP Challenge Labs A, B, and C: These closely mirror the actual exam environment
  • HTB Academy modules: Particularly for Active Directory, report writing, and local exploits
  • Diverse platforms: BugThrive and similar next-gen cyber ranges provide interactive labs simulating real vulnerabilities across web applications, APIs, networks, mobile environments, and cloud systems

The key differentiator is practice quality over quantity. One practitioner who failed their first attempt noted that completing only 18 boxes from the TJ Null list left them under-rehearsed. After rebuilding their strategy—finishing every box on the list (minus the “Challenging Yourself” tier) and simulating 24-hour marathons—they passed on retake.

3. Essential Reconnaissance and Enumeration Commands

Before any active testing begins, passive reconnaissance builds the target profile without sending packets to the target server:

Linux Reconnaissance:

 Passive reconnaissance with theHarvester
theharvester -d target-company.com -l 500 -b google,linkedin

Domain registration information
whois target-company.com

Subdomain enumeration
sublist3r -d target-company.com

Initial Nmap scan (top 1000 ports)
nmap -sS -T4 192.168.1.0/24

Service version detection
nmap -sV -sC -p 22,80,443,8080 target-company.com

Vulnerability scanning with NSE scripts
nmap --script vuln -p 80,443 target-company.com

These commands establish the attack surface. The `theHarvester` command searches public search engines and professional networks for email addresses and subdomains. `sublist3r` performs brute-force DNS queries to discover subdomains that may reveal development or staging sites.

For Active Directory enumeration, essential commands include:

 SMB enumeration
enum4linux -a <target-ip>

RPC client user enumeration
rpcclient -U "" -1 <target-ip>
rpcclient $> enumdomusers
rpcclient $> queryuser <username>

LDAP anonymous query
ldapsearch -x -H ldap://<target-ip> -b "DC=domain,DC=local"

Windows Reconnaissance (post-exploitation):

 System information
systeminfo
whoami /priv
net user
net localgroup administrators
ipconfig /all
route print

4. Exploitation and Privilege Escalation Techniques

Getting a foothold is often the greatest challenge in the OSCP exam. Common foothold vectors include:

Web Application Attacks:

  • Directory traversal and file inclusion
  • SQL injection
  • File upload vulnerabilities
  • Command injection

Service Exploitation:

  • SMB (port 445) – EternalBlue, SMBGhost
  • FTP (port 21) – anonymous access, buffer overflows
  • SSH (port 22) – weak credentials, private key exposure
  • RDP (port 3389) – BlueKeep, credential harvesting

Linux Privilege Escalation:

 Find SUID binaries
find / -perm -4000 -type f 2>/dev/null

Find writable files and directories
find / -writable -type f 2>/dev/null | grep -v "/proc/"
find / -writable -type d 2>/dev/null

Check sudo permissions
sudo -l

Cron job enumeration
cat /etc/crontab
ls -la /etc/cron

Kernel version (for exploit matching)
uname -a

Linux privilege escalation typically exploits file permissions, cron jobs, SUID binaries, or sudo misconfigurations.

Windows Privilege Escalation:

 Check always-installed elevated patches
wmic qfe list

Service permissions
sc query
sc qc <service_name>

Registry permissions
reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

Automated enumeration
 Run winPEAS, PowerUp, or Seatbelt

5. Exam Day Strategy and Mindset

The OSCP exam tests persistence, creativity, and perceptiveness under tight time constraints. Candidates must write scripts, analyze and port public exploit code, and execute organized attacks.

Critical Success Factors:

  • Enumerate first, attack second: Perform light scans on targets first, then rank attack paths
  • Take frequent notes: Document everything—commands, outputs, failed attempts
  • Move on when stuck: Do not emotionally attach to one exploit path
  • Simulate the full experience: Practice 24-hour marathons with proper breaks, meals, and hydration
  • Draft report template in advance: No scrambling at 3 a.m.

Most OSCP failures happen because candidates try hacking without understanding systems. The exam rewards methodology over brute force.

What Undercode Say:

  • Practice diversity beats practice volume: Solving 50 machines from a single source builds pattern recognition, but the exam deliberately breaks patterns. Platforms like BugThrive that simulate real vulnerabilities across multiple environments develop adaptive thinking.

  • Methodology is your safety net: When the exam throws unexpected challenges—and it will—a systematic approach to reconnaissance, enumeration, and exploitation keeps you moving forward. Memorizing commands is useless without understanding when and why to use them.

  • The $1,749 exam demands more than checklist completion: OSCP certification requires demonstrating practical, hands-on skills in penetration testing and ethical hacking. The TJ Null list provides excellent practice, but treating it as the sole preparation strategy is a gamble many fail. Supplement with diverse labs, Active Directory practice, and simulated exam runs.

Expected Output:

The OSCP remains one of the few certifications that truly validates hands-on penetration testing ability. While the TJ Null list offers a solid foundation, candidates who pass consistently report broader practice regimens—incorporating Proving Grounds, OffSec challenge labs, and next-generation platforms like BugThrive. The exam rewards those who have developed not just technical skills, but the resilience and adaptability to navigate unfamiliar attack surfaces under pressure.

Prediction:

  • -1 The TJ Null list’s effectiveness will continue to diminish as the OSCP exam evolves, potentially creating a widening gap between what candidates practice and what the exam tests.

  • +1 Next-generation cyber ranges like BugThrive that simulate real vulnerabilities across web applications, APIs, networks, and cloud environments will become essential preparation tools.

  • +1 The trend toward affordable, hands-on lab environments will democratize OSCP preparation, making high-quality practice accessible to a broader range of candidates.

  • -1 Candidates who rely exclusively on community-curated lists without developing independent problem-solving skills will face increasing failure rates as the exam continues to emphasize creativity and adaptability.

  • +1 The OSCP certification’s value will remain strong as organizations increasingly recognize it as a reliable indicator of practical penetration testing competence.

▶️ Related Video (68% Match):

https://www.youtube.com/watch?v=1X6dkbe89mU

🎯Let’s Practice For Free:

🎓 Live Courses & Certifications:

Join Undercode Academy for Verified Certifications

🚀 Request a Custom Project:

Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands

IT/Security Reporter URL:

Reported By: Akashsuman1 Before – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeTesting & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky