Subversion Repositories ALCASAR

Rev

Rev 2163 | Rev 2167 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
895 richard 1
<?php
958 franck 2
# $Id: intercept.php 2166 2017-04-08 15:25:35Z tom.houdayer $
895 richard 3
#
1249 richard 4
# intercept.php for ALCASAR captive portal
895 richard 5
# Copyright (C) 2003, 2004 Mondru AB.
6
# Modify by REXY & steweb57
7
# UI & css style by stephane ERARD
8
# Help for language translation by B. AUBARD (thanks)
9
 
10
# The contents of this file may be used under the terms of the GNU
11
# General Public License Version 2, provided that the above copyright
12
# notice and this permission notice is included in all copies or
13
# substantial portions of the software.
14
 
15
# Redirects from CoovaChilli (chilli daemon) :
16
# Response to login:
17
  # success :	if login successful
18
  # failed :	if login failed
19
  # logoff :	if logout successful
20
  # already :	if tried to login while already logged in
21
  # notyet :	if not logged in yet
22
  # Default :	it was not a form request -> client go to login form
23
 
24
/****************************************************************
25
*			GLOBAL FILE PATHS			*
26
*****************************************************************/
27
define ("CONF_FILE", "/usr/local/etc/alcasar.conf");
913 richard 28
define ("DOMAIN_ALLOWED_LIST", "/usr/local/etc/alcasar-uamdomain");
895 richard 29
 
30
/****************************************************************
930 richard 31
*			FILE reading test			*
895 richard 32
*****************************************************************/
930 richard 33
$conf_files=array(CONF_FILE,DOMAIN_ALLOWED_LIST);
913 richard 34
foreach ($conf_files as $file){
35
	if (!file_exists($file)){
36
		exit("Fichier ".$file." non présent");
37
	}
38
	if (!is_readable($file)){
39
		exit("Vous n'avez pas les droits de lecture sur le fichier ".$file);
40
	}
41
}
895 richard 42
/****************************************************************
43
*			Read CONF_FILE				*
44
*****************************************************************/
45
$ouvre=fopen(CONF_FILE,"r");
46
if ($ouvre){
47
	while (!feof ($ouvre))
48
	{
49
		$tampon = fgets($ouvre, 4096);
50
		if (strpos($tampon,"=")!==false){
51
			$tmp = explode("=",$tampon);
52
			$conf[$tmp[0]] = $tmp[1];
53
		}
54
	}
55
}else{
1249 richard 56
	exit("Erreur d'ouverture du fichier ".CONF_FILE);
895 richard 57
}
58
fclose($ouvre);
1269 richard 59
$organisme = trim($conf["ORGANISM"]);
895 richard 60
 
2059 richard 61
# Shared secret used to encrypt password with coova.
930 richard 62
$uamsecret = "";
895 richard 63
 
64
# URL loaded after success authenticates (let blank for browser defaults)
65
$adminurl = "";
66
 
67
# Our own path
2163 tom.houday 68
$loginpath	= htmlspecialchars($_SERVER['PHP_SELF']);
1346 richard 69
$alcasarpath	= "http://alcasar.".trim($conf["DOMAIN"]);
70
$statuspath	= $alcasarpath."/status.php";
895 richard 71
$debug		= false;
72
 
73
# Choice of language
74
$Language = 'en';
75
if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
76
  $Langue = explode(",",$_SERVER['HTTP_ACCEPT_LANGUAGE']);
77
  $Language = strtolower(substr(chop($Langue[0]),0,2)); }
78
if($Language == 'es'){
79
  $l_ChilliError	= "La autenticación debe ser un éxito a través del servicio de portal cautivo.";
80
  $l_login		= "El éxito de la autenticación.<HR>Cierre esta ventana interrumpte la sesion.";
81
  $l_logout		= "Conexión de cierre";
82
  $l_loginfailed	= "Error de autenticación";
83
  $l_loggingin		= "Identificación en el portal cautivo";
84
  $l_loggedcont		= "Control de Acceso";
85
  $l_loggedout		= "Su sesión se cierra";
86
  $l_user		= "Usuario";
87
  $l_password		= "Contraseña";
88
  $l_wait		= "Por favor, espere un momento ...";
89
  $l_onlinetime		= "Tiempo de conexión:";
90
  $l_remainingtime	= "Desconexión en:";
91
  $l_encrypted		= "La apertura debe usar conexión cifrada";
92
  $l_boutonO		= "Autenticación";
93
  $l_boutonF		= "Cerrar";
930 richard 94
  $l_loggedin_stringl1	= "Information System Security";
95
  $l_loggedin_stringl2	= "El portal fue creado reglamentos para garantizar la trazabilidad, la rendición de cuentas y el no repudio de las conexiones.";
96
  $l_loggedin_stringl3	= "Su actividad en la red es registrada, de conformidad con la privacidad.";
97
  $l_loggedin_stringl4	= "Los datos registrados pueden ser capaces de ser operado por una autoridad judicial en el curso de una investigación.";
98
  $l_loggedin_stringl5	= "Estos datos se eliminan automáticamente después de un año.";
99
  $l_loggedin_stringl6	= "Click <a href='$alcasarpath'>here</a> to change your password or to integrate the security certificate in your browser";
100
  $l_loggedout_string	= "Cerrar sesión hizo portal cautivo!";
101
  $l_reply_1		= "Your daily connexion time has been reached";
102
  $l_reply_2		= "Your monthly connexion time has been reached";
103
  $l_reply_3		= "You try to connect outside of your allowed timespan";
104
  $l_reply_4		= "your account expired";
105
  $l_reply_5		= "You have reached the maximum number of simultaneous logins";
106
  $l_reply_6		= "Your authorized connexion time has been reached";
107
  $l_online_time	= "Tiempo en linea";
108
  $l_remaining_time	= "Tiempo restante";
1349 richard 109
  $l_uam_domain		= "Sitios web autorizados : ";
110
  $l_autoregistration   = "Registo autom&aacute;tico";}
