-
Notifications
You must be signed in to change notification settings - Fork 205
/
ForExport.php
180 lines (151 loc) · 6.62 KB
/
ForExport.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
<?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 info@os4ed.com.
#
# 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/>.
#
#***************************************************************************************
session_start();
//!empty($_SESSION['USERNAME']) or die('Access denied!');
include "functions/ParamLibFnc.php";
//include("functions/UrlFnc.php");
include 'RedirectRootInc.php';
$start_time = time();
include 'Warehouse.php';
array_rwalk($_REQUEST,'strip_tags');
$_REQUEST = sqlSecurityFilter($_REQUEST);
if (isset($_REQUEST['include']))
$_REQUEST['include'] = sqlSecurityFilter($_REQUEST['include']);
if(!isset($_REQUEST['_openSIS_PDF']))
{
Warehouse('header');
if(strpos(optional_param('modname','',PARAM_NOTAGS),'miscellaneous/')===false)
echo '<script language="JavaScript">if(window == top && (!window.opener || window.opener.location.href.substring(0,(window.opener.location.href.indexOf("&")!=-1?window.opener.location.href.indexOf("&"):window.opener.location.href.replace("#","").length))!=window.location.href.substring(0,(window.location.href.indexOf("&")!=-1?window.location.href.indexOf("&"):window.location.href.replace("#","").length)))) window.location.href = "index.php";</script>';
echo "<BODY onload='doOnload();'>";
echo '<DIV id="Migoicons" style="visibility:hidden;position:absolute;z-index:1000;top:-100"></DIV>';
echo "<TABLE width=100% border=0 cellpadding=0><TR><TD valign=top align=center>";
}
if(optional_param('modname','',PARAM_NOTAGS))
{
//Warehouse('header');
if($_REQUEST['_openSIS_PDF']=='true')
ob_start();
if(strpos(optional_param('modname','',PARAM_NOTAGS),'?')!==false)
{
$modname = substr(optional_param('modname','',PARAM_NOTAGS),0,strpos(optional_param('modname','',PARAM_NOTAGS),'?'));
$vars = substr(optional_param('modname','',PARAM_NOTAGS),(strpos(optional_param('modname','',PARAM_NOTAGS),'?')+1));
$vars = explode('?',$vars);
foreach($vars as $code)
{
$code = explode('=',$code);
$_REQUEST[$code[0]] = $code[1];
}
}
else
$modname = optional_param('modname','',PARAM_NOTAGS);
if(optional_param('LO_save','',PARAM_INT)!='1' && !isset($_REQUEST['_openSIS_PDF']) && (strpos(optional_param($modname,'',PARAM_NOTAGS),'miscellaneous/')===false || $modname=='miscellaneous/Registration.php' || $modname=='miscellaneous/Export.php' || $modname=='miscellaneous/Portal.php'))
$_SESSION['_REQUEST_vars'] = sqlSecurityFilter($_REQUEST);
$_SESSION['_REQUEST_vars'][] = str_replace('+'," ",$_REQUEST['head_html']);
$allowed = false;
include 'Menu.php';
foreach($_openSIS['Menu'] as $modcat=>$programs)
{
if($_REQUEST['modname']==$modcat.'/Search.php')
{
$allowed = true;
break;
}
foreach($programs as $program=>$title)
{
if(optional_param('modname','',PARAM_NOTAGS)==$program)
{
$allowed = true;
break;
}
}
}
$AllowUse = DBGet(DBQuery("SELECT MODNAME FROM profile_exceptions WHERE PROFILE_ID='".User('PROFILE_ID')."' AND CAN_USE='Y'"));
foreach($AllowUse as $programs)
{
if($programs['MODNAME']==optional_param('modname','',PARAM_NOTAGS))
{
$allowed = true;
break;
}
}
if(substr(optional_param('modname','',PARAM_NOTAGS),0,14)=='miscellaneous/')
$allowed = true;
if(optional_param('modname','',PARAM_NOTAGS)=='scheduling/PrintSchedules.php' && UserProfileID()==4)
$allowed = true;
if(optional_param('modname','',PARAM_NOTAGS)=='users/TeacherPrograms.php?include=attendance/TakeAttendance.php' && User('PROFILE')=='teacher' && AllowEdit(optional_param('modname','',PARAM_NOTAGS)))
$allowed = true;
if($allowed)
{
if(Preferences('SEARCH')!='Y')
$_REQUEST['search_modfunc'] = 'list';
if (preg_match('/\.\./', $modname) !== 1)
include 'modules/' . $modname;
}
else
{
if(User('USERNAME'))
{
if ($_SERVER['HTTP_X_FORWARDED_FOR']){
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
$ip = $_SERVER['REMOTE_ADDR'];
}
echo ""._youReNotAllowedToUseThisProgram."! "._thisAttemptedViolationHasBeenLoggedAndYourIpAddressWasCaptured.".";
DBQuery("INSERT INTO hacking_log (HOST_NAME,IP_ADDRESS,LOGIN_DATE,VERSION,PHP_SELF,DOCUMENT_ROOT,SCRIPT_NAME,MODNAME,USERNAME) values('$_SERVER[SERVER_NAME]','$ip','".date('Y-m-d')."','$openSISVersion','$_SERVER[PHP_SELF]','$_SERVER[DOCUMENT_ROOT]','$_SERVER[SCRIPT_NAME]','$_REQUEST[modname]','".User('USERNAME')."')");
Warehouse('footer');
if($openSISNotifyAddress)
mail($openSISNotifyAddress,'HACKING ATTEMPT',"INSERT INTO hacking_log (HOST_NAME,IP_ADDRESS,LOGIN_DATE,VERSION,PHP_SELF,DOCUMENT_ROOT,SCRIPT_NAME,MODNAME,USERNAME) values('$_SERVER[SERVER_NAME]','$ip','".date('Y-m-d')."','$openSISVersion','$_SERVER[PHP_SELF]','$_SERVER[DOCUMENT_ROOT]','$_SERVER[SCRIPT_NAME]','".optional_param('modname','',PARAM_NOTAGS)."','".User('USERNAME')."')");
}
exit;
}
if($_SESSION['unset_student'])
{
unset($_SESSION['unset_student']);
unset($_SESSION['staff_id']);
}
//Warehouse('footer');
}
if(!isset($_REQUEST['_openSIS_PDF']))
{
echo '</TD></TR></TABLE>';
for($i=1;$i<=$_openSIS['PrepareDate'];$i++)
{
echo '<script type="text/javascript">
Calendar.setup({
monthField : "monthSelect'.$i.'",
dayField : "daySelect'.$i.'",
yearField : "yearSelect'.$i.'",
ifFormat : "%d-%b-%y",
button : "trigger'.$i.'",
align : "Tl",
singleClick : true
});
</script>';
}
}
?>