Subversion Repositories ALCASAR

Rev

Rev 325 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
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)
907 richard 23
					$msg = '<font color=blue><b>YES It is that</b></font>';
325 richard 24
				else
907 richard 25
					$msg = '<font color=red><b>NO It is wrong</b></font>';
325 richard 26
			}
27
			else
28
				echo "<b>Could not open encryption library file</b><br>\n";
29
		}
30
	}
31
	echo "<b>$msg</b>\n";
32
}
33
?>
34
</form>