D7net Mini Sh3LL v1

 
OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /libx32/../share/snapd/../locale/ia/../../doc/info/../libroken18-heimdal/../usbmuxd/../liberror-perl/../grub2-common/../libjpeg8/../php7.4-mysql/../gnupg/../python3-apt/../netplan.io/../wget/../libcurl3-gnutls/../libthai-data/../python3-six/../screen/../maria/../libxaw7/../libmnl0/../netplan/../gdisk/../systemd-sysv/../grep/../udisks2/../libacl1/../libxmlb1/../libperl5.30/../automake/../libmpfr6/../libssl1.1/../btrfs-progs/../usbutils/../tcpdump/../libsemanage1/../libdrm2/../gcc/../libselinux1/../bzip2/../mtr-tiny/../iw/../apport/../accountsservice/../bolt/../liblzma5/../finalrd/../libldap-common/../mime-support/../php7.4-opcache/../lvm2/../libsemanage-common/../sg3-utils/../libfcgi-perl/examples/

 Home   ☍ Command   ☍ Upload File   ☍Info Server   ☍ Buat File   ☍ Mass deface   ☍ Jumping   ☍ Config   ☍ Symlink   ☍ About 

Current File : //libx32/../share/snapd/../locale/ia/../../doc/info/../libroken18-heimdal/../usbmuxd/../liberror-perl/../grub2-common/../libjpeg8/../php7.4-mysql/../gnupg/../python3-apt/../netplan.io/../wget/../libcurl3-gnutls/../libthai-data/../python3-six/../screen/../maria/../libxaw7/../libmnl0/../netplan/../gdisk/../systemd-sysv/../grep/../udisks2/../libacl1/../libxmlb1/../libperl5.30/../automake/../libmpfr6/../libssl1.1/../btrfs-progs/../usbutils/../tcpdump/../libsemanage1/../libdrm2/../gcc/../libselinux1/../bzip2/../mtr-tiny/../iw/../apport/../accountsservice/../bolt/../liblzma5/../finalrd/../libldap-common/../mime-support/../php7.4-opcache/../lvm2/../libsemanage-common/../sg3-utils/../libfcgi-perl/examples/remote.pl
#!/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 );

AnonSec - 2021 | Recode By D7net