913 richard 111
else if ($Language == 'pt'){
955 richard 112
  $l_ChilliError	= "A autenticação precisa ser bem sucedida através do portal.";
113
  $l_login		= "Sucesso na autenticação.<HR>Matenha esse pop-up apenas minimizado para não interromper a conexão";
114
  $l_logout		= "Encerrar conexão";
913 richard 115
  $l_loginfailed	= "Falha na autenticação";
116
  $l_loggingin		= "Identificação do portal cativo";
922 richard 117
  $l_loggedcont		= "Controle de acesso";
955 richard 118
  $l_loggedout		= "Sua sessão foi fechada";
913 richard 119
  $l_user		= "Usuário";
120
  $l_password		= "Senha";
121
  $l_wait		= "Por favor, aguarde um momento ...";
122
  $l_onlinetime		= "Tempo de conexão:";
123
  $l_remainingtime	= "Desconectado em:";
124
  $l_encrypted		= "A conexão com o portal deve ser criptografada";
125
  $l_boutonO		= "Autenticação";
126
  $l_boutonF		= "Fechar";
955 richard 127
  $l_loggedin_stringl1	= "Sistema de Informação e segurança";
128
  $l_loggedin_stringl2	= "Este controle foi criado para garantir acesso seguro.";
129
  $l_loggedin_stringl3	= "A autenticação será criptografada em 256 bits, impedindo captura por escâner de rede.";
130
  $l_loggedin_stringl4	= "Sua atividade na Internet será resguardada de acordo com os regulamentos da lei.";
971 richard 131
  $l_loggedin_stringl5	= "Mantenha o popup da conexão minimizado para não interromper a cessão.";
955 richard 132
  $l_loggedin_stringl6	= "Clique <a href='$alcasarpath'>aqui</a> para alterar sua senha, instalar certificado ou sair do portal.";
133
  $l_loggedout_string	= "desconexão do portal cativo";
134
  $l_reply_1		= "Seu tempo de conexão diária foi finalizado";
921 richard 135
  $l_reply_2		= "Seu tempo de conexão mensal foi finalizado";
136
  $l_reply_3		= "Você tenta conectar-se fora do seu período de tempo permitido";
137
  $l_reply_4		= "Sua conta expirou";
138
  $l_reply_5		= "Você atingiu o número máximo de logins simultâneos";
139
  $l_reply_6		= "Seu tempo de conexão autorizada finalizou";
140
  $l_online_time	= "Tempo Online";
141
  $l_remaining_time	= "Tempo restante";
1349 richard 142
  $l_uam_domain		= "Sites autorizados : ";
143
  $l_autoregistration   = "Registo autom&aacute;tico";}
2074 richard 144
else if ($Language == 'zh'){
2073 richard 145
  $l_ChilliError	= "验证必须通过强制门户服务";
146
  $l_login		= "验证成功<HR>关闭此窗口中断连接";
147
  $l_logout		= "关闭连接";
148
  $l_loginfailed	= "验证失败";
149
  $l_loggingin		= "强制门户身份识别";
150
  $l_loggedcont		= "访问控制";
151
  $l_loggedout		= "您的连接已关闭";
152
  $l_user		= "用户名";
153
  $l_password		= "密码";
154
  $l_wait		= "请等待 ...";
155
  $l_onlinetime		= "连接时间";
156
  $l_remainingtime	= "断开连接于";
157
  $l_encrypted		= "与门户的连接必须加密";
158
  $l_boutonO		= "验证";
159
  $l_boutonF		= "关闭";
160
  $l_loggedin_stringl1	= "信息系统安全";
161
  $l_loggedin_stringl2	= "这种控制实施以法定保证可追溯性,可归罪性和连接的不否认性.";
162
  $l_loggedin_stringl3	= "您的网络活动是私密登记的.";
163
  $l_loggedin_stringl4	= "记录的数据能被司法机关在调查中操作使用.";
164
  $l_loggedin_stringl5	= "这些数据将在一年后自动删除.";
165
  $l_loggedin_stringl6	= "点击 <a href='$alcasarpath'> 这里 </a> 修改密码或安装浏览器安全证书";
166
  $l_loggedout_string	= "强制网络门户连接已断开";
167
  $l_reply_1		= "您已经达到每日连接时间";
168
  $l_reply_2		= "您已经达到每月连接时间";
169
  $l_reply_3		= "您尝试在授权时间以外连接";
170
  $l_reply_4		= "您的账号已过期";
171
  $l_reply_5		= "您已经达到同时连接的最大数量";
172
  $l_reply_6		= "已经到达您的允许连接时间";
173
  $l_online_time	= "在线时间";
174
  $l_remaining_time	= "剩余时间";
175
  $l_uam_domain		= "授权网站 : ";
176
  $l_autoregistration   = "短信注册";}
