OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
doc
/
libfcgi-perl
/
examples
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/11/2020 03:55:37 AM
rwxr-xr-x
📄
echo.pl
1.57 KB
03/06/2016 11:32:54 PM
rwxr-xr-x
📄
remote.pl
828 bytes
03/06/2016 11:32:54 PM
rwxr-xr-x
📄
threaded.pl
1.12 KB
03/06/2016 11:32:54 PM
rwxr-xr-x
Editing: remote.pl
Close
#!/usr/bin/perl # An example of using a remote script with an Apache webserver. # Run this Perl program on "otherhost" to bind port 8888 and wait # for FCGI requests from the webserver. ## Sample Apache configuration on the webserver to refer to the ## remote script on "otherhost" # <IFModule mod_fastcgi.c> # AddHandler fastcgi-script fcgi # FastCgiExternalServer /path-to/cgi-bin/external.fcgi -host otherhost:8888 # </IfModule> # Access the URL: http://webserver/cgi-bin/external.fcgi # Contributed by Don Bindner <dbindner@truman.edu> use FCGI; my $socket = FCGI::OpenSocket( ":8888", 5 ); my $request = FCGI::Request( \*STDIN, \*STDOUT, \*STDERR, \%ENV, $socket ); my $count; while( $request->Accept() >= 0 ) { print "Content-type: text/html\r\n\r\n"; print ++$count; } FCGI::CloseSocket( $socket );