Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.15.138.214
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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
/
home /
ifk /
web.back /
framework /
3rdParty /
WsdlGen /
[ HOME SHELL ]
Name
Size
Permission
Action
Wsdl.php
8.6
KB
-rw-r--r--
WsdlGenerator.php
8.86
KB
-rw-r--r--
WsdlMessage.php
1.95
KB
-rw-r--r--
WsdlOperation.php
4.36
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : WsdlMessage.php
<?php /** * WsdlMessage file. * * This program is free software; you can redistribute it and/or modify * it under the terms of the BSD License. * * Copyright(c) 2005 by Marcus Nyeholt. All rights reserved. * * To contact the author write to {@link mailto:tanus@users.sourceforge.net Marcus Nyeholt} * This file is part of the PRADO framework from {@link http://www.xisc.com} * * @author Marcus Nyeholt <tanus@users.sourceforge.net> * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @package System.Web.Services.SOAP */ /** * Represents a WSDL message. This is bound to the portTypes * for this service * @author Marcus Nyeholt <tanus@users.sourceforge.net> * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @version $Revision$ */ class WsdlMessage { /** * The name of this message * @var string */ private $name; /** * Represents the parameters for this message * @var array */ private $parts; /** * Creates a new message * @param string $messageName The name of the message * @param string $parts The parts of this message */ public function __construct($messageName, $parts) { $this->name = $messageName; $this->parts = $parts; } /** * Gets the name of this message * @return string The name */ public function getName() { return $this->name; } /** * Return the message as a DOM element * @param DOMDocument $wsdl The wsdl document the messages will be children of */ public function getMessageElement(DOMDocument $dom) { $message = $dom->createElementNS('http://schemas.xmlsoap.org/wsdl/', 'wsdl:message'); $message->setAttribute('name', $this->name); foreach ($this->parts as $part) { if (isset($part['name'])) { $partElement = $dom->createElementNS('http://schemas.xmlsoap.org/wsdl/', 'wsdl:part'); $partElement->setAttribute('name', $part['name']); $partElement->setAttribute('type', $part['type']); $message->appendChild($partElement); } } return $message; } }
Close