2100 richard 177
else if($Language == 'ar'){
178
 $l_ChilliError    = "يجب نجاح المصادقة على البوابة الأسيرة";
179
  $l_login    = "إغلاق هذه النافذة يقطع دورة عملك";
180
  $l_logout   = "إغلاق الدورة";
181
  $l_loginfailed    = "فشل المصادقة";
182
  $l_loggingin    = "التعريف على البوابة الأسيرة";
183
  $l_loggedcont   = "مراقبة الدخول";
184
  $l_loggedout    = "دورتكَ مغلقة";
185
  $l_user     = "التعريف";
186
  $l_password   = "كلمة السر";
187
  $l_wait   = "...إنتظر بعض اللحظات";
188
  $l_onlinetime   = ":مدة الإتصال";
189
  $l_remainingtime  = ":انقطاع الإتصال في";
190
  $l_encrypted    = "يجب تشفير الإتصال بالبوابة";
191
  $l_boutonO    = "مصادقة";
192
  $l_boutonF    = "أغلق";
193
  $l_loggedin_stringl1  = "سلامة نظم المعلومات";
194
  $l_loggedin_stringl2  = "وُضعت هذه المراقبة للضمان القانوني لتتبع ومساءلة وعدم تنصل الإتصالات";
195
  $l_loggedin_stringl3  = "نشاطك على الشبكة مسجل وفقاً لاحترام الحريات الشخصية";
196
  $l_loggedin_stringl4  = "لا يمكن استغلال البيانات المسجلة إلاّ من قِبل سلطات التحقيق القضائ";
197
  $l_loggedin_stringl5  = "سيتم حدف هذه البيانات تلقائياً بعد سنة من الْيَوْمَ";
198
  $l_loggedin_stringl6  = "لتغيير كلمة السر أو شهادة الأمان <a href='$alcasarpath'>هنا</a> اضغط ";
199
  $l_loggedout_string = "تَمّ قطع الإتصال بالبوابة الأسيرة";
200
  $l_reply_1    = "انتهى وقتك اليومي للإتصال";
201
  $l_reply_2    = "انتهى وقتك الشهري للإتصال";
202
  $l_reply_3    = "محاولة اتصال خارج فترتك المأذونة";
203
  $l_reply_4    = "انتهت مدة صلاحية حسابك";
204
  $l_reply_5    = "لقد استكملت العدد الأقصى للإتصالات المتزامنة";
205
  $l_reply_6    = "استكملت مذة الإتصال المسموحة";
206
  $l_online_time  = "مذة الإتصال";
207
  $l_remaining_time = "الوقت المتبق";
208
  $l_uam_domain = ":المواقع المسموحة ";
209
  $l_autoregistration = "تسجيل ذاتي (SMS)";}
