Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.189
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
infonepal /
wp-content /
plugins /
popups /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxrwxr-x
includes
[ DIR ]
drwxrwxr-x
languages
[ DIR ]
drwxrwxr-x
public
[ DIR ]
drwxrwxr-x
vendor
[ DIR ]
drwxrwxr-x
LICENSE.txt
18
KB
-rwxrwxr-x
README.txt
16.83
KB
-rwxrwxr-x
composer.json
194
B
-rwxrwxr-x
composer.lock
5.82
KB
-rwxrwxr-x
index.php
26
B
-rwxrwxr-x
popups.php
3.04
KB
-rwxrwxr-x
uninstall.php
633
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : uninstall.php
<?php /** * Uninstall file. If selected all data from popups plugin will be deleted */ if( !defined( 'ABSPATH') && !defined('WP_UNINSTALL_PLUGIN') ) exit(); $opts = get_option( 'spu_settings' ); if( isset( $opts['uninstall']) && '1' == $opts['uninstall'] ) { // delete settings delete_option('spu_settings'); delete_option('spu-version'); // delete popups global $wpdb; // IF wpml is active and spucpt is translated get correct ids for language $ids = $wpdb->get_results( "SELECT ID FROM $wpdb->posts WHERE post_type='spucpt'"); if( !empty( $ids ) ) { foreach( $ids as $p ) { wp_delete_post( $p->ID, true); } } }
Close