Linux eyewebsolution.dnshostserver.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Apache
: 185.131.55.234 | : 216.73.216.138
676 Domain
5.6.40
omxrelocation
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
/
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