This shows you the differences between two versions of the page.
|
list_webserver_information [2011/09/09 19:45] root |
list_webserver_information [2013/11/20 15:36] (current) root |
||
|---|---|---|---|
| Line 17: | Line 17: | ||
| HEAD / HTTP/1.0 | HEAD / HTTP/1.0 | ||
| Hit enter twice | Hit enter twice | ||
| + | |||
| + | ====== Hide webserver information ====== | ||
| + | |||
| + | Change your servers php.ini expose php parameter to:\\ | ||
| + | expose_php Off | ||
| + | |||
| + | Change/add following httpd.conf parameters:\\ | ||
| + | ServerTokens Prod | ||
| + | This will only reveal Apache in return. | ||
| + | |||
| + | ====== List IP's after number of hits ====== | ||
| + | |||
| + | awk '{print $1}' accept.log | sort | uniq -c | sort -n | ||
| + | |||
| + | ====== List Apache requests per day ====== | ||
| + | | ||
| + | awk '{print $4}' accept.log | cut -d: -f1 | uniq -c | ||
| + | | ||
| + | ====== List Apache requests per hour ====== | ||
| + | |||
| + | grep "22/Nov" accept.log | cut -d[ -f2 | cut -d] -f1 | awk -F: '{print $2":00"}' | sort -n | uniq -c | ||
| + | | ||
| + | |||
| + | |||