-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecurity.inc.php
116 lines (108 loc) · 3.45 KB
/
security.inc.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
<?PHP
/*
*******************************************************************************
* Chronologist - web-based time tracking database
* Copyright (C) 2003 by Sylvain LAFRASSE.
*******************************************************************************
* LICENSE:
* This file is part of Chronologist.
*
* Chronologist is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Chronologist 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 Chronologist; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*******************************************************************************
* FILE NAME : security.inc.php
* DESCRIPTION : Security facilities.
* AUTHORS : Sylvain LAFRASSE.
*******************************************************************************
*/
// Add slashes to the given string for secure SQL use if needed
function putslashes($String)
{
if (! get_magic_quotes_gpc())
{
// Add slashes and return the resulting string
return addslashes($String);
}
// Otherwise, return the given string without any modification
return $String;
}
// Quote variable to make safe
function quote_smart($value)
{
// Stripslashes
if (get_magic_quotes_gpc()) {
$value = stripslashes($value);
}
// Quote if not integer
if (!is_numeric($value)) {
$value = "'" . mysql_real_escape_string($value) . "'";
}
return $value;
} // If PHP is not configured to add slashes by default
/*
$EmailID = "email";
$FirstNameID = "firstname";
$LastNameID = "lastname";
fieldName = {$EmailID => "E-Mail", $FirstNameID => "First Name", $LastNameID => "Last Name", };
*/
CheckStringFields($Fields, $Clean)
{
foreach($Fields as $FieldID => $FieldName)
{
if ($_POST['$FieldID'] == strval($_POST['$FieldID']))
{
$clean['$FieldID'] = quote_smart($_POST['$FieldID']);
}
else
{
$_SESSION['message'] .= "The '$FieldName' field is not a valid string. <BR> Please try again. <BR>";
return FALSE;
}
}
return TRUE;
}
CheckIntFields($Fields, $Clean)
{
foreach($Fields as $FieldID => $FieldName)
{
if ($_POST['$FieldID'] == strval(intval($_POST['$FieldID'])))
{
$clean['$FieldID'] = quote_smart($_POST['$FieldID']);
}
else
{
$_SESSION['message'] .= "The '$FieldName' field is not a valid integer. <BR> Please try again. <BR>";
return FALSE;
}
}
return TRUE;
}
CheckEmailFields($Fields, $Clean)
{
foreach($Fields as $FieldID => $FieldName)
{
$email_pattern = '/^[^@\s<&>]+@([-a-z0-9]+\.)+[a-z]{2,}$/i';
if (preg_match($email_pattern, $_POST['$FieldID']))
{
$clean['$FieldID'] = quote_smart($_POST['$FieldID']);
}
else
{
$_SESSION['message'] .= "The '$FieldName' field is not a valid e-mail address. <BR> Please try again. <BR>";
return FALSE;
}
}
return TRUE;
}
?>