Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fetch HTTP headers in perl when using CGI

I'm using Perl/CGI/Apache and want to fetch the X-Forwarded-For HTTP header. How do I do that?

like image 726
dhruvbird Avatar asked Feb 09 '11 19:02

dhruvbird


2 Answers

Except for a few headers that are handled specially, CGI stores the value of Header-Name: in the environment variable HTTP_HEADER_NAME. So, X-Forwarded-For (if present in the request) should be found in $ENV{HTTP_X_FORWARDED_FOR}.

like image 138
cjm Avatar answered Sep 28 '22 02:09

cjm


CGI has a method for accessing HTTP request header fields, called "http", so you can say:

my $q = CGI->new()
print $q->http('X-Forwarded-For');

This works regardless whether you're running as a CGI, in fastcgi, mod_perl, etc...

like image 24
mephinet Avatar answered Sep 28 '22 01:09

mephinet