Search found 2 matches

by jerrykrinock
Thu Jul 24, 2014 5:44 pm
Forum: Atomicorp Modsecurity Rules Support
Topic: Recommendation for allowing my own scripts to get in
Replies: 2
Views: 7883

Re: Recommendation for allowing my own scripts to get in

Thank you, Scott. I decided to change the User Agent string in my "calling" script to "<MyCompanyName>/1.0". It seems to sail through Modsecurity with no problem. (This is instead of the Firefox 30 User Agent string in my original post, which also works.) I hope this is the most ...
by jerrykrinock
Wed Jul 23, 2014 1:39 pm
Forum: Atomicorp Modsecurity Rules Support
Topic: Recommendation for allowing my own scripts to get in
Replies: 2
Views: 7883

Recommendation for allowing my own scripts to get in

I have Perl scripts on my site that sometimes talk to one another using the Perl module LWP::UserAgent, like this… use LWP::UserAgent; my $ua = new LWP::UserAgent; my $orderProcessor = "$main::gScriptsPathUrl/ProcessOrder.pl" ; my $request = new HTTP::Request('POST', $orderProcessor) ; $re...