SILENT KILLERPanel

Current Path: > home > codekrsu > > shopceylon.store > wp-includes > > IXR


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//shopceylon.store/wp-includes//IXR

NameTypeSizeLast ModifiedActions
class-IXR-base64.php File 414 bytes August 27 2016 02:08:34.
class-IXR-client.php File 4787 bytes June 30 2020 23:50:04.
class-IXR-clientmulticall.php File 1263 bytes June 30 2020 23:50:04.
class-IXR-date.php File 1691 bytes May 26 2019 04:12:54.
class-IXR-error.php File 854 bytes August 27 2016 02:08:34.
class-IXR-introspectionserver.php File 5323 bytes August 27 2016 02:08:34.
class-IXR-message.php File 8191 bytes September 18 2024 22:04:14.
class-IXR-request.php File 927 bytes August 27 2016 02:08:34.
class-IXR-server.php File 6670 bytes May 24 2021 06:18:58.
class-IXR-value.php File 3790 bytes August 27 2016 02:08:34.

Reading File: /home/codekrsu//shopceylon.store/wp-includes//IXR/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;
    }
}

SILENT KILLER Tool