Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
SOAP /
Transport /
[ HOME SHELL ]
Name
Size
Permission
Action
HTTP.pm
28.68
KB
-rw-rw-rw-
IO.pm
1.66
KB
-rw-rw-rw-
LOCAL.pm
1.59
KB
-rw-rw-rw-
LOOPBACK.pm
1.73
KB
-rw-rw-rw-
MAILTO.pm
2.55
KB
-rw-rw-rw-
POP3.pm
3.51
KB
-rw-rw-rw-
TCP.pm
9.48
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IO.pm
# ====================================================================== # # Copyright (C) 2000-2001 Paul Kulchenko (paulclinger@yahoo.com) # SOAP::Lite is free software; you can redistribute it # and/or modify it under the same terms as Perl itself. # # ====================================================================== package SOAP::Transport::IO; use strict; our $VERSION = '1.27'; # VERSION use IO::File; use SOAP::Lite; # ====================================================================== package SOAP::Transport::IO::Server; use strict; use Carp (); use vars qw(@ISA); @ISA = qw(SOAP::Server); sub new { my $class = shift; return $class if ref $class; my $self = $class->SUPER::new(@_); return $self; } sub in { my $self = shift; $self = $self->new() if not ref $self; return $self->{ _in } if not @_; my $file = shift; $self->{_in} = (defined $file && !ref $file && !defined fileno($file)) ? IO::File->new($file, 'r') : $file; return $self; } sub out { my $self = shift; $self = $self->new() if not ref $self; return $self->{ _out } if not @_; my $file = shift; $self->{_out} = (defined $file && !ref $file && !defined fileno($file)) ? IO::File->new($file, 'w') : $file; return $self; } sub handle { my $self = shift->new; $self->in(*STDIN)->out(*STDOUT) unless defined $self->in; my $in = $self->in; my $out = $self->out; my $result = $self->SUPER::handle(join '', <$in>); no strict 'refs'; print {$out} $result if defined $out; return; } # ====================================================================== 1; __END__
Close