📄 password_check.php3
字号:
<?phprequire('password.php3');if (is_file("../lib/sql/drivers/$config[sql_type]/functions.php3")) include_once("../lib/sql/drivers/$config[sql_type]/functions.php3");else{ echo "<b>Could not include SQL library</b><br>\n"; exit();}if ($action == 'checkpass'){ $link = @da_sql_pconnect($config); if ($link){ $res = @da_sql_query($link,$config, "SELECT attribute,value FROM $config[sql_check_table] WHERE username = '$login' AND (attribute = 'User-Password' OR attribute = 'Crypt-Password');"); if ($res){ $row = @da_sql_fetch_array($res,$config); if (is_file("../lib/crypt/$config[general_encryption_method].php3")){ include("../lib/crypt/$config[general_encryption_method].php3"); $enc_passwd = $row[value]; if ($row[attribute] == 'Crypt-Password') { $passwd = da_encrypt($passwd,$enc_passwd); } if ($passwd == $enc_passwd) $msg = '<font color=blue><b>YES It is that</b></font>'; else $msg = '<font color=red><b>NO It is wrong</b></font>'; } else echo "<b>Could not open encryption library file</b><br>\n"; } } echo "<tr><td colspan=3 align=center>$msg</td></tr>\n";}?></form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -