-
Notifications
You must be signed in to change notification settings - Fork 207
/
PasswordCheck.php
288 lines (252 loc) · 8.15 KB
/
PasswordCheck.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<?php
#**************************************************************************
# openSIS is a free student information system for public and non-public
# schools from Open Solutions for Education, Inc. web: www.os4ed.com
#
# openSIS is web-based, open source, and comes packed with features that
# include student demographic info, scheduling, grade book, attendance,
# report cards, eligibility, transcripts, parent portal,
# student portal and more.
#
# Visit the openSIS web site at http://www.opensis.com to learn more.
# If you have question regarding this system or the license, please send
# an email to [email protected].
#
# This program is released under the terms of the GNU General Public License as
# published by the Free Software Foundation, version 2 of the License.
# See license.txt.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#***************************************************************************************
include "functions/ParamLibFnc.php";
include "data.php";
include "functions/DbGetFnc.php";
require_once "functions/PragRepFnc.php";
function db_start()
{ global $DatabaseServer,$DatabaseUsername,$DatabasePassword,$DatabaseName,$DatabasePort,$DatabaseType;
switch($DatabaseType)
{
case 'mysqli':
$connection = new mysqli($DatabaseServer,$DatabaseUsername,$DatabasePassword,$DatabaseName);
break;
}
// Error code for both.
if($connection === false)
{
switch($DatabaseType)
{
case 'mysqil':
$errormessage = mysqli_error($connection);
break;
}
db_show_error("",""._couldNotConnectToDatabase.": $DatabaseServer",$errstring);
}
return $connection;
}
##### Connection help #####
$connection = mysqli_connect($DatabaseServer, $DatabaseUsername, $DatabasePassword, $DatabaseName);
if (!$connection)
{
die('Could Not Connect: ' . mysqli_error($connection) . mysqli_errno($connection));
}
// This function connects, and does the passed query, then returns a connection identifier.
// Not receiving the return == unusable search.
// ie, $processable_results = DBQuery("select * from students");
function DBQuery($sql)
{ global $DatabaseType,$_openSIS,$connection;
// $connection = db_start();
switch($DatabaseType)
{
case 'mysqli':
$sql = str_replace('&', "", $sql);
$sql = str_replace('"', "", $sql);
$sql = str_replace(''', "", $sql);
$sql = str_replace('<', "", $sql);
$sql = str_replace('>', "", $sql);
$sql = par_rep("/([,\(=])[\r\n\t ]*''/",'\\1NULL',$sql);
if(preg_match_all("/'(\d\d-[A-Za-z]{3}-\d{2,4})'/",$sql,$matches))
{
foreach($matches[1] as $match)
{
$dt = date('Y-m-d',strtotime($match));
$sql = par_rep("/'$match'/","'$dt'",$sql);
}
}
if(substr($sql,0,6)=="BEGIN;")
{
$array = explode( ";", $sql );
foreach( $array as $value )
{
if($value!="")
{
$result = $connection->query($value);
if(!$result)
{
$connection->query("ROLLBACK");
die(db_show_error($sql,_dbExecuteFailed,mysql_error()));
}
}
}
}
else
{
$result = $connection->query($sql) or die(db_show_error($sql,_dbExecuteFailed,mysql_error()));
}
break;
}
return $result;
}
// return next row.
function db_fetch_row($result)
{ global $DatabaseType;
switch($DatabaseType)
{
case 'mysqli':
$return = $result->fetch_assoc();
if(is_array($return))
{
foreach($return as $key => $value)
{
if(is_int($key))
unset($return[$key]);
}
}
break;
}
return @array_change_key_case($return,CASE_UPPER);
}
// returns code to go into SQL statement for accessing the next value of a sequence function db_seq_nextval($seqname)
function db_seq_nextval($seqname)
{ global $DatabaseType;
if($DatabaseType=='mysqli')
$seq="fn_".strtolower($seqname)."()";
return $seq;
}
function db_case($array)
{ global $DatabaseType;
$counter=0;
if($DatabaseType=='mysqli')
{
$array_count=count($array);
$string = " CASE WHEN $array[0] =";
$counter++;
$arr_count = count($array);
for($i=1;$i<$arr_count;$i++)
{
$value = $array[$i];
if($value=="''" && substr($string,-1)=='=')
{
$value = ' IS NULL';
$string = substr($string,0,-1);
}
$string.="$value";
if($counter==($array_count-2) && $array_count%2==0)
$string.=" ELSE ";
elseif($counter==($array_count-1))
$string.=" END ";
elseif($counter%2==0)
$string.=" WHEN $array[0]=";
elseif($counter%2==1)
$string.=" THEN ";
$counter++;
}
}
return $string;
}
function db_properties($table)
{ global $DatabaseType,$DatabaseUsername;
switch($DatabaseType)
{
case 'mysqli':
$result = DBQuery("SHOW COLUMNS FROM $table");
while($row = db_fetch_row($result))
{
$properties[strtoupper($row['FIELD'])]['TYPE'] = strtoupper($row['TYPE'],strpos($row['TYPE'],'('));
if(!$pos = strpos($row['TYPE'],','))
$pos = strpos($row['TYPE'],')');
else
$properties[strtoupper($row['FIELD'])]['SCALE'] = substr($row['TYPE'],$pos+1);
$properties[strtoupper($row['FIELD'])]['SIZE'] = substr($row['TYPE'],strpos($row['TYPE'],'(')+1,$pos);
if($row['NULL']!='')
$properties[strtoupper($row['FIELD'])]['NULL'] = "Y";
else
$properties[strtoupper($row['FIELD'])]['NULL'] = "N";
}
break;
}
return $properties;
}
function db_show_error($sql,$failnote,$additional='')
{ global $openSISTitle,$openSISVersion,$openSISNotifyAddress,$openSISMode;
$tb = debug_backtrace();
$error = $tb[1]['file'] . " at " . $tb[1]['line'];
echo "
<TABLE CELLSPACING=10 BORDER=0>
<TD align=right><b>Date:</TD>
<TD><pre>".date("m/d/Y h:i:s")."</pre></TD>
</TR><TR>
<TD align=right><b>Failure Notice:</b></TD>
<TD><pre> $failnote </pre></TD>
</TR><TR>
<TD align=right><b>SQL:</b></TD>
<TD>$sql</TD>
</TR>
</TR><TR>
<TD align=right><b>Traceback:</b></TD>
<TD>$error</TD>
</TR>
</TR><TR>
<TD align=right><b>Additional Information:</b></TD>
<TD>$additional</TD>
</TR>
</TABLE>";
echo "
<TABLE CELLSPACING=10 BORDER=0>
<TR><TD align=right><b>Date:</TD>
<TD><pre>".date("m/d/Y h:i:s")."</pre></TD>
</TR><TR>
<TD align=right></TD>
<TD>openSIS has encountered an error that could have resulted from any of the following:
<br/>
<ul>
<li>Invalid data input</li>
<li>Database SQL error</li>
<li>Program error</li>
</ul>
Please take this screen shot and send it to your openSIS representative for debugging and resolution.
</TD>
</TR>
</TABLE>";
echo "<!-- SQL STATEMENT: \n\n $sql \n\n -->";
if($openSISNotifyAddress)
{
$message = "System: $openSISTitle \n";
$message .= "Date: ".date("m/d/Y h:i:s")."\n";
$message .= "Page: ".$_SERVER['PHP_SELF'].' '.ProgramTitle()." \n\n";
$message .= "Failure Notice: $failnote \n";
$message .= "Additional Info: $additional \n";
$message .= "\n $sql \n";
$message .= "Request Array: \n".ShowVar($_REQUEST,'Y', 'N');
$message .= "\n\nSession Array: \n".ShowVar($_SESSION,'Y', 'N');
mail($openSISNotifyAddress,'openSIS Database Error',$message);
}
die();
}
$usrid = sqlSecurityFilter($_GET['usrid']);
$prof_id = sqlSecurityFilter($_GET['prof_id']);
$res_pass_chk = DBGet(DBQuery("SELECT * FROM login_authentication WHERE PASSWORD = '".md5($_GET['password'])."' AND USERNAME!='".$usrid."' AND PROFILE_ID!='".$prof_id."'"));
if($res_pass_chk[1]['USER_ID']!='')
{
echo '1';
}
else
{
echo '0';
}