New build path variable
[freeradius.git] / dialup_admin / lib / sql / password_check.php3
1 <?php
2 require('password.php3');
3 if (is_file("../lib/sql/drivers/$config[sql_type]/functions.php3"))
4         include_once("../lib/sql/drivers/$config[sql_type]/functions.php3");
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].php3")){
19                                 include("../lib/crypt/$config[general_encryption_method].php3");
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                                 else
25                                         $msg = '<font color=red><b>NO It is wrong</b></font>';
26                         }
27                         else
28                                 echo "<b>Could not open encryption library file</b><br>\n";
29                 }
30         }
31         echo "<tr><td colspan=3 align=center>$msg</td></tr>\n";
32 }
33 ?>
34 </form>