Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.224.199.201
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
theprintave /
wp-includes /
certificates /
wp /
Delete
Unzip
Name
Size
Permission
Date
Action
aOtxjgNG-20250514033210.php
2.46
KB
-rw-r--r--
2025-05-09 05:54
block-bindings.php
5.46
KB
-rw-r--r--
2024-07-16 17:55
cache-compat-20250514093141.php
5.83
KB
-rw-r--r--
2022-10-10 18:22
cache-compat.php
5.83
KB
-rw-r--r--
2022-10-10 18:22
class-oembed.php
401
B
-rw-r--r--
2022-06-17 11:20
class-simplepie.php
453
B
-rw-r--r--
2024-11-13 12:36
class-wp-locale.php
16.49
KB
-rw-r--r--
2025-04-15 17:44
class-wp-network.php
12.01
KB
-rw-r--r--
2024-11-13 12:36
class-wp-phpmailer.php
3.71
KB
-rw-r--r--
2025-04-15 17:44
class-wp-rewrite.php
62.2
KB
-rw-r--r--
2024-11-13 12:36
class-wp-taxonomy.php
18.12
KB
-rw-r--r--
2025-04-15 17:44
class-wp.php
25.7
KB
-rw-r--r--
2025-04-15 17:44
feed-rss.php
1.16
KB
-rw-r--r--
2020-01-29 00:45
ms-files-20250514092528.php
2.68
KB
-rw-r--r--
2025-04-30 17:44
ms-network.php
3.69
KB
-rw-r--r--
2023-05-02 11:26
pluggable-deprecated.php
6.18
KB
-rw-r--r--
2025-04-15 17:44
plugin.php
34.74
KB
-rw-r--r--
2024-07-16 17:55
rss.php
22.57
KB
-rw-r--r--
2024-11-13 12:36
spl-autoload-compat.php
441
B
-rw-r--r--
2020-11-12 11:17
Save
Rename
<?php /** * RSS 0.92 Feed Template for displaying RSS 0.92 Posts feed. * * @package WordPress */ header( 'Content-Type: ' . feed_content_type( 'rss' ) . '; charset=' . get_option( 'blog_charset' ), true ); $more = 1; echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?' . '>'; ?> <rss version="0.92"> <channel> <title><?php wp_title_rss(); ?></title> <link><?php bloginfo_rss( 'url' ); ?></link> <description><?php bloginfo_rss( 'description' ); ?></description> <lastBuildDate><?php echo get_feed_build_date( 'D, d M Y H:i:s +0000' ); ?></lastBuildDate> <docs>http://backend.userland.com/rss092</docs> <language><?php bloginfo_rss( 'language' ); ?></language> <?php /** * Fires at the end of the RSS Feed Header. * * @since 2.0.0 */ do_action( 'rss_head' ); ?> <?php while ( have_posts() ) : the_post(); ?> <item> <title><?php the_title_rss(); ?></title> <description><![CDATA[<?php the_excerpt_rss(); ?>]]></description> <link><?php the_permalink_rss(); ?></link> <?php /** * Fires at the end of each RSS feed item. * * @since 2.0.0 */ do_action( 'rss_item' ); ?> </item> <?php endwhile; ?> </channel> </rss>