Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
mysql /
Delete
Unzip
Name
Size
Permission
Date
Action
bulgarian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
charsets
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
czech
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
danish
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
docs
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
dutch
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
english
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
estonian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
french
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
german
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
greek
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
hungarian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
italian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
japanese
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
korean
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
norwegian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
norwegian-ny
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
polish
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
portuguese
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
romanian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
russian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
serbian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
slovak
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
spanish
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
swedish
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
ukrainian
[ DIR ]
drwxr-xr-x
2021-02-02 07:34
debian_create_root_user.sql
1.79
KB
-rw-r--r--
2021-01-28 17:21
dictionary.txt
24.98
KB
-rw-r--r--
2020-12-10 04:01
echo_stderr
27
B
-rwxr-xr-x
2021-01-28 17:21
errmsg-utf8.txt
517.76
KB
-rw-r--r--
2020-12-10 04:01
fill_help_tables.sql
1.02
MB
-rw-r--r--
2020-12-10 04:13
innodb_memcached_config.sql
3.91
KB
-rw-r--r--
2020-12-10 04:01
install_rewriter.sql
2.18
KB
-rw-r--r--
2021-01-28 16:56
magic
773
B
-rw-r--r--
2020-12-10 04:01
mysql-log-rotate
844
B
-rw-r--r--
2021-01-28 16:56
mysql-systemd-start
1.49
KB
-rwxr-xr-x
2017-02-06 12:53
mysql_security_commands.sql
2.13
KB
-rw-r--r--
2020-12-10 04:01
mysql_sys_schema.sql
281.6
KB
-rw-r--r--
2020-12-10 04:01
mysql_system_tables.sql
151.42
KB
-rw-r--r--
2020-12-10 04:01
mysql_system_tables_data.sql
1.21
KB
-rw-r--r--
2020-12-10 04:01
mysql_test_data_timezone.sql
10.58
KB
-rw-r--r--
2020-12-10 04:01
mysqld_multi.server
1.04
KB
-rwxr-xr-x
2021-01-28 16:56
uninstall_rewriter.sql
1.23
KB
-rw-r--r--
2021-01-28 16:56
Save
Rename
#!/bin/bash # # Scripts to run by MySQL systemd service # # Needed argument: pre | post # # pre mode : try to perform sanity check for configuration, log, data # post mode : ping server until answer is received # Read a config option from mysql. Note that this will only work if a config # file actually specifies the option, so it's important to specify a default # $1 is application (e.g. mysqld for server) # $2 is option # $3 is default value used if no config value is found get_mysql_option() { result=$(my_print_defaults "$1" | sed -n "s/^--$2=//p" | tail -n 1) if [ -z "$result" ]; then result="$3" fi echo "$result" } sanity () { if [ ! -r /etc/mysql/my.cnf ]; then echo "MySQL configuration not found at /etc/mysql/my.cnf. Please create one." exit 1 fi datadir=$(get_mysql_option mysqld datadir "/var/lib/mysql") if [ ! -d "${datadir}" ] && [ ! -L "${datadir}" ]; then echo "MySQL data dir not found at ${datadir}. Please create one." exit 1 fi if [ ! -d "${datadir}/mysql" ] && [ ! -L "${datadir}/mysql" ]; then echo "MySQL system database not found in ${datadir}. Please run mysqld --initialize." exit 1 fi } pinger () { server_up=false for i in $(seq 1 30); do sleep 1 if mysqladmin ping >/dev/null 2>&1; then server_up=true break fi done if [ ! $server_up ]; then echo "MySQL server not started" exit 1 fi } case $1 in "pre") sanity ;; "post") pinger ;; esac