895 richard 210
else if($Language == 'de'){
211
  $l_ChilliError	= "Die Authentifizierung ist erfolgreich durch die Nutzung des Portals erfolgt.";
1349 richard 212
  $l_login		= "Erfolgreiche Authentifizierung.<HR>Schlißen dieses fensters unterbricht die sitzung";
213
  $l_logout		= "Beenden der Verbindung";
214
  $l_loginfailed	= "Authentifizierungsfehler Eigenverbrauch";
215
  $l_loggingin		= "Kennzeichnung auf dem Eigenverbrauch";
895 richard 216
  $l_loggedcont		= "Zutrittskontrolle";
1349 richard 217
  $l_loggedout		= "Ihre Sitzung ist geschlossen";
895 richard 218
  $l_user		= "Benutzer";
219
  $l_password		= "Passwort";
220
  $l_wait		= "Bitte warten Sie einen Moment ...";
221
  $l_onlinetime		= "Online-Zeit:";
1349 richard 222
  $l_remainingtime	= "Abmelden:";
223
  $l_encrypted		= "Die Öffnung muß der Anschluß Zahlen";
224
  $l_boutonO		= "Authentifizierung";
895 richard 225
  $l_boutonF		= "Schließen";
930 richard 226
  $l_loggedin_stringl1	= "Information System Security";
1349 richard 227
  $l_loggedin_stringl2	= "Dieses Portal wurde eingerichtet, um ordnungsgemäß die Rückverfolgbarkeit, der Zurechenbarkeit und der Nicht-Anerkennung der Verbindungen.";
228
  $l_loggedin_stringl3	= "Ihre Tätigkeit im Netzwerk registriert ist nach Schutz der Privatsphäre.";
229
  $l_loggedin_stringl4	= "Die gespeicherten Daten nicht pouront genutzt werden, dass von einer Justizbehörde im Rahmen einer Untersuchung.";
230
  $l_loggedin_stringl5	= "Diese Daten werden automatisch gelöscht nach einem Jahr.";
231
  $l_loggedin_stringl6	= "Click <a href='$alcasarpath'>here</a> to change your password or to integrate the security certificate in your browser";
232
  $l_loggedout_string	= "Trennung des Portals erfolgt Gefangener!";
233
  $l_reply_1		= "Your daily connexion time has been reached";
234
  $l_reply_2		= "Your monthly connexion time has been reached";
235
  $l_reply_3		= "You try to connect outside of your allowed timespan";
236
  $l_reply_4		= "your account expired";
237
  $l_reply_5		= "You have reached the maximum number of simultaneous logins";
238
  $l_reply_6		= "Your authorized connexion time has been reached";
930 richard 239
  $l_online_time	= "Online-zeit";
240
  $l_remaining_time	= "Restzeit";
1349 richard 241
  $l_uam_domain		= "Autorisierten websites : ";
242
  $l_autoregistration   = "Automatische registrierung";}
895 richard 243
else if($Language == 'nl'){
244
  $l_ChilliError	= "De authenticatie moet een succes worden via de captive portal dienst.";
245
  $l_login		= "Succesvolle authenticatie.<HR>Dit venster te sluiten onderbreekt uw sessie.";
246
  $l_logout		= "Slotkoers verbinding";
247
  $l_loginfailed	= "Authenticatie mislukt";
248
  $l_loggingin		= "Identificatie van de captive-portaal";
249
  $l_loggedcont		= "toegangscontrole";
250
  $l_loggedout		= "Uw sessie is gesloten";
251
  $l_user		= "Gebruiker";
252
  $l_password		= "Wachtwoord";
253
  $l_wait		= "Wacht een moment ...";
254
  $l_onlinetime		= "Sluit tijd:";
255
  $l_remainingtime	= "Verbreking in:";
256
  $l_encrypted		= "De opening moet gebruiken gecodeerde verbinding";
257
  $l_boutonO		= "Authenticatie";
258
  $l_boutonF		= "Sluiten";
930 richard 259
  $l_loggedin_stringl1	= "Information System Security";
260
  $l_loggedin_stringl2	= "Het portaal werd opgericht verordeningen om de traceerbaarheid, verantwoordelijkheid en onloochenbaarheid van de verbindingen.";
261
  $l_loggedin_stringl3	= "Uw activiteit op het netwerk is geregistreerd in overeenstemming met de persoonlijke levenssfeer.";
262
  $l_loggedin_stringl4	= "De geregistreerde gegevens kunnen worden kunnen worden bediend door een rechterlijke instantie in de loop van een onderzoek.";
263
  $l_loggedin_stringl5	= "Deze gegevens worden automatisch verwijderd na een jaar.";
264
  $l_loggedin_stringl6	= "Click <a href='$alcasarpath'>here</a> to change your password or to integrate the security certificate in your browser";
265
  $l_loggedout_string	= "Logout gemaakt intern portaal!";
266
  $l_reply_1 		= "Your daily connexion time has been reached";
267
  $l_reply_2		= "Your monthly connexion time has been reached";
268
  $l_reply_3		= "You try to connect outside of your allowed timespan";
269
  $l_reply_4		= "your account expired";
270
  $l_reply_5		= "You have reached the maximum number of simultaneous logins";
271
  $l_reply_6		= "Your authorized connexion time has been reached";
272
  $l_online_time	= "Online tijd";
273
  $l_remaining_time	= "Reterende tijd";
1349 richard 274
  $l_uam_domain		= "Geautoriseerde website : ";
275
  $l_autoregistration   = "Automatische registratie";}
