2990 |
rexy |
1 |
<?php
|
|
|
2 |
|
3003 |
rexy |
3 |
/************************************************************************
|
|
|
4 |
* ALCASAR INSCRIPTION *
|
|
|
5 |
* *
|
|
|
6 |
* By K@M3L 1101130512.1901090409 & T3RRY LaPlateforme_. *
|
|
|
7 |
* V 1.0 June 2021. *
|
|
|
8 |
* *
|
|
|
9 |
* Partie back de la page d'inscription des utilisateurs *
|
|
|
10 |
* Récupère les infos de "email_registration_front.php *
|
|
|
11 |
* - Lit le fichier de configuration /usr/local/etc/alcasar.conf *
|
|
|
12 |
* - Verifie si le login est déjà présent dans l table "radcheck" *
|
|
|
13 |
* - Vérifie si le mail est présent dans la table "userinfo" *
|
|
|
14 |
* - Vérifie que le domaine du mail est bien WLD (optionnel) *
|
|
|
15 |
* - Inscrit l'utilisateur avec un mot de passe aléatoire *
|
|
|
16 |
* - Envoi l'email à l'utilisaeur et à l'admin avec la date et IP *
|
|
|
17 |
* *
|
|
|
18 |
*************************************************************************/
|
2990 |
rexy |
19 |
|
|
|
20 |
if (is_file("acc/manager/lib/langues.php"))
|
|
|
21 |
include("acc/manager/lib/langues.php");
|
|
|
22 |
|
|
|
23 |
if(!isset($create)) $create=0;
|
|
|
24 |
if(!isset($show)) $show=0;
|
|
|
25 |
if(!isset($login)) $login = '';
|
|
|
26 |
if(!isset($cn)) $cn = '';
|
|
|
27 |
if(!isset($mail)) $mail = '';
|
|
|
28 |
if(!isset($langue_imp)) $langue_imp = '';
|
|
|
29 |
if(!isset($selected)) $selected = array();
|
|
|
30 |
if(!isset($selected['='])) $selected['='] = '';
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
require('/etc/freeradius-web/config.php');
|
|
|
34 |
require('acc/manager/lib/attrshow.php');
|
|
|
35 |
require('acc/manager/lib/defaults.php');
|
|
|
36 |
|
|
|
37 |
if (false && /* Hide operator column */ $config['general_lib_type'] == 'sql' && $config['sql_use_operators'] == 'true') {
|
|
|
38 |
$colspan = 2;
|
|
|
39 |
$show_ops = 1;
|
|
|
40 |
require('acc/manager/lib/operators.php');
|
|
|
41 |
} else {
|
|
|
42 |
$show_ops = 0;
|
|
|
43 |
$colspan = 1;
|
|
|
44 |
}
|
|
|
45 |
|
|
|
46 |
if (is_file("acc/manager/lib/sql/drivers/$config[sql_type]/functions.php"))
|
|
|
47 |
require("acc/manager/lib/sql/drivers/$config[sql_type]/functions.php");
|
|
|
48 |
else{
|
|
|
49 |
echo "<b>Could not include SQL library</b><br />\n";
|
|
|
50 |
exit();
|
|
|
51 |
}
|
|
|
52 |
|
|
|
53 |
require('acc/manager/lib/functions.php');
|
|
|
54 |
if ($config['sql_use_operators'] == 'true'){
|
|
|
55 |
include_once("acc/manager/lib/operators.php");
|
|
|
56 |
$text = ',op';
|
|
|
57 |
$passwd_op = ",':='";
|
|
|
58 |
}
|
|
|
59 |
|
|
|
60 |
$da_abort=0;
|
|
|
61 |
$op_val2 = '';
|
|
|
62 |
|
|
|
63 |
|
|
|
64 |
function GenPassword($nb_car="8")
|
|
|
65 |
{
|
|
|
66 |
// Random password
|
|
|
67 |
$password = "";
|
|
|
68 |
$chaine = "aAzZeErRtTyYuUIopP152346897mMLkK";
|
|
|
69 |
$chaine .= "jJhHgGfFdDsSqQwWxXcCvVbBnN152346897";
|
|
|
70 |
while($nb_car != 0) {
|
|
|
71 |
//$i = rand(0,71);
|
|
|
72 |
// Bug corrigé
|
|
|
73 |
$i = rand(0,66);
|
|
|
74 |
$password .= $chaine[$i];
|
|
|
75 |
$nb_car--;
|
|
|
76 |
}
|
|
|
77 |
return $password;
|
|
|
78 |
}
|
|
|
79 |
|
|
|
80 |
// Lecture du fichier de configuration, récupération des listes WLD et l'email de l'admin
|
3003 |
rexy |
81 |
$alcasar_Conf_File = "/usr/local/etc/alcasar.conf";
|
|
|
82 |
if (is_file ($alcasar_Conf_File)){
|
|
|
83 |
$tab=file($alcasar_Conf_File);
|
2990 |
rexy |
84 |
if ($tab){
|
|
|
85 |
foreach ($tab as $line){
|
|
|
86 |
$field=explode("=", $line);
|
|
|
87 |
switch ($field[0]){
|
3003 |
rexy |
88 |
case 'MAIL_WHITEDOMAIN':
|
2990 |
rexy |
89 |
$whiteDomain = explode(" ", strtolower(trim($field[1])));
|
|
|
90 |
break;
|
3003 |
rexy |
91 |
case 'MAIL_ADMIN':
|
2990 |
rexy |
92 |
$adminMail = $field[1];
|
|
|
93 |
break;
|
|
|
94 |
}
|
|
|
95 |
}
|
|
|
96 |
}
|
|
|
97 |
}
|
|
|
98 |
|
|
|
99 |
if(isset($_POST['Fmail'])){
|
|
|
100 |
|
|
|
101 |
extract($_POST);
|
|
|
102 |
|
|
|
103 |
$Fmail = htmlentities(strtolower(trim($Fmail)));
|
|
|
104 |
|
|
|
105 |
if(!filter_var($Fmail, FILTER_VALIDATE_EMAIL)){
|
|
|
106 |
echo "<b>L'adresse email est invalide</b><br />\n";
|
|
|
107 |
exit();
|
|
|
108 |
}
|
|
|
109 |
|
|
|
110 |
// on récupère le nom de domaine du mail@domain.com
|
|
|
111 |
list($user, $domain) = explode('@', $Fmail);
|
|
|
112 |
|
|
|
113 |
// on vérifie si le domaine est dans la WLD, sinon on bloque
|
|
|
114 |
if (!empty($whiteDomain)){
|
|
|
115 |
if (!in_array($domain, $whiteDomain)){
|
|
|
116 |
echo "Le domaine $domain n'est pas autorisé";
|
|
|
117 |
exit();
|
|
|
118 |
}
|
|
|
119 |
}
|
|
|
120 |
|
|
|
121 |
$login = $Fmail;
|
|
|
122 |
|
|
|
123 |
// si le login est présent
|
|
|
124 |
$link = @da_sql_pconnect($config);
|
|
|
125 |
if ($link) {
|
|
|
126 |
$sql = "SELECT id FROM $config[sql_check_table] WHERE username = '$login';";
|
|
|
127 |
$res = @da_sql_query($link,$config, $sql);
|
|
|
128 |
}
|
|
|
129 |
|
|
|
130 |
$login_check = da_sql_num_rows($res,$config);
|
|
|
131 |
|
|
|
132 |
// da_sql_close($link,$config)
|
|
|
133 |
|
|
|
134 |
// si le mail est présent
|
|
|
135 |
$link = @da_sql_pconnect($config);
|
|
|
136 |
if ($link) {
|
|
|
137 |
$sql = "SELECT id FROM $config[sql_user_info_table] WHERE mail = '$Fmail';";
|
|
|
138 |
$res = @da_sql_query($link,$config, $sql);
|
|
|
139 |
}
|
|
|
140 |
|
|
|
141 |
$email_check = da_sql_num_rows($res,$config);
|
|
|
142 |
|
|
|
143 |
// da_sql_close($link,$config)
|
|
|
144 |
|
|
|
145 |
|
|
|
146 |
if($login_check > 0) {
|
|
|
147 |
//Adresse email utilisée en tant que login
|
|
|
148 |
echo "<b>L'adresse email est déjà utilisée.</b><br />\n";
|
|
|
149 |
} else if($email_check > 0) {
|
|
|
150 |
echo "<b>L'adresse mail est déjà utilisée.</b><br />\n";
|
|
|
151 |
} else {
|
|
|
152 |
|
|
|
153 |
$password = GenPassword();
|
|
|
154 |
|
|
|
155 |
// si on ajoute des inputs pour les infos user
|
|
|
156 |
/* $Fcn = "$prenom".".$nom";
|
|
|
157 |
$Fou = "";
|
|
|
158 |
$Fhomephone = "";
|
|
|
159 |
$Ftelephonenumber = "";
|
|
|
160 |
$Fmobile = "";
|
|
|
161 |
*/
|
|
|
162 |
|
|
|
163 |
$link = da_sql_pconnect($config);
|
|
|
164 |
if ($link){
|
|
|
165 |
mysqli_set_charset($link,"utf8");
|
|
|
166 |
if (is_file("acc/manager/lib/crypt/$config[general_encryption_method].php")){
|
|
|
167 |
include_once("acc/manager/lib/crypt/$config[general_encryption_method].php");
|
|
|
168 |
|
|
|
169 |
$passwd = da_encrypt($password);
|
|
|
170 |
$passwd = da_sql_escape_string($link, $passwd);
|
|
|
171 |
$res = da_sql_query($link,$config,
|
|
|
172 |
"INSERT INTO $config[sql_check_table] (attribute,value,username $text)
|
|
|
173 |
VALUES ('$config[sql_password_attribute]','$passwd','$login' $passwd_op);");
|
|
|
174 |
if (!$res || !da_sql_affected_rows($link,$res,$config)){
|
|
|
175 |
echo "<b>Erreur lors de la création de l'utilisateur $login: " . da_sql_error($link,$config) . "</b><br />\n";
|
|
|
176 |
$da_abort=1;
|
|
|
177 |
}
|
|
|
178 |
|
|
|
179 |
if ($config['sql_use_user_info_table'] == 'true' && !$da_abort){
|
|
|
180 |
$res = da_sql_query($link,$config,
|
|
|
181 |
"SELECT username FROM $config[sql_user_info_table] WHERE
|
|
|
182 |
username = '$login';");
|
|
|
183 |
if ($res){
|
|
|
184 |
if (!da_sql_num_rows($res,$config)){
|
|
|
185 |
$Fcn = (isset($Fcn)) ? da_sql_escape_string($link, $Fcn) : '';
|
|
|
186 |
$Fmail = (isset($Fmail)) ? da_sql_escape_string($link, $Fmail) : '';
|
|
|
187 |
$Fou = (isset($Fou)) ? da_sql_escape_string($link, $Fou) : '';
|
|
|
188 |
$Fhomephone = (isset($Fhomephone)) ? da_sql_escape_string($link, $Fhomephone) : '';
|
|
|
189 |
$Ftelephonenumber = (isset($Ftelephonenumber)) ? da_sql_escape_string($link, $Ftelephonenumber) : '';
|
|
|
190 |
$Fmobile = (isset($Fmobile)) ? da_sql_escape_string($link, $Fmobile) : '';
|
|
|
191 |
$res = da_sql_query($link,$config,
|
|
|
192 |
"INSERT INTO $config[sql_user_info_table]
|
|
|
193 |
(username,name,mail,department,homephone,workphone,mobile) VALUES
|
|
|
194 |
('$login','$Fcn','$Fmail','$Fou','$Fhomephone','$Ftelephonenumber','$Fmobile');");
|
|
|
195 |
|
|
|
196 |
if (!$res || !da_sql_affected_rows($link,$res,$config))
|
|
|
197 |
// Erreur sql à supprimer : l'info ne devrait pas être communiquer au client.
|
|
|
198 |
echo "<b>Une erreur s'est produite lors de la création du compte : " . da_sql_error($link,$config) . "</b><br />\n";
|
|
|
199 |
}
|
|
|
200 |
else
|
|
|
201 |
echo "<b>L'utilisateur existe déjà</b><br />\n";
|
|
|
202 |
}
|
|
|
203 |
else
|
|
|
204 |
echo "<b>Une erreur s'est produite lors de la création du compte : " . da_sql_error($link,$config) . "</b><br />\n";
|
|
|
205 |
}
|
|
|
206 |
// si on veut ajouter les nouveau utilisateurs a un groupe par défaut, autre que celui par défaut d'alcasar
|
|
|
207 |
if (isset($Fgroup) && $Fgroup != ''){
|
|
|
208 |
$Fgroup = da_sql_escape_string($link, $Fgroup);
|
|
|
209 |
$res = da_sql_query($link,$config,
|
|
|
210 |
"SELECT username FROM $config[sql_usergroup_table]
|
|
|
211 |
WHERE username = '$login' AND groupname = '$Fgroup';");
|
|
|
212 |
if ($res){
|
|
|
213 |
if (!da_sql_num_rows($res,$config)){
|
|
|
214 |
$res = da_sql_query($link,$config,
|
|
|
215 |
"INSERT INTO $config[sql_usergroup_table]
|
|
|
216 |
(username,groupname) VALUES ('$login','$Fgroup');");
|
|
|
217 |
if (!$res || !da_sql_affected_rows($link,$res,$config))
|
|
|
218 |
echo "<b>Impossible d'ajouter l'utilisateur dans le groupe $Fgroup.</b><br />\n";
|
|
|
219 |
}
|
|
|
220 |
else
|
|
|
221 |
echo "<b>L'utilisateur est déjà présent dans le groupe $Fgroup</b><br />\n";
|
|
|
222 |
}
|
|
|
223 |
else
|
|
|
224 |
echo "<b>Impossible d'ajouter l'utilisateur dans le groupe $Fgroup: " . da_sql_error($link,$config) . "</b><br />\n";
|
|
|
225 |
}
|
|
|
226 |
if (!$da_abort){
|
|
|
227 |
if (isset($Fgroup) && $Fgroup != '')
|
|
|
228 |
require('acc/manager/lib/defaults.php');
|
|
|
229 |
foreach($show_attrs as $key => $attr){
|
|
|
230 |
if ($attrmap["$key"] == 'none')
|
|
|
231 |
continue;
|
|
|
232 |
if ($key == "Filter-Id" && $$attrmap["$key"] == "None")
|
|
|
233 |
continue;
|
|
|
234 |
if ($attrmap["$key"] == ''){
|
|
|
235 |
$attrmap["$key"] = $key;
|
|
|
236 |
$attr_type["$key"] = 'replyItem';
|
|
|
237 |
$rev_attrmap["$key"] = $key;
|
|
|
238 |
}
|
|
|
239 |
if (isset($attr_type["$key"]) && $attr_type["$key"] == 'checkItem'){
|
|
|
240 |
$table = "$config[sql_check_table]";
|
|
|
241 |
$type = 1;
|
|
|
242 |
}
|
|
|
243 |
else if (isset($attr_type["$key"]) && $attr_type["$key"] == 'replyItem'){
|
|
|
244 |
$table = "$config[sql_reply_table]";
|
|
|
245 |
$type = 2;
|
|
|
246 |
}
|
|
|
247 |
$val = (isset($_POST[$attrmap["$key"]])) ? $_POST[$attrmap["$key"]] : '';
|
|
|
248 |
$val = da_sql_escape_string($link, $val);
|
|
|
249 |
$op_name = $attrmap["$key"] . '_op';
|
|
|
250 |
$op_val = (isset($$op_name)) ? $$op_name : '';
|
|
|
251 |
if ($op_val != ''){
|
|
|
252 |
$op_val = da_sql_escape_string($link, $op_val);
|
|
|
253 |
if (check_operator($op_val,$type) == -1){
|
|
|
254 |
echo "<b>Invalid operator ($op_val) for attribute $key</b><br />\n";
|
|
|
255 |
continue;
|
|
|
256 |
}
|
|
|
257 |
$op_val2 = ",'$op_val'";
|
|
|
258 |
}
|
|
|
259 |
$chkdef = (isset($default_vals["$key"])) ? check_defaults($val,$op_val,$default_vals["$key"]) : 0;
|
|
|
260 |
if ($val == '' || $chkdef)
|
|
|
261 |
continue;
|
|
|
262 |
$sqlquery = "INSERT INTO $table (attribute,value,username $text)
|
|
|
263 |
VALUES ('$attrmap[$key]','$val','$login' $op_val2);";
|
|
|
264 |
$res = da_sql_query($link,$config,$sqlquery);
|
|
|
265 |
if (!$res || !da_sql_affected_rows($link,$res,$config))
|
|
|
266 |
echo "<b>Query failed for attribute $key: " . da_sql_error($link,$config) . "</b><br />\n";
|
|
|
267 |
}
|
|
|
268 |
}
|
|
|
269 |
|
|
|
270 |
|
|
|
271 |
// L'utilisateur est ajouter dans la radcheck, ses info dans la userinfo, on envoi le mail avec identifiant et passwd
|
|
|
272 |
|
|
|
273 |
$ip = $_SERVER['REMOTE_ADDR'];
|
|
|
274 |
$time = date_create('now')->format('d-m-Y H:i:s');
|
|
|
275 |
$domain = $conf["DOMAIN"];
|
|
|
276 |
$hostname = $conf["HOSTNAME"].'.'.$domain;
|
|
|
277 |
$hostname = "alcasar.laplateforme.io";
|
|
|
278 |
|
|
|
279 |
$to = $Fmail;
|
|
|
280 |
$from = "alcasar@$domain";
|
|
|
281 |
$subject = "Activation de votre compte ALCASAR";
|
|
|
282 |
$message = "<!DOCTYPE html>
|
|
|
283 |
<html>
|
|
|
284 |
<head>
|
|
|
285 |
<meta charset=\"UTF-8\" />
|
|
|
286 |
</head>
|
|
|
287 |
<body>
|
|
|
288 |
Bonjour,<br/><br/>
|
|
|
289 |
|
|
|
290 |
<h3>Bienvenue sur ALCASAR @ $domain</h3>
|
|
|
291 |
<p>Ceci est un email automatique avec vos identifiants, veuillez changer votre mot de passe.<br/>
|
|
|
292 |
|
|
|
293 |
<h4>Indentifiants de connexion:</h4>
|
|
|
294 |
<pre>
|
|
|
295 |
Adresse e-mail : $Fmail
|
|
|
296 |
Login : $login
|
|
|
297 |
Mot de passe : $password
|
|
|
298 |
</pre>
|
|
|
299 |
<p>Rendez-vous sur le portail <a href=\"https://$hostname\">$domain</a></p>
|
|
|
300 |
</body>
|
|
|
301 |
</html>";
|
|
|
302 |
|
|
|
303 |
$header = "From: $from\n";
|
|
|
304 |
$header .= "MIME-Version: 1.0\n";
|
|
|
305 |
$header .= "Content-type: text/html; charset=utf-8\n";
|
|
|
306 |
|
|
|
307 |
if(mail($to, $subject, $message, $header)){
|
|
|
308 |
echo "<center>success : <b>Vous y êtes presque ! $l_user '$login' $l_created</b></center><br />";
|
|
|
309 |
echo "<center>success : <b>Un email contenant vos informations de connexion vient de vous être envoyé.</b></center><br />";
|
|
|
310 |
|
|
|
311 |
|
|
|
312 |
// le mail pour l'uitilisateur est envoyé, si l'admin a configuré son mail, on lui envoi
|
|
|
313 |
// une notification d'inscription avec l'ip, l'heure, et le login de l'utilisateur
|
|
|
314 |
if (!empty($adminMail)){
|
|
|
315 |
$to = $adminMail;
|
|
|
316 |
$from = "alcasar@$domain";
|
|
|
317 |
$subject = "Nouvelle inscription sur ALCASAR";
|
|
|
318 |
$message = "<!DOCTYPE html>
|
|
|
319 |
<html>
|
|
|
320 |
<head>
|
|
|
321 |
<meta charset=\"UTF-8\" />
|
|
|
322 |
</head>
|
|
|
323 |
<body>
|
|
|
324 |
Bonjour,<br/><br/>
|
|
|
325 |
|
|
|
326 |
<p>Ceci est un mail automatique.<br/>
|
|
|
327 |
<h3>Une nouvelle inscription à <strong>ALCASR $domain</strong> a été faite.</h3>
|
|
|
328 |
|
|
|
329 |
<h4>Indentifiants de connexion:</h4>
|
|
|
330 |
<pre>
|
|
|
331 |
Adresse IP : $ip
|
|
|
332 |
Heure : $time;
|
|
|
333 |
Login : $login
|
|
|
334 |
Email : $Fmail
|
|
|
335 |
</pre>
|
|
|
336 |
<p>ALCASAR <a href=\"https://$hostname\">$domain</a></p>
|
|
|
337 |
</body>
|
|
|
338 |
</html>";
|
|
|
339 |
|
|
|
340 |
$header = "From: $from\n";
|
|
|
341 |
$header .= "MIME-Version: 1.0\n";
|
|
|
342 |
$header .= "Content-type: text/html; charset=utf-8\n";
|
|
|
343 |
mail($to, $subject, $message, $header);
|
|
|
344 |
|
|
|
345 |
}
|
|
|
346 |
|
|
|
347 |
|
|
|
348 |
} else {
|
|
|
349 |
//Le mot de passe est généré aléatoirement, si le mail n'est pas envoyé, on supprime le compte de la bdd ou on lui demande d'utiliser la page reset
|
|
|
350 |
/* $link = da_sql_pconnect($config);
|
|
|
351 |
|
|
|
352 |
$res2 = da_sql_query($link,$config,
|
|
|
353 |
"DELETE FROM $config[sql_user_info_table] WHERE username = '$login';");
|
|
|
354 |
|
|
|
355 |
$res3 = da_sql_query($link,$config,
|
|
|
356 |
"DELETE FROM $config[sql_check_table] WHERE username = '$login';");
|
|
|
357 |
|
|
|
358 |
// da_sql_close($link,$config)
|
|
|
359 |
*/
|
|
|
360 |
echo "<b>Erreur lors de l'envoi du mail, veuillez renouveler votre inscription. Utilisez le formulaire de réinitialisation, ou contactez votre administrateur.</b><br />\n";
|
|
|
361 |
}
|
|
|
362 |
}
|
|
|
363 |
else // Could not open encryption library file
|
|
|
364 |
echo "<b>Erreur lors de la création du compte</b><br />\n";
|
|
|
365 |
}
|
|
|
366 |
else // Could not connect to SQL database
|
|
|
367 |
echo "<b>Erreur lors de la création du compte</b><br />\n";
|
|
|
368 |
}
|
|
|
369 |
}
|
|
|
370 |
?>
|