#!/bin/bash

        echo Content-type: text/html
        echo

        echo "<HTML>"
        echo "<head>"
        echo "<Title>Insult Generator - Last 25 Accesses</Title>"
        echo "</head>"
        echo "<pre>The Last 25 unique people insulted: <font size=-1><b>(this somtimes takes a moment to pull up...)</b></font><hr>"
	egrep "insult.cgi HTTP|insult.php3 HTTP" /var/log/httpd/access_log.1 /var/log/httpd/access_log | awk -F: '{print $2}' | awk '{print $1}' | uniq | tail -25
	echo "</pre><hr><center><a href=\"insult.php3\">Get Insulted Again</a></center>"
        echo "<br></body></html>"
