Windows error 0x00000569, 1385

Detailed Error Information

LOGON_TYPE_NOT_GRANTED[1]

MessageLogon failure: the user has not been granted the requested logon type at this computer.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x80070569.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code1385 (0x0569)

Questions

10votes
1answer

How to have LogonUser not use cached credentials?

i am using LogonUser to validate a user's set of domain credentials. LogonUser(accountName, domain, password, LOGON32_LOGON_NETWORK, LOGON32_PROVIDER_WINNT50, ref token); With disturbing results: LogonType Current Password Old password =========== ============================== ======================== Network Succeeds Succeeds Batch Fails (0x00000569) Fails (invalid password) Interactive Succeeds Fails (invalid password) Failure codes: * 0x00000569: Logon failure: [...] read more
security
winapi
active-directory
authentication
1vote
0answers

Shared Printer on Windows 10

My company is upgrading to Windows 10 from Windows 7. One computer has a printer locally connected to it while other computers would connect remotely. Post 10 Upgrade, only an admin, myself, is able to connect to it. Everyone who isn't an admin is met with 'Windows cannot connect to [...] read more
windows
windows-10
shared-printers
0votes
0answers

Powershell function LogonUser return different Error code when using Schedule Task

I'm using function below in my script to ensure that user are not using specific list of passwords for local account. The function works fine and return "True" with correct username and password and return "False" with correct Error "The user name or password is incorrect" when tested against a [...] read more
windows
powershell
0votes
2answers

Why is the string specified in `LD_PRELOAD` loaded on the memory of setuid executables in RedHat 6.2?

First of all, let me tell you the context. I'm solving problems of the wargame called The lord of the BoF, which is based on RedHat Linux 6.2, which has no address space layout randomization(ASLR), NX bit, ASCII armor, etc.. And the gcc there does not make any dummy when [...] read more
linux
security
memory
ld-preload

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0