Ask a Question related to PHP Development, Design and Development.
-
Toni Van Remortel #1
Get Windows username on Intranet
Hi all,
My Intranet currently runs fine (on a Linux-based server, with Apache,
MySQL and PHP). The mail-form works splendid, except that I like to
catch the users logon-name (so they cannot fake their name).
Is there a way to achieve this, preferable cross-browser.
I'm affraid it won't be possible (security risk).
--
Toni Van Remortel
Netwerkbeheerder HA Dept. Ontwerpwetenschappen
Toni Van Remortel Guest
-
windows username
Hi! I'm a real beginner. Sorry if I ask some stuġid questions :-) My problem is: I have more users on my computer. The system is windows 2000/... -
using Windows authentication within intranet
I would like to set up a web service to use Windows authentication. I understand how to do this in a situation where the client passes a... -
Intranet windows authentication
Hello. I'm currently developing an intranet c# based application. I need to assign a windows login authentication form for users who needs to... -
Getting windows username
I am developing an intranet and was wondering, when a user logs on is there a way to get the username of the windows account in asp.net. I have... -
Intranet and Integrated Windows Authentication
Hey all, I would like to preface my question by stating I am still learning ASP.net and while I am confident in the basics and foundation,... -
Arg #2
Re: Get Windows username on Intranet
Closest I have found to being able to automatically identify who is using a
script is to get their computer name using
$nm=gethostbyaddr($REMOTE_HOST);
It does not tell you who actually used the script but rather what computer
it came from.
The names we give the computers here are the user's last name which makes it
easier to tell who did what, but you could always use a database to keep
track of who has what computer.
You are supposed to be able to get the login name using a signed java applet
somehow, but I have not had the time to figure that one out yet.
The only way I can think of to tell who actually used it would be to have a
sign-in or at least a password for each user and make them use it each time
they send a message.
"Toni Van Remortel" <t.vanremortel@DITISTEVEEL.ha.be> wrote in message
news:cip57c$o04$2@ikaria.belnet.be...> Hi all,
>
> My Intranet currently runs fine (on a Linux-based server, with Apache,
> MySQL and PHP). The mail-form works splendid, except that I like to catch
> the users logon-name (so they cannot fake their name).
>
> Is there a way to achieve this, preferable cross-browser.
>
> I'm affraid it won't be possible (security risk).
> --
> Toni Van Remortel
> Netwerkbeheerder HA Dept. Ontwerpwetenschappen
Arg Guest
-
Colin McKinnon #3
Re: Get Windows username on Intranet
Toni Van Remortel wrote:
It's tricky, but not impossible - you could assign x509 certificates to all> Hi all,
>
> My Intranet currently runs fine (on a Linux-based server, with Apache,
> MySQL and PHP). The mail-form works splendid, except that I like to
> catch the users logon-name (so they cannot fake their name).
>
> Is there a way to achieve this, preferable cross-browser.
>
> I'm affraid it won't be possible (security risk).
your users and setup your webserver to require a cerificate with the right
signatory from the client.
Alternatively - for a quick-fix solution (although it's not very secure) you
could use ident - See the squid website for links to a MS-Windows client.
I don't know if NTLM can be integrated - try google.
HTH
C.
Colin McKinnon Guest
-
Toni Van Remortel #4
Re: Get Windows username on Intranet
Colin McKinnon wrote:
Sounds interesting.> Toni Van Remortel wrote:
>
>>>>Hi all,
>>
>>My Intranet currently runs fine (on a Linux-based server, with Apache,
>>MySQL and PHP). The mail-form works splendid, except that I like to
>>catch the users logon-name (so they cannot fake their name).
>>
>>Is there a way to achieve this, preferable cross-browser.
>>
>>I'm affraid it won't be possible (security risk).
>
> It's tricky, but not impossible - you could assign x509 certificates to all
> your users and setup your webserver to require a cerificate with the right
> signatory from the client.
Just had to remove it due to conflicts with other software on the> Alternatively - for a quick-fix solution (although it's not very secure) you
> could use ident - See the squid website for links to a MS-Windows client.
workstations. But I'll take it in mind again.
Should be possible, I'm trying to get that one compiling. Thanx!> I don't know if NTLM can be integrated - try google.
--
Toni Van Remortel
Netwerkbeheerder HA Dept. Ontwerpwetenschappen
Toni Van Remortel Guest
-
Toni Van Remortel #5
Re: Get Windows username on Intranet
Arg wrote:
Hmm, seems an option. But our workstations just have a logic number> Closest I have found to being able to automatically identify who is using a
> script is to get their computer name using
>
> $nm=gethostbyaddr($REMOTE_HOST);
(students do move sometime ;-)
--
Toni Van Remortel
Netwerkbeheerder HA Dept. Ontwerpwetenschappen
Toni Van Remortel Guest



Reply With Quote

