Accueil > > > AUTHENTIFICATION WINDOWS
AUTHENTIFICATION WINDOWS
Information sur la source
Description
Bonjour, suite à plusieurs post, je vous propose un bout de code permettant de mettre une forme en début d'appli . Cette forme utilisera le compte windows. Ce code est poster suite à l'echange avec boutemine sur ce même sujet. Je n'ai pas inventé l'eau chaude, puis que j'ai repris une partie. Si vous n'utilisez pas l'authentification windows alors vous devez créer votre propre méthode en plus de celle existante dans le code comme un mode local par exemple. Dans mon cas, j'utilise un fichier xml placé sur un serveur stockant les users et leurs pwd associés cryptés ( à l'aide d' excellentes sources trouvées sur vb france) J'utilise ce mode pour connecter mes utilisateurs via mon interface à une base de données MySQL qui se trouve être un info service. Les identifiants servent aussi à la connexion MySQL. Le sule Hic, c'est lors de la mise à jour du mot de passe sur windows qui n'impacte pas la base MySQL. J'utilise alors l'ancien mot de passe stocké dans le XML et effectué une transaction pour modifier la pwd. Mais c'est une autre histoire. J'espère avoir répondu à ta question boutemine. Bon Dev à tous et toutes. Ce code est sous VB2005 fonctionne avec ou sans active directory. CECI EST MON PREMIER POST, SOYEZ INDULGENT, EN PLUS JE SUIS VIEUX
Source
- Voila ce que vous trouverez dans le module
-
-
- Module mod_environ
-
- ' these declrations are public on purpose
- ' they are use to store your login account
- ' even the login user in not necessary, cause you can retrieve it with GetMyUserName
- ' it's mandatory for the pass
-
- Public MyUserPassword As String = ""
-
- Public Enum LogonType As Integer
- 'This logon type is intended for users who will be interactively using the computer, such as a user being logged on
- 'by a terminal server, remote shell, or similar process.
- 'This logon type has the additional expense of caching logon information for disconnected operations;
- 'therefore, it is inappropriate for some client/server applications,
- 'such as a mail server.
- LOGON32_LOGON_INTERACTIVE = 2
-
- 'This logon type is intended for high performance servers to authenticate plaintext passwords.
- 'The LogonUser function does not cache credentials for this logon type.
- LOGON32_LOGON_NETWORK = 3
-
- 'This logon type is intended for batch servers, where processes may be executing on behalf of a user without
- 'their direct intervention. This type is also for higher performance servers that process many plaintext
- 'authentication attempts at a time, such as mail or Web servers.
- 'The LogonUser function does not cache credentials for this logon type.
- LOGON32_LOGON_BATCH = 4
-
- 'Indicates a service-type logon. The account provided must have the service privilege enabled.
- LOGON32_LOGON_SERVICE = 5
-
- 'This logon type is for GINA DLLs that log on users who will be interactively using the computer.
- 'This logon type can generate a unique audit record that shows when the workstation was unlocked.
- LOGON32_LOGON_UNLOCK = 7
-
- 'This logon type preserves the name and password in the authentication package, which allows the server to make
- 'connections to other network servers while impersonating the client. A server can accept plaintext credentials
- 'from a client, call LogonUser, verify that the user can access the system across the network, and still
- 'communicate with other servers.
- 'NOTE: Windows NT: This value is not supported.
- LOGON32_LOGON_NETWORK_CLEARTEXT = 8
-
- 'This logon type allows the caller to clone its current token and specify new credentials for outbound connections.
- 'The new logon session has the same local identifier but uses different credentials for other network connections.
- 'NOTE: This logon type is supported only by the LOGON32_PROVIDER_WINNT50 logon provider.
- 'NOTE: Windows NT: This value is not supported.
- LOGON32_LOGON_NEW_CREDENTIALS = 9
- End Enum
- Public Enum LogonProvider As Integer
- 'Use the standard logon provider for the system.
- 'The default security provider is negotiate, unless you pass NULL for the domain name and the user name
- 'is not in UPN format. In this case, the default provider is NTLM.
- 'NOTE: Windows 2000/NT: The default security provider is NTLM.
- LOGON32_PROVIDER_DEFAULT = 0
- End Enum
- ' Declare the logon types as constants
- Const LOGON32_LOGON_INTERACTIVE As Long = 2
- Const LOGON32_LOGON_NETWORK As Long = 3
-
- ' Declare the logon providers as constants
- Const LOGON32_PROVIDER_DEFAULT As Long = 0
- Const LOGON32_PROVIDER_WINNT50 As Long = 3
- Const LOGON32_PROVIDER_WINNT40 As Long = 2
- Const LOGON32_PROVIDER_WINNT35 As Long = 1
-
- Const MAX_ENTRY As Integer = 32768
- Declare Auto Function LogonUser Lib "advapi32.dll" (ByVal lpszUsername As String, _
- ByVal lpszDomain As String, ByVal lpszPassword As String, ByVal dwLogonType As LogonType, _
- ByVal dwLogonProvider As LogonProvider, ByRef phToken As IntPtr) As Integer
- #Region "FUNCTIONS"
- '==========================================================
- ' La deuxième extrait le nom de domaine de l'utilisateur.
- '==========================================================
- Function GetUserDomain() As String
- If TypeOf My.User.CurrentPrincipal Is _
- Security.Principal.WindowsPrincipal Then
- ' L'UTILISATEUR UTILISE L'AUTHENTIFICATION WINDOWS
- ' LE FORMAT DE L'UTILISATEUR EST DU TYPE NOM_DE_DOMAINE\UTILISATEUR
- Dim parts() As String = Split(My.User.Name, "\")
- Dim domain As String = parts(0)
- Return domain
- Else
- ' UTILISATION D'UNE IDENTIFICATION PERSONNALISEE
- Return ""
- End If
- End Function
- '=====================================================================
- ' La première extrait le compte d'ouvertrue de la session WINDOWS
- '=====================================================================
- Function GetUserName() As String
- If TypeOf My.User.CurrentPrincipal Is _
- Security.Principal.WindowsPrincipal Then
- ' L'UTILISATEUR UTILISE L'AUTHENTIFICATION WINDOWS
- ' LE FORMAT DE L'UTILISATEUR EST DU TYPE NOM_DE_DOMAINE\UTILISATEUR
- Dim parts() As String = Split(My.User.Name, "\")
- Dim username As String = parts(1)
- Return username
- Else
- ' UTILISATION D'UNE IDENTIFICATION PERSONNALISEE
- Return My.User.Name
- End If
- End Function
- Public Function ValidateLogin( _
- ByVal Username As String, _
- ByVal Password As String, _
- ByVal Domain As String) As Boolean
-
- ' This is the token returned by the API call
- ' Look forward to a future article covering
- ' the uses of it
- Dim token As IntPtr
-
- ' Call the API
- If Not LogonUser(Username, _
- Domain, _
- Password, _
- LOGON32_LOGON_NETWORK, _
- LOGON32_PROVIDER_DEFAULT, token) = 0 Then
-
- ' Since the API didn't return 0, return TRUE to the caller
- Return True
- Else
- ' Bad credentials, return FALSE
- Return False
- End If
- End Function
- Function CheckWithOtehrSession(ByVal UserName As String, ByVal UserPwd As String) As Boolean
-
- ' WRITE YOUR OWN CODE TO VERIFY THE ACCOUNTS
- End Function
- #End Region
- End Module
Voila ce que vous trouverez dans le module
Module mod_environ
' these declrations are public on purpose
' they are use to store your login account
' even the login user in not necessary, cause you can retrieve it with GetMyUserName
' it's mandatory for the pass
Public MyUserPassword As String = ""
Public Enum LogonType As Integer
'This logon type is intended for users who will be interactively using the computer, such as a user being logged on
'by a terminal server, remote shell, or similar process.
'This logon type has the additional expense of caching logon information for disconnected operations;
'therefore, it is inappropriate for some client/server applications,
'such as a mail server.
LOGON32_LOGON_INTERACTIVE = 2
'This logon type is intended for high performance servers to authenticate plaintext passwords.
'The LogonUser function does not cache credentials for this logon type.
LOGON32_LOGON_NETWORK = 3
'This logon type is intended for batch servers, where processes may be executing on behalf of a user without
'their direct intervention. This type is also for higher performance servers that process many plaintext
'authentication attempts at a time, such as mail or Web servers.
'The LogonUser function does not cache credentials for this logon type.
LOGON32_LOGON_BATCH = 4
'Indicates a service-type logon. The account provided must have the service privilege enabled.
LOGON32_LOGON_SERVICE = 5
'This logon type is for GINA DLLs that log on users who will be interactively using the computer.
'This logon type can generate a unique audit record that shows when the workstation was unlocked.
LOGON32_LOGON_UNLOCK = 7
'This logon type preserves the name and password in the authentication package, which allows the server to make
'connections to other network servers while impersonating the client. A server can accept plaintext credentials
'from a client, call LogonUser, verify that the user can access the system across the network, and still
'communicate with other servers.
'NOTE: Windows NT: This value is not supported.
LOGON32_LOGON_NETWORK_CLEARTEXT = 8
'This logon type allows the caller to clone its current token and specify new credentials for outbound connections.
'The new logon session has the same local identifier but uses different credentials for other network connections.
'NOTE: This logon type is supported only by the LOGON32_PROVIDER_WINNT50 logon provider.
'NOTE: Windows NT: This value is not supported.
LOGON32_LOGON_NEW_CREDENTIALS = 9
End Enum
Public Enum LogonProvider As Integer
'Use the standard logon provider for the system.
'The default security provider is negotiate, unless you pass NULL for the domain name and the user name
'is not in UPN format. In this case, the default provider is NTLM.
'NOTE: Windows 2000/NT: The default security provider is NTLM.
LOGON32_PROVIDER_DEFAULT = 0
End Enum
' Declare the logon types as constants
Const LOGON32_LOGON_INTERACTIVE As Long = 2
Const LOGON32_LOGON_NETWORK As Long = 3
' Declare the logon providers as constants
Const LOGON32_PROVIDER_DEFAULT As Long = 0
Const LOGON32_PROVIDER_WINNT50 As Long = 3
Const LOGON32_PROVIDER_WINNT40 As Long = 2
Const LOGON32_PROVIDER_WINNT35 As Long = 1
Const MAX_ENTRY As Integer = 32768
Declare Auto Function LogonUser Lib "advapi32.dll" (ByVal lpszUsername As String, _
ByVal lpszDomain As String, ByVal lpszPassword As String, ByVal dwLogonType As LogonType, _
ByVal dwLogonProvider As LogonProvider, ByRef phToken As IntPtr) As Integer
#Region "FUNCTIONS"
'==========================================================
' La deuxième extrait le nom de domaine de l'utilisateur.
'==========================================================
Function GetUserDomain() As String
If TypeOf My.User.CurrentPrincipal Is _
Security.Principal.WindowsPrincipal Then
' L'UTILISATEUR UTILISE L'AUTHENTIFICATION WINDOWS
' LE FORMAT DE L'UTILISATEUR EST DU TYPE NOM_DE_DOMAINE\UTILISATEUR
Dim parts() As String = Split(My.User.Name, "\")
Dim domain As String = parts(0)
Return domain
Else
' UTILISATION D'UNE IDENTIFICATION PERSONNALISEE
Return ""
End If
End Function
'=====================================================================
' La première extrait le compte d'ouvertrue de la session WINDOWS
'=====================================================================
Function GetUserName() As String
If TypeOf My.User.CurrentPrincipal Is _
Security.Principal.WindowsPrincipal Then
' L'UTILISATEUR UTILISE L'AUTHENTIFICATION WINDOWS
' LE FORMAT DE L'UTILISATEUR EST DU TYPE NOM_DE_DOMAINE\UTILISATEUR
Dim parts() As String = Split(My.User.Name, "\")
Dim username As String = parts(1)
Return username
Else
' UTILISATION D'UNE IDENTIFICATION PERSONNALISEE
Return My.User.Name
End If
End Function
Public Function ValidateLogin( _
ByVal Username As String, _
ByVal Password As String, _
ByVal Domain As String) As Boolean
' This is the token returned by the API call
' Look forward to a future article covering
' the uses of it
Dim token As IntPtr
' Call the API
If Not LogonUser(Username, _
Domain, _
Password, _
LOGON32_LOGON_NETWORK, _
LOGON32_PROVIDER_DEFAULT, token) = 0 Then
' Since the API didn't return 0, return TRUE to the caller
Return True
Else
' Bad credentials, return FALSE
Return False
End If
End Function
Function CheckWithOtehrSession(ByVal UserName As String, ByVal UserPwd As String) As Boolean
' WRITE YOUR OWN CODE TO VERIFY THE ACCOUNTS
End Function
#End Region
End Module
Conclusion
Il est assez simple d'implenter ce code sur une splashscreen pour l'identification et donner ainsi tel ou tel droit pour les users.
Historique
- 01 septembre 2008 21:02:28 :
- add comments
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
Authentification automatique sur domaine ( login + password ) windows 2003 server [ par samfisher1726 ]
Bonjour a touss'il vous plait , toujours dans le cadre de mon projet de stage , je me dois d'automatiser la tache d'identification sur le domaine de t
Savoir si un utilisateur a saisi son password au login sous windows 95 [ par Derrick soft ]
Bonjour,Petite question sous windows 95. Suite à la mise en place d'une stratégie système, je voulais savoir si il était possible de savoir si un util
Login de Windows NT [ par Kelemvor ]
Comment faire pour que la procédure de login se fasse automatiquement dans Windows NT avec mon nom d'utilisateur et mon mot de passe, lors du démarrag
*Windows XP Familiale (Fenetre Session) [ par Cpapy ]
Bonjour à tous, A la fin du chargement de Windows XP la fenêtre Session s'affiche. QUESTION: Comment supprimer l'affichage de cette
Script pour afficher la fenêtre "Fermeture de session Windows" [ par childerik ]
Salut. Tout est dans le titre : je cherche un script (vb*, bat, etc...) qui affiche cette boite de dialogue sous XPay : <IMG title=http://
récupérer nom de session windows (différent du nom user windows) [ par jlb92400 ]
Bonjour à tous. Heureuse année 2006.Je sais comment récupérer le nom de l'utilisateur windows (par l'API GetUserName ou plus simpl
Récupérer user session windows mais.... [ par Marianne108 ]
Bonjour dans un .exe je récupére le user de la session avec GetUserName mais lorsque je lance cet .exe sous l'administrateur TOTO ( exécuter en tant
Windows Authentication [ par MrOsmose ]
Bonjour, j'ai fouiller un peu partout ou je pouvais, mais je n'ai jusqu'a présent rien trouvé qui convenait a ce que je veux faire.en gros j
VB.NET 2003 [ par eldim ]
Bonjour,J'ai un gros problème : je lance une appli windows par un sub Mainqui me lance un form en showdialog qui s'insère dans le systrayLor
|
Derniers Blogs
TECHDAYS PARIS 2010 : SHAREPOINT 2010 POUR LES DéVELOPPEURSTECHDAYS PARIS 2010 : SHAREPOINT 2010 POUR LES DéVELOPPEURS par ROMELARD Fabrice
Animé par: Laurent Cotton Le développement dans SharePoint 2010 passe par plusieurs axes qui seront évoqués dans cette session, mais plus particulièrement les développements simples lié au besoin Business Business Connectivity Services Ce BCS es...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2010 : PLEINIèRE DERNIER JOURTECHDAYS PARIS 2010 : PLEINIèRE DERNIER JOUR par ROMELARD Fabrice
Cette session est la dernière pleinière de ces 3 jours de TechDays Paris 2010. Généralement, cette troisième journée est plus axée sur l'avenir vu par Microsoft. Après un retour sur l'avenir vu par la Science Fiction ou par ...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice UNE JOLIE-HORLOGE ET PAS QU'UN PEU !UNE JOLIE-HORLOGE ET PAS QU'UN PEU ! par neodante
Pour les possesseurs d'iPhone, ça y est Bijin Tokei - qui se traduit littéralement en Français par " Jolie Horloge " - est arrivé et GRATUITEMENT s'il vous plaît ! Après la version Tokyo, Hokkaido, night club, racing, Gal, "pour les mademoiselles'", . voi...
Cliquez pour lire la suite de l'article par neodante TECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICESTECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICES par ROMELARD Fabrice
Animé par: Gaetan Bouveret et Julien Chomarat Business Connectivity Services (BCS) est dans SharePoint 2010 la version 2 de Business Data Catalog (BDC dans SharePoint 2007). Il s'agit de la solution permettant de visualiser des données provenan...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice [DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE[DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE par orion
Comme de nombreux geek, je suis un grand amateur de série TV et je rate régulièrement des épisodes de mes séries préférés. Une solution s'offre à vous avec ce merveilleux site : Tv Gorge - www.tvgorge.com Moteur de recherche à l'appui, vous pouvez ...
Cliquez pour lire la suite de l'article par orion
Forum
TAILLETAILLE par nounuo74
Cliquez pour lire la suite par nounuo74
Logiciels
DB-MAIN (9.1.0)DB-MAIN (9.1.0)DB-MAIN is a data-modeling and data-architecture tool. It is designed to help developers and anal... Cliquez pour télécharger DB-MAIN Xilisoft DPG Convertisseur (5.1.37.0120)XILISOFT DPG CONVERTISSEUR (5.1.37.0120)Xilisoft DPG Convertisseur offre aux fans de Nintendo DS une bonne solution leur permettant de dé... Cliquez pour télécharger Xilisoft DPG Convertisseur GraphicsGale (2.01.01)GRAPHICSGALE (2.01.01)GraphicsGale est un logiciel de PixelArt avec de nombreuse fonctionnalités permettant de réalisé ... Cliquez pour télécharger GraphicsGale Architecte 3D (Platinum 2010)ARCHITECTE 3D (PLATINUM 2010)Architecte 3D Platinium vous permet de concevoir facilement les plans votre future maison, de l'é... Cliquez pour télécharger Architecte 3D TeamViewer 5 (TeamViewer 5)TEAMVIEWER 5 (TEAMVIEWER 5)Dépanner un ami,expliquer une manipulation devient un jeu d'enfant.
Prise en main d'un autre ord... Cliquez pour télécharger TeamViewer 5
Comparez les prix

HTC Hero
Entre 550€ et 550€
|