apache
Aggregate Traffic Used From a Combined Apache Logfile
Today I just wanted to know the traffic sent out by one of our apaches for a certain client. Our administrator came up with the following code that did it – awesome! #!/bin/sh for file in [path to your logifes]/*.bz2; do echo -n ” $(basename $file) ” >> ~/traffic.out; bzcat $file | awk ‘BEGIN{ regex=”^/clientFolder/”;summe=0;} [...]
nikto – test your apache for security holes
A neat tool to scan you apache server for “some” (more than 3.000) known security problems including general configuration problems (directory indexing) and wide spread scripts vulnerabilities. Remember to verify each problem reported though! Visit the Homepage for further information.