Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.189.184.208
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
mysql /
Delete
Unzip
Name
Size
Permission
Date
Action
charsets
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
czech
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
danish
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
dutch
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
english
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
estonian
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
french
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
german
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
greek
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
hungarian
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
italian
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
japanese
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
korean
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
norwegian
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
norwegian-ny
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
polish
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
portuguese
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
romanian
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
russian
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
serbian
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
slovak
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
spanish
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
swedish
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
ukrainian
[ DIR ]
drwxr-xr-x
2021-11-01 09:21
README.mysql-cnf
656
B
-rw-r--r--
2020-09-30 13:21
errmsg-utf8.txt
460.48
KB
-rw-r--r--
2020-05-06 10:54
fill_help_tables.sql
614.23
KB
-rw-r--r--
2020-05-06 10:54
my-huge.cnf
4.8
KB
-rw-r--r--
2020-10-01 16:53
my-innodb-heavy-4G.cnf
19.96
KB
-rw-r--r--
2020-10-01 16:53
my-large.cnf
4.79
KB
-rw-r--r--
2020-10-01 16:53
my-medium.cnf
4.8
KB
-rw-r--r--
2020-10-01 16:53
my-small.cnf
2.78
KB
-rw-r--r--
2020-10-01 16:53
mysql_performance_tables.sql
11.5
KB
-rw-r--r--
2020-05-06 10:54
mysql_system_tables.sql
17.65
KB
-rw-r--r--
2020-05-06 10:54
mysql_system_tables_data.sql
3.35
KB
-rw-r--r--
2020-05-06 10:54
mysql_test_data_timezone.sql
10.17
KB
-rw-r--r--
2020-05-06 10:54
Save
Rename
-- Copyright (c) 2007, 2013, Oracle and/or its affiliates. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; version 2 of the License. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA -- -- The inital data for system tables of MySQL Server -- -- When setting up a "cross bootstrap" database (e.g., creating data on a Unix -- host which will later be included in a Windows zip file), any lines -- containing "@current_hostname" are filtered out by mysql_install_db. -- Get the hostname, if the hostname has any wildcard character like "_" or "%" -- add escape character in front of wildcard character to convert "_" or "%" to -- a plain character SELECT LOWER( REPLACE((SELECT REPLACE(@@hostname,'_','\_')),'%','\%') )INTO @current_hostname; -- Fill "db" table with default grants for anyone to -- access database 'test' and 'test_%' if "db" table didn't exist CREATE TEMPORARY TABLE tmp_db LIKE db; INSERT INTO tmp_db VALUES ('%','test','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','N','N','Y','Y'); INSERT INTO tmp_db VALUES ('%','test\_%','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','N','N','Y','Y'); INSERT INTO db SELECT * FROM tmp_db WHERE @had_db_table=0; DROP TABLE tmp_db; -- Fill "user" table with default users allowing root access -- from local machine if "user" table didn't exist before CREATE TEMPORARY TABLE tmp_user LIKE user; INSERT INTO tmp_user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'',''); REPLACE INTO tmp_user SELECT @current_hostname,'root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'','' FROM dual WHERE @current_hostname != 'localhost'; REPLACE INTO tmp_user VALUES ('127.0.0.1','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'',''); REPLACE INTO tmp_user VALUES ('::1','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'',''); INSERT INTO tmp_user (host,user) VALUES ('localhost',''); INSERT INTO tmp_user (host,user) SELECT @current_hostname,'' FROM dual WHERE @current_hostname != 'localhost'; INSERT INTO user SELECT * FROM tmp_user WHERE @had_user_table=0; DROP TABLE tmp_user; CREATE TEMPORARY TABLE tmp_proxies_priv LIKE proxies_priv; INSERT INTO tmp_proxies_priv VALUES ('localhost', 'root', '', '', TRUE, '', now()); REPLACE INTO tmp_proxies_priv SELECT @current_hostname, 'root', '', '', TRUE, '', now() FROM DUAL WHERE LOWER (@current_hostname) != 'localhost'; INSERT INTO proxies_priv SELECT * FROM tmp_proxies_priv WHERE @had_proxies_priv_table=0; DROP TABLE tmp_proxies_priv;