đź“ś Sujet

đź’­ Fichier Looping

principe

https://cours-info.iut-bm.univ-fcomte.fr/upload/perso/77/rs_S2_BDD/sae/img/sae4_lms-ldap-authentification-normale.png

https://fr.wikipedia.org/wiki/Authentification_forte

rêgle de sécurité

https://cours-info.iut-bm.univ-fcomte.fr/upload/perso/77/rs_S2_BDD/sae/img/sae4_Pyramide-auth.png

Authentifieur

Autorisation

local : LocalStrategy (nodeJs et passport) , exemple flask

authentifieur local

Ă©tape 1

utilisateur (id_utilisateur,login, password, role,  est_actif, nom, email)
INSERTINTO utilisateur(id_utilisateur,login,email,password,role,nom,est_actif)VALUES(1,'admin','[email protected]',
    'sha256$dPL3oH9ug1wjJqva$2b341da75a4257607c841eb0dbbacb76e780f4015f0499bb1a164de2a893fdbf',
    'ROLE_admin','admin','1'),
(2,'client','[email protected]',
    'sha256$1GAmexw1DkXqlTKK$31d359e9adeea1154f24491edaa55000ee248f290b49b7420ced542c1bf4cf7d',
    'ROLE_client','client','1'),
(3,'client2','[email protected]',
    'sha256$MjhdGuDELhI82lKY$2161be4a68a9f236a27781a7f981a531d11fdc50e4112d912a7754de2dfa0422',
    'ROLE_client','client2','1');