Hi,
Which method or tool you have used to protect your processes
did you used this : https://learn.microsoft.com/en-us/windows/win32/services/protecting-anti-malware-services-
any screenshot
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi folks,
We have a protected service which needs to connect to our backend servers through a proxy server which supports only one method of authentication - NTLM. We use CURL to make the connection but inside CURL, the API acquirecredentialshandle--ntlm fails with an error SEC_E_UNSUPPORTED_FUNCTION. When I make the same call from the same service NOT running as protected process, the call succeeds.
The error is being returned from within the process i.e., LSASS is not being called in the failure case. My only guess so far is that probably protected processes are not allowed to use NTLM but I can't find it stated anywhere.
Please help.
Thanks.
Hi,
Which method or tool you have used to protect your processes
did you used this : https://learn.microsoft.com/en-us/windows/win32/services/protecting-anti-malware-services-
any screenshot
Hi @pkk077
SEC_E_UNSUPPORTED_FUNCTION indicates a potential mismatch between security policy settings on the client and server computers. I am not sure that protected processes are not allowed to use NTLM.
But for the stated error message ensure that the "Network security: Minimum session security for NTLM SSP based (including secure RPC) clients" policy settings on the computers from which users log on are the same as "Network security: Minimum session security for NTLM SSP based (including secure RPC) servers" policy settings on the server.
On your Group Policy Editor, expand Local Policies under Computer Configuration and select Security Options. Scroll Down and find the following policies:
-Network security: Minimum session security for NTLM SSP based (including secure RPC) clients
-Network security: Minimum session security for NTLM SSP based (including secure RPC) servers
Change both policies to have "Require 128-bit encryption" checked
Hope this resolves your Query!!
--
--If the reply is helpful, please Upvote and Accept it as an answer–