Security Support Provider Interface

From Wikipedia, the free encyclopedia
(Redirected from SSPI)

Security Support Provider Interface (SSPI) is a component of Windows API that performs security-related operations such as authentication.

SSPI functions as a common interface to several Security Support Providers (SSPs):[1] A Security Support Provider is a dynamic-link library (DLL) that makes one or more security packages available to apps.

Providers[edit]

The following SSPs are included in Windows:

  • NTLMSSP (msv1_0.dll) – Introduced in Windows NT 3.51. Provides NTLM challenge/response authentication for Windows domains prior to Windows 2000 and for systems that are not part of a domain.[2]
  • Kerberos (kerberos.dll) – Introduced in Windows 2000 and updated in Windows Vista to support AES.[3] Performs authentication for Windows domains in Windows 2000 and later.[4]
  • NegotiateSSP (secur32.dll) – Introduced in Windows 2000. Provides single sign-on capability, sometimes referred to as Integrated Windows Authentication (especially in the context of IIS).[5] Prior to Windows 7, it tries Kerberos before falling back to NTLM. On Windows 7 and later, NEGOExts is introduced, which negotiates the use of installed custom SSPs which are supported on the client and server for authentication.
  • Secure Channel (schannel.dll) – Introduced in Windows 2000 and updated in Windows Vista to support stronger AES encryption and ECC[6] This provider uses SSL/TLS records to encrypt data payloads.
  • TLS/SSLPublic key cryptography SSP that provides encryption and secure communication for authenticating clients and servers over the internet.[7] Updated in Windows 7 to support TLS 1.2.
  • Digest SSP (wdigest.dll) – Introduced in Windows XP. Provides challenge/response based HTTP and SASL authentication between Windows and non-Windows systems where Kerberos is not available.[8]
  • CredSSP (credssp.dll) – Introduced in Windows Vista and available on Windows XP SP3. Provides single sign-on and Network Level Authentication for Remote Desktop Services.[9]
  • Distributed Password Authentication (DPA, msapsspc.dll) – Introduced in Windows 2000. Provides internet authentication using digital certificates.[10]
  • Public Key Cryptography User-to-User (PKU2U, pku2u.dll) – Introduced in Windows 7. Provides peer-to-peer authentication using digital certificates between systems that are not part of a domain.

Comparison[edit]

SSPI is a proprietary variant of Generic Security Services Application Program Interface (GSSAPI) with extensions and very Windows-specific data types. It shipped with Windows NT 3.51 and Windows 95 with the NTLMSSP. For Windows 2000, an implementation of Kerberos 5 was added, using token formats conforming to the official protocol standard RFC 1964 (The Kerberos 5 GSSAPI mechanism) and providing wire-level interoperability with Kerberos 5 implementations from other vendors.

The tokens generated and accepted by the SSPI are mostly compatible with the GSS-API so an SSPI client on Windows may be able to authenticate with a GSS-API server on Unix depending on the specific circumstances.

One significant shortcoming of SSPI is its lack of channel bindings, which makes some GSSAPI interoperability impossible.

Another fundamental difference between the IETF-defined GSSAPI and Microsoft's SSPI is the concept of "impersonation". In this model, a server can operate with the full privileges of the authenticated client, so that the operating system performs all access control checks, e.g. when opening new files. Whether these are less privileges or more privileges than that of the original service account depends entirely on the client. In the traditional (GSSAPI) model, when a server runs under a service account, it cannot elevate its privileges, and has to perform access control in a client-specific and application-specific fashion. The obvious negative security implications of the impersonation concept are prevented in Windows Vista by restricting impersonation to selected service accounts.[11] Impersonation can be implemented in a Unix/Linux model using the seteuid or related system calls. While this means an unprivileged process cannot elevate its privileges, it also means that to take advantage of impersonation the process must run in the context of the root user account.

References[edit]

  1. ^ SSP Packages Provided by Microsoft
  2. ^ User Authentication - Security (Windows 2000 Resource Kit Documentation) : MSDN
  3. ^ Kerberos Enhancements in Windows Vista: MSDN
  4. ^ Windows 2000 Kerberos Authentication
  5. ^ "Windows Authentication". Windows Server 2008 R2 and Windows Server 2008 Documentations. Microsoft. Retrieved 2020-08-05 – via Microsoft Docs.
  6. ^ TLS/SSL Cryptographic Enhancements in Windows Vista
  7. ^ Secure Channel: SSP Packages Provided by Microsoft
  8. ^ Microsoft Digest SSP: SSP Packages provided by Microsoft
  9. ^ Credential Security Service Provider and SSO for Terminal Services Logon
  10. ^ DCOM Technical Overview: Security on the Internet
  11. ^ "Windows Service Hardening: AskPerf blog". Archived from the original on 2010-04-02. Retrieved 2009-12-22.

External links[edit]