IIS Tilde Enumeration
Overview
HTB Academy Lab Solution
Lab: Full Filename Discovery
Step 1: Service Discovery
# Nmap scan to identify IIS
nmap -p- -sV -sC --open TARGET
# Expected result: Microsoft IIS httpd 7.5 on port 80Step 2: Tilde Enumeration
# Download IIS-ShortName-Scanner
# https://github.com/lijiejie/IIS_shortname_Scanner
# Run automated tilde enumeration
java -jar iis_shortname_scanner.jar 0 5 http://TARGET/
# Expected findings:
# - ASPNET~1 (directory)
# - UPLOAD~1 (directory)
# - TRANSF~1.ASP (file)Step 3: Wordlist Generation
Step 4: Full Filename Discovery
Technical Details
8.3 Short Filename Format
Enumeration Process
Vulnerable IIS Versions
Attack Methodology
1. Automated Discovery
2. Custom Wordlist Creation
3. Full Name Brute Force
Impact & Findings
Last updated