Apache
It uses a process-based model, where each request is handled by a separate thread or process, which can be resource-heavy under high traffic but provides great compatibility.
Configuration Files
Standard
/etc/apache2/apache2.confRHEL
/etc/httpd/httpd.confFreeBSD
/etc/apache24/httpd.confvhost
/etc/apache2/sites-enabled/000-default.confModules
/etc/apache2/mods-available/Initial Recon
If you are lucky you may be able to find
/sites-enabledand/sites-availableor evenlogs:
feroxbuster -u http://URL.htb -w ~/Documents/Wordlists/default-web-root-directory-linux.txt --output urls.txt --redirectsrobots.txtcan reveal pages that the server is hiding.Fuzz for
vhostsat sight of301responses.
Ffuf
ffuf -c -w ~/Documents/Wordlists/subdomains-top1million-20000.txt -u http://SITE/ -H "Host: FUZZ.URL.htb" -fc 301 -ac/cgi-bin/: Directory for executingCGIscripts./icons/: Often used for directory listings. It may expose unintended file paths.phpinfo.php: Disclose sensitive server and PHP configuration details.
Last updated