Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.17.162.15
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
2025-05-06 06:30
charsets
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
czech
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
danish
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
docs
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
dutch
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
english
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
estonian
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
french
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
german
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
greek
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
hungarian
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
italian
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
japanese
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
korean
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
norwegian
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
norwegian-ny
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
polish
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
portuguese
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
romanian
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
russian
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
serbian
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
slovak
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
spanish
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
swedish
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
ukrainian
[ DIR ]
drwxr-xr-x
2025-05-06 06:30
debian_create_root_user.sql
1.79
KB
-rw-r--r--
2025-04-25 17:19
dictionary.txt
24.98
KB
-rw-r--r--
2025-03-31 08:19
echo_stderr
27
B
-rwxr-xr-x
2025-04-25 17:19
innodb_memcached_config.sql
3.91
KB
-rw-r--r--
2025-03-31 08:19
install_rewriter.sql
2.21
KB
-rw-r--r--
2025-04-25 17:19
mysql-log-rotate
1.98
KB
-rw-r--r--
2025-04-25 17:19
mysql-systemd-start
2.09
KB
-rwxr-xr-x
2023-06-14 19:23
mysqld_multi.server
1.04
KB
-rwxr-xr-x
2025-03-31 08:19
uninstall_rewriter.sql
1.27
KB
-rw-r--r--
2025-04-25 17:19
Save
Rename
/* Copyright (c) 2015, 2025, 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, version 2.0, as published by the Free Software Foundation. This program is designed to work with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have either included with the program or referenced in the documentation. 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, version 2.0, 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-1301 USA */ CREATE DATABASE IF NOT EXISTS query_rewrite; CREATE TABLE IF NOT EXISTS query_rewrite.rewrite_rules ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, pattern VARCHAR(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, pattern_database VARCHAR(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, replacement VARCHAR(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, enabled ENUM('YES', 'NO') CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'YES', message VARCHAR(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, pattern_digest VARCHAR(64), normalized_pattern VARCHAR(100) ) DEFAULT CHARSET = utf8mb4 ENGINE = INNODB; INSTALL PLUGIN rewriter SONAME 'rewriter.so'; CREATE FUNCTION load_rewrite_rules RETURNS STRING SONAME 'rewriter.so'; DELIMITER // CREATE PROCEDURE query_rewrite.flush_rewrite_rules() BEGIN DECLARE message_text VARCHAR(100); COMMIT; SELECT load_rewrite_rules() INTO message_text; IF NOT message_text IS NULL THEN SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = message_text; END IF; END // DELIMITER ;