325 |
richard |
1 |
<?php
|
|
|
2 |
require('password.php');
|
|
|
3 |
if (is_file("../lib/sql/drivers/$config[sql_type]/functions.php"))
|
|
|
4 |
include_once("../lib/sql/drivers/$config[sql_type]/functions.php");
|
|
|
5 |
else{
|
|
|
6 |
echo "<b>Could not include SQL library</b><br>\n";
|
|
|
7 |
exit();
|
|
|
8 |
}
|
|
|
9 |
|
|
|
10 |
if ($action == 'checkpass'){
|
|
|
11 |
$link = @da_sql_pconnect($config);
|
|
|
12 |
if ($link){
|
|
|
13 |
$res = @da_sql_query($link,$config,
|
|
|
14 |
"SELECT attribute,value FROM $config[sql_check_table] WHERE username = '$login'
|
|
|
15 |
AND attribute = '$config[sql_password_attribute]';");
|
|
|
16 |
if ($res){
|
|
|
17 |
$row = @da_sql_fetch_array($res,$config);
|
|
|
18 |
if (is_file("../lib/crypt/$config[general_encryption_method].php")){
|
|
|
19 |
include("../lib/crypt/$config[general_encryption_method].php");
|
|
|
20 |
$enc_passwd = $row[value];
|
|
|
21 |
$passwd = da_encrypt($passwd,$enc_passwd);
|
|
|
22 |
if ($passwd == $enc_passwd)
|
|
|
23 |
// $msg = '<font color=blue><b>YES It is that</b></font>';
|
|
|
24 |
$msg = '<font color=blue><b>Le mot de passe est correct</b></font>';
|
|
|
25 |
else
|
|
|
26 |
// $msg = '<font color=red><b>NO It is wrong</b></font>';
|
|
|
27 |
$msg = '<font color=red><b>Le mot de passe n\'est pas correct</b></font>';
|
|
|
28 |
}
|
|
|
29 |
else
|
|
|
30 |
echo "<b>Could not open encryption library file</b><br>\n";
|
|
|
31 |
}
|
|
|
32 |
}
|
|
|
33 |
echo "<b>$msg</b>\n";
|
|
|
34 |
}
|
|
|
35 |
?>
|
|
|
36 |
</form>
|