895 richard 276
else if($Language == 'fr'){
925 richard 277
  $l_ChilliError	= "L'authentification doit être réussie sur le portail captif.";
278
  $l_login		= "Authentification réussie.<HR>La fermeture de cette fenêtre interrompt votre session.";
895 richard 279
  $l_logout		= "Fermeture de la session";
280
  $l_loginfailed	= "Echec d'authentification";
281
  $l_loggingin		= "Identification sur le portail captif";
925 richard 282
  $l_loggedcont		= "Contrôle d'accès";
895 richard 283
  $l_loggedout		= "Votre session est fermée";
284
  $l_user		= "Identifiant";
285
  $l_password		= "Mot de passe";
286
  $l_wait		= "Patientez un instant ...";
287
  $l_onlinetime		= "Temps de connexion:";
288
  $l_remainingtime	= "Deconnexion dans :";
925 richard 289
  $l_encrypted		= "La connexion avec le portail doit être chiffrée";
895 richard 290
  $l_boutonO		= "Authentification";
291
  $l_boutonF		= "Fermer";
930 richard 292
  $l_loggedin_stringl1	= "Sécurité des Systèmes d'Information";
293
  $l_loggedin_stringl2	= "Ce contrôle a été mis en place pour assurer réglementairement la traçabilité, l'imputabilité et la non-répudiation des connexions.";
294
  $l_loggedin_stringl3	= "Votre activité sur le réseau est enregistrée conformément au respect de la vie privée.";
295
  $l_loggedin_stringl4	= "Les données enregistrées ne pourront être exploitées que par une autorité judiciaire dans le cadre d'une enquête.";
296
  $l_loggedin_stringl5	= "Ces données seront automatiquement supprimées au bout d'un an.";
297
  $l_loggedin_stringl6	= "Cliquez <a href='$alcasarpath'>ici</a> pour changer votre mot de passe ou pour intégrer le certificat de sécurité à votre navigateur";
298
  $l_loggedout_string	= "Déconnexion du portail captif effectuée !";
1331 richard 299
  $l_reply_1		= "Votre durée de connexion journalière a été atteinte";
930 richard 300
  $l_reply_2		= "Votre durée de connexion mensuelle a été atteinte";
301
  $l_reply_3		= "Vous tentez de vous connecter en dehors de votre période autorisée";
302
  $l_reply_4		= "Votre compte a expiré";
303
  $l_reply_5		= "Vous avez atteint le nombre maximum de connexions simultanées";
304
  $l_reply_6		= "Votre durée de connexion autorisée a été atteinte";
305
  $l_online_time	= "Temps de connexion";
306
  $l_remaining_time	= "Temps restant";
1670 richard 307
  $l_uam_domain		= "Sites autorisés : ";
308
  $l_autoregistration	= "Auto enregistrement (sms)";}
895 richard 309
else{
310
  $l_ChilliError	= "The authentication must be successful through the captive portal service.";
311
  $l_login		= "Successful authentication.<HR>Closing this window interrupts your session";
312
  $l_logout		= "Closing connection";
313
  $l_loginfailed	= "Authentication Failed";
314
  $l_loggingin		= "Identification on the captive portal";
315
  $l_loggedcont		= "Access Control";
316
  $l_loggedout		= "Your session is closed";
317
  $l_user		= "User";
318
  $l_password		= "Password";
319
  $l_wait		= "Please wait a moment ...";
320
  $l_onlinetime		= "Connect time:";
321
  $l_remainingtime	= "Disconnection in:";
322
  $l_encrypted		= "The connection with the portal must be encrypted";
323
  $l_boutonO		= "Authentication";
324
  $l_boutonF		= "Close";
930 richard 325
  $l_loggedin_stringl1	= "Information System Security";
326
  $l_loggedin_stringl2	= "That control was set up regulations to ensure traceability, accountability and non-repudiation of connections.";
327
  $l_loggedin_stringl3	= "Your activity on the network is registered in accordance with privacy.";
328
  $l_loggedin_stringl4	= "The recorded data can be able to be operated by a judicial authority in the course of an investigation.";
329
  $l_loggedin_stringl5	= "These data will be automatically deleted after one year.";
330
  $l_loggedin_stringl6	= "Click <a href='$alcasarpath'>here</a> to change your password or to integrate the security certificate in your browser";
331
  $l_loggedout_string	= "Disconnection of the captive portal made";
332
  $l_reply_1		= "Your daily connexion time has been reached";
333
  $l_reply_2		= "Your monthly connexion time has been reached";
334
  $l_reply_3		= "You try to connect outside of your allowed timespan";
335
  $l_reply_4		= "your account expired";
336
  $l_reply_5		= "You have reached the maximum number of simultaneous logins";
337
  $l_reply_6		= "Your authorized connexion time has been reached";
338
  $l_online_time	= "Online time";
339
  $l_remaining_time	= "Remaining time";
1349 richard 340
  $l_uam_domain		= "Authorized websites : ";
1670 richard 341
  $l_autoregistration	= "Auto registration (sms)";
1452 richard 342
}
895 richard 343
 
