Web


Nmap discovered a Web server on the target port 80 The running service is Apache httpd 2.4.58 ((Ubuntu))

┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/wallpaperhub]
└─$ curl -I -X OPTIONS http://$IP/
HTTP/1.1 200 OK
Date: Tue, 15 Apr 2025 11:01:25 GMT
Server: Apache/2.4.58 (Ubuntu)
Allow: POST,OPTIONS,HEAD,GET
Content-Length: 0
Content-Type: text/html
 
 
┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/wallpaperhub]
└─$ curl -I http://$IP/        
HTTP/1.1 200 OK
Date: Tue, 15 Apr 2025 11:01:28 GMT
Server: Apache/2.4.58 (Ubuntu)
Last-Modified: Tue, 11 Feb 2025 10:10:26 GMT
ETag: "29af-62ddb08a0dc67"
Accept-Ranges: bytes
Content-Length: 10671
Vary: Accept-Encoding
Content-Type: text/html

Webroot It’s a default Apache installation page

Fuzzing


┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/wallpaperhub]
└─$ ffuf -c -w /usr/share/wordlists/seclists/Discovery/Web-Content/big.txt -u http://$IP/FUZZ -ic -e .html,.txt,.php -fc 403
________________________________________________
 :: Method           : GET
 :: URL              : http://192.168.106.204/FUZZ
 :: Wordlist         : FUZZ: /usr/share/wordlists/seclists/Discovery/Web-Content/big.txt
 :: Extensions       : .html .txt .php 
 :: 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
________________________________________________
index.html              [Status: 200, Size: 10671, Words: 3496, Lines: 364, Duration: 27ms]
:: Progress: [81912/81912] :: Job [1/1] :: 1069 req/sec :: Duration: [0:01:03] :: Errors: 0 ::
 
 
┌──(kali㉿kali)-[~/PEN-200/PG_PRACTICE/wallpaperhub]
└─$ ffuf -c -w /usr/share/wordlists/seclists/Discovery/Web-Content/directory-list-lowercase-2.3-medium.txt -u http://$IP/FUZZ/ -ic
________________________________________________
 :: Method           : GET
 :: URL              : http://192.168.106.204/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
________________________________________________
                        [Status: 200, Size: 10671, Words: 3496, Lines: 364, Duration: 22ms]
icons                   [Status: 403, Size: 280, Words: 20, Lines: 10, Duration: 20ms]
server-status           [Status: 403, Size: 280, Words: 20, Lines: 10, Duration: 24ms]
:: Progress: [207630/207630] :: Job [1/1] :: 873 req/sec :: Duration: [0:02:20] :: Errors: 0 ::

N/A