Very simple HTTP request spy
provided by www.i18nGurus.com
Your browser introduces itself as:
HTTP_USER_AGENT = CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
It requests the following language(s):
HTTP_ACCEPT_LANGUAGE = en-us,en;q=0.5
It accepts the following data types:
HTTP_ACCEPT = text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accepted character encoding: (not always used)
HTTP_ACCEPT_CHARSET = ISO-8859-1,utf-8;q=0.7,*;q=0.7
For the curious here is the Perl CGI source code to display all Environement variables (incl. the HTTP request params)
#! /usr/bin/perl
use CGI qw/:standard/;
foreach my $key (keys %ENV)
{
print "$key $ENV{$key}<br>";
}