344
# If https not use, tell it's wrong
345
if (!(isset($_SERVER['HTTPS'])&&($_SERVER['HTTPS'] == 'on'))) {
925 richard 346
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">
895 richard 347
<html>
348
<head>
349
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
350
  <title>$l_loggedcont</title>
351
  <meta http-equiv=\"Cache-control\" content=\"no-cache\">
352
  <meta http-equiv=\"Pragma\" content=\"no-cache\">
353
</head>
354
<body bgColor = 'white'>
355
  <h1 style=\"text-align: center;\">$l_loginfailed</h1>
356
  <center>$l_encrypted</center>
357
</body>
358
</html>";
359
    exit(0);
360
}
361
 
362
# Read form parameters which we care about
1314 richard 363
# avoid the "user as a MAC address" attempts
364
if ((isset($_POST['UserName'])) && (preg_match('/^([0-9A-F]{2}-){5}[0-9A-F]{2}$/',$_POST['UserName'])!=1)){
365
				$username	= $_POST['UserName'];} else {$username="";}
895 richard 366
if (isset($_POST['Password'])){	$password	= $_POST['Password'];} else {$password="";}
367
if (isset($_POST['challenge'])){$challenge	= $_POST['challenge'];} else {$challenge="";}
368
if (isset($_POST['button'])){	$button		= $_POST['button'];} else { $button="";}
369
//if (isset($_POST['logout'])){	$logout		= $_POST['logout'];} else {$logout="";}
370
//if (isset($_POST['prelogin'])){	$prelogin	= $_POST['prelogin'];} else {$prelogin="";}
371
if (isset($_POST['res'])){		$res		= $_POST['res'];} else {$res="";}
372
if (isset($_POST['uamip'])){	$uamip		= $_POST['uamip'];} else {$uamip="";}
373
if (isset($_POST['uamport'])){	$uamport	= $_POST['uamport'];} else {$uamport="";}
374
if (isset($_POST['userurl'])){	$userurl	= $_POST['userurl'];} else {$userurl="";}
375
if (isset($_POST['timeleft'])){	$timeleft	= $_POST['timeleft'];} else {$timeleft="";}
376
if (isset($_POST['redirurl'])){	$redirurl	= $_POST['redirurl'];} else {$redirurl="";}
377
 
378
# Read query parameters which we care about
379
if (isset($_GET['res']))		$res		= $_GET['res'];
380
if (isset($_GET['challenge']))	$challenge	= $_GET['challenge'];
381
if (isset($_GET['uamip']))		$uamip		= $_GET['uamip'];
382
if (isset($_GET['uamport']))	$uamport	= $_GET['uamport'];
383
if (isset($_GET['reply'])){		$reply		= $_GET['reply'];} else {$reply="";}
384
if (isset($_GET['userurl']))	$userurl	= $_GET['userurl'];
385
if (isset($_GET['timeleft']))	$timeleft	= $_GET['timeleft'];
386
if (isset($_GET['redirurl']))	$redirurl	= $_GET['redirurl'];
387
 
388
# translation of radius replies
389
if (isset($reply)){
390
	switch(trim ($reply)) {
391
  case 'Your maximum daily usage time has been reached' : $reply = $l_reply_1 ; break;
392
  case 'Your maximum monthly usage time has been reached' : $reply = $l_reply_2 ; break;
393
  case 'You are calling outside your allowed timespan' : $reply = $l_reply_3 ; break;
394
  case 'Password Has Expired' : $reply =  $l_reply_4 ; break;
395
  case 'You are already logged in - access denied' : $reply = $l_reply_5 ; break;
396
  case 'Your maximum never usage time has been reached' : $reply = $l_reply_6 ; break;
397
  }}
398
 
399
# If attempt to login
400
if ("$button" == "$l_boutonO") {
1948 raphael.pi 401
  #correction password length in coova-chilli
402
  #thanks to http://www.stochasticgeometry.ie/2009/09/09/maximum-password-length-in-coova-chilli/
1947 raphael.pi 403
  $hexchal = pack ("H*", $challenge);
895 richard 404
  $newchal = pack ("H*", md5($hexchal . $uamsecret));
1947 raphael.pi 405
 
1948 raphael.pi 406
  # If challenge isn't long enough, repeat it until it is
1947 raphael.pi 407
  while (strlen($newchal) < strlen($password)){
408
                       $newchal .= $newchal;
409
  }
410
 
895 richard 411
  $response = md5("\0" . $password . $newchal);
1947 raphael.pi 412
  $newpwd = pack("a*", $password);
1948 raphael.pi 413
  # Encode plain text password with challenge
1947 raphael.pi 414
  $pappassword = implode ("", unpack("H*", ($newpwd ^ $newchal)));
925 richard 415
  echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">
895 richard 416
<html>
417
<head>
418
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
419
  <title>$l_loggingin</title>
420
  <meta http-equiv=\"Cache-control\" content=\"no-cache\">
421
  <meta http-equiv=\"Pragma\" content=\"no-cache\">
422
  <meta http-equiv=\"refresh\" content=\"0;url=http://$uamip:$uamport/logon?username=$username&password=$pappassword&userurl=$userurl\">
423
  </head>
424
<body bgColor = 'white'>
425
<h1 style=\"text-align: center;\">$l_loggingin</h1>
426
  <center>
427
    $l_wait
428
  </center>
429
</body>
430
</html>";
431
exit(0);
432
}
433
 
