Jump to content

Active Directory and sessions/cookies


Eiolon

Recommended Posts

Hello,

I am working on an intranet site and instead of making a membership system and having all employees remember two usernames/passwords, I am making IIS use the active directory database to protect files and directories that are restricted.  So here is my question:

Is there a way to treat active directory usernames as you would with sessions or cookies?  I would like to restrict pages to certain people but I still want to see who makes changes.

Thanks for your help!
Link to comment
https://forums.phpfreaks.com/topic/15932-active-directory-and-sessionscookies/
Share on other sites

If your users have logged on to your network then you can get their username from
[code]
$domain_user = $_SERVER['LOGON_USER'];

echo $domain_user;  // --> domain\username.
[/code]
(Anonymous access must be disabled for this to work)
Can this be then used within the header of index.php and passed to a database to find out what areas they can use (as long as their username is added exactly the same) and create a session for the duration and restrict thier usage throughout?  In one automated process?
How would I go about calling
[code]$domain_user = $_SERVER['LOGON_USER'];[/code]

Then taking of the prepend of the SERVER\ string to be left with just the user name, to query the Database for that user.

Or would it be easier but slower to retrive a list of the users from the database and compare it to the returned $domain_user to see if they exist in the database?
If the domain name is always the same then you could substr() it

or explode it with / being the dilmeter and using the second index...

[code]
<?php
// domain user sample: MyDomainName/SharkBait
$domain_user = substr($_SERVER['LOGON_USER'], 0, 13);

// Or split it up
$domain_user = explode("/", $_SERVER['LOGON_USER']);
$domain_user = $domain_user [1];
?>
[/code]



Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.