Questions tagged [sspi]

Use for questions having to do with the Security Support Provider Interface (SSPI) API.

The Security Support Provider Interface () is a Microsoft Windows API used to perform security-related operations such as authentication. It is implemented as a a dynamic-link library (DLL) supplied with the operating system. SSPI is the means by which the operating system loads SSPs (Security Support Providers), such as Kerberos and NTLM, when the system boots. The SSPI is the implementation of the Generic Security Service API () in Windows.

This article, while dated, is a good primer on : Logon and Authentication Technologies

216 questions
0
votes
3 answers

Implement SSL with SSPI: How to start?

I want to implement an SSL client using SSPI. Where can I find step-by-step guides, code examples, etc.? Thanks in advance.
rkellerm
  • 4,862
  • 7
  • 49
  • 85
0
votes
1 answer

Visual Studio fails to link mod_spnego to SSPI

I am trying to compile mod_spnego (http://sourceforge.net/projects/modgssapache/) with SSPI support in Visual C++ 2008 Express Edition. I have managed to get the compiling itself work fine, but now I am stuck at some errors that the linker prints…
user269667
  • 401
  • 1
  • 4
  • 10
0
votes
1 answer

SSPI Negotiate not found

I'm using Windows XP Pro SP3. I want to use SSPI functions in my code. I compiled my code, no error. I set the security package to be used to Negotiate, which is recommended. When I start my program, Negotiate cannot be used because it can't be…
Doo Dee
  • 65
  • 5
0
votes
1 answer

ASP.NET site fail when accessed remotely, 'NT AUTHORITY\ANONYMOUS LOGON'. Accessing SQL Server with domain user of the App Pool

I have an ASP.NET (4.0) site accessed using Window Authentication & Impersonation only (Anoymous Disabled). The SQL Server Connection is done with SSPI, and with the user identity of the Application pool, not with Windows Domain User of the logged…
Gabriel
  • 505
  • 6
  • 10
0
votes
1 answer

MS-Access SSPI error with .adp

I have an old Access project (.adp) that was tied to a SQL Server database using integrated authentication. The .adp is only used this time of year. Since its last use, the SQL Server has been virtualized and patched to current. When I try to open…
jsauri
  • 23
  • 3
0
votes
1 answer

Cannot load InitializeSecurityContext() with GetProcAddress(), "The specified procedure could not be found"

I've been trying to create a program to efficiently validate user credentials locally, without the client and server handling LogonUser() provides. I've ran into trouble getting the InitializeSecurityContext() function from both the security.dll and…
user3476738
  • 176
  • 2
  • 11
0
votes
1 answer

SSPI negotiation result

I cannot find what SSPI function should I have to call to get the type of protocol that Windows picked up after the AcquireCredentialsHandle() with Negotiate option... !?
Stef
  • 3,396
  • 5
  • 34
  • 56
0
votes
1 answer

SSPI negociation dilemma

When SSPI is in "negociate mode", NTLM seems to be the favorite one (a legacy story). But when and why SSPI will consider (and pick) Kerberos ? (As far as I can see, when a client and server are on the same machine, NTLM is picked out)
Stef
  • 3,396
  • 5
  • 34
  • 56
0
votes
1 answer

Using SSPI (NTLM) Api's With Windows AccessCheck() On Vista With UAC

Summary Client (Windows XP SP3) Server (Windows Vista Business SP1) / Running as LocalSystem Service Api Sequence Client - AcquireCredentialsHandle Client - Initializesecuritycontext Server - Acquirecredentialshandle Server -…
Ryan Ackerman
0
votes
2 answers

mod_rewrite no longer taking effect after applying sspi rules in server config

I am creating a project in codeIgniter, using wamp to develop on locally (Apache 2.4). Throughout the project I've had mod_rewrite switched on to remove the index.php that appears in urls in codeigniter by default by using the .htaccess file in the…
haakym
  • 10,296
  • 10
  • 56
  • 90
0
votes
1 answer

Websphere MQ setting up SSPI Kerberos

how can i properly setup Kerberos in Websphere MQ? In the documentation, it says can use SCYEXIT('amqrspin(SCY_KERBEROS)') I suppose this attribute is defined when when create the channels? eg define CHANNEL (...) ....…
dorothy
  • 1,103
  • 4
  • 17
  • 33
0
votes
1 answer

NGINX => APACHE + SSPI

We have an apache server with sspi authorization. We are using mod_auth_sspi. And now we need to proxy our api on another server via nginx. The main problem is how to make NTLM(as i right understand mod_auth_sspi uses it) to work via NGINX. I make…
Sukhanov Niсkolay
  • 1,188
  • 1
  • 9
  • 22
0
votes
0 answers

How to access a shared mailbox using NTLM authentication

I'm trying to access a shared mailbox in Exchange using IMAP but I don't want to store the password in the app so I give a try to NTLM authentication. I was able to do the autentication using the SSPI framework api but now I'm struggling to select…
Luizgrs
  • 4,367
  • 1
  • 18
  • 28
0
votes
1 answer

Novell client and windows SSO

Does the novell gina install a specific security provider that can be used via SSPI? Does it have to called out specifically or is SPNEGO good enough? Will that support single sign on if the novell gina is installed on the remote server?
Tony Lee
0
votes
2 answers

SSL client SSPI error on Windows 7

I wrote a SSL client by C#.NET Win-Forms. I added my certificate (public key) to system root store (by .NET code or manually via Internet Explorer, both works) and it works fine on Windows XP , but on Windows 7 has the following…
losingsleeep
  • 1,769
  • 7
  • 27
  • 45
1 2 3
14
15