Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 216.73.216.36
46 Domain
7.2.34
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
.cpanplus /
5.16.3 /
build /
libwww-perl-6.46 /
[ HOME SHELL ]
Name
Size
Permission
Action
bin
[ DIR ]
drwxr-xr-x
blib
[ DIR ]
drwxr-xr-x
examples
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
t
[ DIR ]
drwxr-xr-x
xt
[ DIR ]
drwxr-xr-x
CONTRIBUTING.md
5.5
KB
-rw-r--r--
Changes
119.11
KB
-rw-r--r--
INSTALL
2.18
KB
-rw-r--r--
LICENSE
17.91
KB
-rw-r--r--
MANIFEST
2.16
KB
-rw-r--r--
META.json
33.42
KB
-rw-r--r--
META.yml
22.27
KB
-rw-r--r--
MYMETA.json
33.54
KB
-rw-r--r--
MYMETA.yml
22.31
KB
-rw-r--r--
Makefile
41.29
KB
-rw-r--r--
Makefile.PL
5.12
KB
-rw-r--r--
README.SSL
383
B
-rw-r--r--
cpanfile
1.56
KB
-rw-r--r--
dist.ini
6.55
KB
-rw-r--r--
lwpcook.pod
9.05
KB
-rw-r--r--
lwptut.pod
24.37
KB
-rw-r--r--
pm_to_blib
0
B
-rw-r--r--
talk-to-ourself
1.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : talk-to-ourself
#!perl use strict; use warnings; # This program check if we are able to talk to ourself. Misconfigured # systems that can't talk to their own 'hostname' was the most commonly # reported libwww-failure. use IO::Select (); use IO::Socket (); if (@ARGV >= 2 && $ARGV[0] eq "--port") { my $port = $ARGV[1]; my $host = '127.0.0.1'; if (my $socket = IO::Socket::INET->new(PeerAddr => "$host:$port", Timeout => 5)) { if (IO::Select->new($socket)->can_read(1)) { my($n, $buf); if ($n = sysread($socket, $buf, 512)) { exit if $buf eq "Hi there!\n"; die "Seems to be talking to the wrong server at $host:$port, got \"$buf\"\n"; } elsif (defined $n) { die "Immediate EOF from server at $host:$port\n"; } else { die "Can't read from server at $host:$port: $!"; } } die "No response from server at $host:$port\n"; } die "Can't connect: $@\n"; } # server code my $socket = IO::Socket::INET->new(Listen => 1, Timeout => 5, LocalAddr => '127.0.0.1'); my $port = $socket->sockport; open(my $CLIENT, qq("$^X" "$0" --port $port |)) || die "Can't run $^X $0: $!\n"; if (my $client = $socket->accept) { print $client "Hi there!\n"; close($client) || die "Can't close socket: $!"; } else { warn "Test server timeout\n"; } exit if close($CLIENT); die "Can't wait for client: $!" if $!; die "The can-we-talk-to-ourself test failed.\n";
Close