Web


Nmap discovered a Web server on the target port 8530 The running service is Microsoft IIS httpd 10.0

┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/hokkaido]
└─$ curl -I -X OPTIONS http://dc.hokkaido-aerospace.com:8530/
HTTP/1.1 200 OK
Allow: OPTIONS, TRACE, GET, HEAD, POST
Server: Microsoft-IIS/10.0
Public: OPTIONS, TRACE, GET, HEAD, POST
X-Powered-By: ASP.NET
Date: Fri, 25 Apr 2025 12:08:05 GMT
Content-Length: 0
 
 
┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/hokkaido]
└─$ curl -I http://dc.hokkaido-aerospace.com:8530/        
HTTP/1.1 403 Forbidden
Content-Length: 1233
Content-Type: text/html
Server: Microsoft-IIS/10.0
X-Powered-By: ASP.NET
Date: Fri, 25 Apr 2025 12:08:08 GMT

403

Fuzzing


┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/hokkaido]
└─$ ffuf -c -w /usr/share/wordlists/seclists/Discovery/Web-Content/big.txt -u http://dc.hokkaido-aerospace.com:8530/FUZZ -ic -e .html,.txt,.aspx -fc 403
________________________________________________
 :: Method           : GET
 :: URL              : http://dc.hokkaido-aerospace.com:8530/FUZZ
 :: Wordlist         : FUZZ: /usr/share/wordlists/seclists/Discovery/Web-Content/big.txt
 :: Extensions       : .html .txt .aspx 
 :: Follow redirects : false
 :: Calibration      : false
 :: Timeout          : 10
 :: Threads          : 40
 :: Matcher          : Response status: 200-299,301,302,307,401,403,405,500
 :: Filter           : Response status: 403
________________________________________________
inventory               [Status: 301, Size: 171, Words: 9, Lines: 2, Duration: 68ms]
:: Progress: [81912/81912] :: Job [1/1] :: 1449 req/sec :: Duration: [0:01:01] :: Errors: 0 ::
 
 
┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/hokkaido]
└─$ ffuf -c -w /usr/share/wordlists/seclists/Discovery/Web-Content/directory-list-lowercase-2.3-medium.txt -u http://dc.hokkaido-aerospace.com:8530/FUZZ/ -ic -fc 403
________________________________________________
 :: Method           : GET
 :: URL              : http://dc.hokkaido-aerospace.com:8530/FUZZ/
 :: Wordlist         : FUZZ: /usr/share/wordlists/seclists/Discovery/Web-Content/directory-list-lowercase-2.3-medium.txt
 :: Follow redirects : false
 :: Calibration      : false
 :: Timeout          : 10
 :: Threads          : 40
 :: Matcher          : Response status: 200-299,301,302,307,401,403,405,500
 :: Filter           : Response status: 403
________________________________________________
:: Progress: [207630/207630] :: Job [1/1] :: 1257 req/sec :: Duration: [0:04:20] :: Errors: 120 ::

/inventory/

/inventory/


403

Virtual Host / Sub-domain Discovery


┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/hokkaido]
└─$ ffuf -c -w /usr/share/wordlists/seclists/Discovery/DNS/subdomains-top1million-110000.txt -u http://$IP:8530/ -H 'Host: FUZZ.hokkaido-aerospace.com' -ic -mc all -fs 1233
________________________________________________
 :: Method           : GET
 :: URL              : http://192.168.119.40:8530/
 :: Wordlist         : FUZZ: /usr/share/wordlists/seclists/Discovery/DNS/subdomains-top1million-110000.txt
 :: Header           : Host: FUZZ.hokkaido-aerospace.com
 :: Follow redirects : false
 :: Calibration      : false
 :: Timeout          : 10
 :: Threads          : 40
 :: Matcher          : Response status: all
 :: Filter           : Response size: 1233
________________________________________________
:: Progress: [114437/114437] :: Job [1/1] :: 1428 req/sec :: Duration: [0:02:17] :: Errors: 40 ::

N/A