1

An php application which required an authentication details as same as windows system. i.e windows login credential and application credentials are same. I need to develop a php application that should automatically logged in with php after a windows successfully logged-in

stumps_k2001
  • 45
  • 1
  • 5

1 Answers1

1

As far as I know there is no way to get the clear text credentials used to log in on Windows. However, if the server on which the PHP application runs is in the same domain as the client machine, it should be possible to use Kerberos tickets or NTLM authentication (the latter might work also without the server being in the same domain as the client machine, but probably requires to use MSIE as client browser) to forward the credentials without explicitly having the clear text password. Several questions mentioned this, for example:

Community
  • 1
  • 1
Ale
  • 1,727
  • 14
  • 26