Listen to this Post
Jose C., a Database Security Engineer, shares his approach to mastering cybersecurity by combining resources from HTB Academy and OffSec, particularly for PEN-200 and PEN-300 certifications. He highlights how using multiple learning platforms enhances understanding rather than causing confusion.
You Should Know:
1. HTB Academy vs. OffSec: Complementary Learning
- HTB Academy provides structured, hands-on labs ideal for foundational knowledge.
- OffSec’s PEN-300 (OSEP) focuses on advanced evasion techniques, making it a great follow-up to HTB’s content.
2. Key Commands & Techniques to Practice
- Linux Privilege Escalation (HTB & PEN-200 Refresher):
Find SUID binaries find / -perm -4000 -type f 2>/dev/null Check for writable cron jobs crontab -l ls -la /etc/cron Kernel exploit checking uname -a searchsploit "Linux Kernel 5.4"
-
Windows Lateral Movement (PEN-300/OSEP Focus):
Dump LSASS for credential extraction tasklist | findstr lsass mimikatz.exe "sekurlsa::logonpasswords" Pass-the-Hash with RDP xfreerdp /v:10.10.10.10 /u:admin /pth:NTLM_HASH
3. Setting Up a Practice Lab
- Use VirtualBox/Kali Linux for HTB-like scenarios:
Clone exploit repositories git clone https://github.com/offensive-security/exploitdb.git
4. Recommended Study Flow
1. HTB Academy Modules (e.g., “Linux Privilege Escalation”)
- OffSec PEN-200 Labs (Apply techniques in a controlled environment)
- PEN-300 (OSEP) Challenges (Focus on evasion and advanced attacks)
What Undercode Say:
Combining HTB Academy and OffSec training bridges gaps between theory and real-world application. Practicing privilege escalation, lateral movement, and exploit development across both platforms ensures a well-rounded skillset. Always validate techniques in a lab before real engagements.
Expected Output:
- Improved exploit scripting skills
- Mastery of Windows/Linux attack chains
- Stronger methodology for certification exams
References:
Reported By: Activity 7313937144731815936 – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅



