type.data is malloc'd by everyone BUT radeapclient, which
[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 = 'User-Password' OR attribute = 'Crypt-Password');");
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                                 if ($row[attribute] == 'Crypt-Password') {
22                                         $passwd = da_encrypt($passwd,$enc_passwd);
23                                 }
24                                 if ($passwd == $enc_passwd)
25                                         $msg = '<font color=blue><b>YES It is that</b></font>';
26                                 else
27                                         $msg = '<font color=red><b>NO It is wrong</b></font>';
28                         }
29                         else
30                                 echo "<b>Could not open encryption library file</b><br>\n";
31                 }
32         }
33         echo "<tr><td colspan=3 align=center>$msg</td></tr>\n";
34 }
35 ?>
36 </form>