434
switch($res) {
435
  case 'success':     $result =  1; break; // If login successful
436
  case 'failed':      $result =  2; break; // If login failed
437
  case 'logoff':      $result =  3; break; // If logout successful
438
  case 'already':     $result =  4; break; // If tried to login while already logged in
439
  case 'notyet':      $result =  5; break; // If not logged in yet
440
  default: $result = 0; // Default: It was not a form request -> client go to login form
441
}
442
 
2010 raphael.pi 443
//check if we need to warn user about the imputability logs.
444
if($result == 1)
445
{
446
        if ((is_file("./acc/manager/lib/sql/drivers/mysql/functions.php"))&&(is_file("/etc/freeradius-web/config.php"))){
447
        include_once("/etc/freeradius-web/config.php");
448
        include_once("./acc/manager/lib/sql/drivers/mysql/functions.php");
2166 tom.houday 449
        $user_uid=da_sql_escape_string($link, $_GET['uid']);
2010 raphael.pi 450
        $sql = "SELECT attribute, value FROM radreply WHERE username='$user_uid'";
451
        $link = @da_sql_pconnect($config); // on affiche pas les erreurs
452
        if ($link){
453
                $res = @da_sql_query($link,$config,$sql); // on affiche pas les erreurs
454
                if ($res){
455
                        while(($row = @da_sql_fetch_array($res,$config))){
456
                                if ($row['attribute'] == "Filter-Id") $filter_id = $row['value']; // on obtient le Filter-Id de l'utilisateur
457
                        }
458
                        if($filter_id[3] == '1')
459
                        {
460
                                #set the fourth bit of filter-id to '0'
461
                                $sql = "set @CurrentFilter=(SELECT value from radreply where username='$user_uid');set @CurrentFilterLeft=(SELECT LEFT(@CurrentFilter,3));set @CurrentFilterRight=(SELECT RIGHT(@CurrentFilter,4));UPDATE radreply SET value = CONCAT((@CurrentFilterLeft),'0', (@CurrentFilterRight)) WHERE username='$user_uid'";
462
                                $res = mysqli_multi_query($link,$sql);
2163 tom.houday 463
                                $user_url = urlencode($_GET['userurl']);
2010 raphael.pi 464
                                header("Location: http://alcasar/index.php?warn=1&url=$user_url");   //we present to user information about imputability logs 
465
                                exit;
466
                        }
467
                }
468
        }
469
        }
470
 
471
}
472
 
473
 
895 richard 474
# Otherwise it was not a form request
475
# Send out an error message
476
if ($result == 0) {	//erreur
925 richard 477
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">
895 richard 478
<html>
479
<head>
480
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
481
  <title>$l_loggingin</title>
482
  <meta http-equiv=\"Cache-control\" content=\"no-cache\">
483
  <meta http-equiv=\"Pragma\" content=\"no-cache\">
484
  <meta http-equiv=\"refresh\" content=\"0;url=http://$uamip:$uamport/prelogin\">
485
  </head>
486
<body bgColor = 'white'>
487
<h1 style=\"text-align: center;\">$l_loggingin</h1>
488
  <center>
489
    $l_wait
490
  </center>
491
</body>
492
</html>";
493
    exit(0);
494
}
495
# Generate the output
925 richard 496
echo "<!DOCTYPE html>
895 richard 497
<html>
498
<head>
499
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
1349 richard 500
  <title>$l_loggingin</title>
501
  <meta http-equiv=\"Cache-control\" content=\"no-cache\">
502
  <meta http-equiv=\"Pragma\" content=\"no-cache\">
503
  <script type=\"text/javascript\" language=\"JavaScript\">
895 richard 504
	alcasar_popup = null;
1346 richard 505
	function popUp(URL) {
506
		if (self.name != \"alcasar_popup\") {
507
			alcasar_popup = window.open(URL, 'alcasar_popup', 'width=500,height=460,directories=no,resizable=no,scrollbars=yes,location=no,toolbar=no,statusbar=no,menubar=no');
508
		}
509
	}
510
	function doOnLoad(result, userurl, redirurl, adminurl, timeleft) {
511
		if ((result == 1)||(result == 4)) {	//success or already
512
			//window.location = userurl;
513
			if (alcasar_popup != null) alcasar_popup.focus();
514
			if (adminurl != ''){
515
				window.location = adminurl;
516
			} else if (redirurl != '') {
517
				window.location = redirurl;
518
				} else if (userurl != '') {
519
					window.location = userurl;
520
				} else {
521
				window.home();
522
			}
523
		}
524
		if ((result == 2) || (result == 3) || result == 5) { //failed or logoff or notyet
525
			if (alcasar_popup != null) alcasar_popup.close();
895 richard 526
			document.form1.UserName.focus();
1346 richard 527
		}
528
	}
