in reply to SSI Environment Variables
open FILE, ">>logfile"; foreach keys %ENV { print FILE, "$_ => ".$ENV{$_} } close FILE;
Certain environment variables are considered tainted and should be cleared before running this if you wish this to work under the -T flag, as you should.
Of course, your webserver probably records all of this information in a logfile, assuming you have access to the whole server (normally these get stuck somewhere under /var/log on a *nix system, but it could be configured otherwise.)
|
|---|