529
</script>
895 richard 530
<link rel=\"stylesheet\" href=\"/css/style_intercept.css\" type=\"text/css\">
531
</head>
532
<body onLoad=\"javascript:doOnLoad($result,'$userurl','$redirurl','$adminurl','$timeleft')\">
533
  <center>";
534
if ($result == 2 || $result == 3 || $result == 5) { //failed or logoff or notyet
535
  echo "
536
	<div id=\"logon\">
537
	<h1>$organisme</h1>
538
	<h2>$l_loggedcont</h2>";
539
	if ($result == 2) { //failed
540
		echo "	
541
		<h3>$l_loginfailed</h3>";
542
		if ($reply) {
543
		#traitement du reply ...
544
		echo "<center> $reply <br /><br /></center>";
545
		}
546
	}
1491 franck 547
	if ($userurl == "http://logout/") $userurl="http://www.google.com"; //avoid cyclic logout
895 richard 548
	echo "
549
	<img id=\"logo-alcasar\" src=\"/images/logo-alcasar.png\">
550
	<form name=\"form1\" method=\"post\" action=\"$loginpath\">
551
	<input type=\"hidden\" name=\"challenge\" value=\"$challenge\">
552
	<input type=\"hidden\" name=\"uamip\" value=\"$uamip\">
553
	<input type=\"hidden\" name=\"uamport\" value=\"$uamport\">
554
	<input type=\"hidden\" name=\"userurl\" value=\"$userurl\">
925 richard 555
	<table id=\"boite-logon\">
556
		<tr>
1349 richard 557
			<td width=\"20%\" rowspan=\"4\"><img id=\"logo-organ\" src=\"/images/organisme.png\"></td>
925 richard 558
			<td width=\"30%\" align=\"right\">$l_user</td>
559
			<td width=\"50%\" align=\"left\"><INPUT type=\"text\" maxLength=\"32\" name=\"UserName\" autocomplete=\"off\"></td>
560
		</tr>
561
		<tr>
562
			<td align=\"right\">$l_password</td>
563
			<td align=\"left\"><INPUT maxLength=\"32\" type=\"password\" name=\"Password\" autocomplete=\"off\"></td>
564
		</tr>
1670 richard 565
		";
1349 richard 566
 
1670 richard 567
	echo "	</tr>
2058 raphael.pi 568
			<td height=\"23\"  align=\"left\"><INPUT value=\"$l_boutonO\" type=\"submit\" name=\"button\" onclick=\"window.open('$statuspath', '_blank');\"></td>
1349 richard 569
		";
570
 
1670 richard 571
 
572
	$service_SMS_status=false;
573
	if($service_SMS_status){
574
		echo "	<td><a href=\"./autoregistrationinfo.php\">".$l_autoregistration."</a></td>";
575
	}
576
 
577
	echo "	</tr>
578
	</table>
579
 
925 richard 580
	</form>
1349 richard 581
	<table id=\"boite-info\" cellSpacing=\"0\" cellPadding=\"0\" width=\"80%\">
925 richard 582
		<tr>
583
			<td align=\"center\"><FONT color=\"red\"><B>$l_loggedin_stringl1</B></FONT></td>
584
		</tr>
585
		<tr>
586
			<td align=\"left\">
587
				<ul>
588
					<LI>$l_loggedin_stringl2</LI>
589
					<LI>$l_loggedin_stringl4</LI>
590
					<LI>$l_loggedin_stringl3</LI>
591
					<LI>$l_loggedin_stringl5</LI>
592
					<LI>$l_loggedin_stringl6</LI>
593
				</ul>
594
			</td>
595
		</tr>
596
	</table>";
913 richard 597
 
930 richard 598
// Read the "Domain allowed" file
913 richard 599
$tab=file(DOMAIN_ALLOWED_LIST);
600
if ($tab)  # the file isn't empty
601
	{
925 richard 602
	echo "<div id=\"authorized_domain\">$l_uam_domain";
913 richard 603
	foreach ($tab as $line)
604
		{
605
		if (trim($line) != '') # the line isn't empty
925 richard 606
			{
913 richard 607
			$domain_allowed=explode("#", $line);
925 richard 608
			if (trim($domain_allowed[1]) != ''){
609
				$domain=explode("\"", $domain_allowed[0]);
2044 raphael.pi 610
				#remove every '.' from the beginning of domain
611
                                $domain[1] = ltrim($domain[1], '.');
925 richard 612
				echo "<a href=\"http://".trim($domain[1])."\">".trim($domain_allowed[1])."</a> ";}
613
			}	
913 richard 614
		}
615
	}
925 richard 616
echo "	
617
</div>
618
</center>
895 richard 619
</body>
620
</html>";
621
}
622
exit(0);
623
?>