Questions tagged [winlogon]

Winlogon is the component of Microsoft Windows operating systems that is responsible for handling the secure attention sequence.

Winlogon is the component of Microsoft Windows operating systems that is responsible for handling the secure attention sequence, loading the user profile on logon, and optionally locking the computer when a screensaver is running (requiring another authentication step). The actual obtainment and verification of user credentials is left to other components. Winlogon is a common target for several threats that could modify its function and memory usage. Increased memory usage for this process might indicate that it has been "hijacked". In Windows Vista and later operating systems, Winlogon's roles and responsibilities have changed significantly.

192 questions
4
votes
2 answers

Programmatic Windows user profile creation

I am trying to do something similar to what the user who asked this question is trying to do: HTTPS Request From a Credential Provider DLL Concerning the components of a user profile, I found this. What is the minimum profile that Windows will…
beatgammit
  • 19,817
  • 19
  • 86
  • 129
4
votes
1 answer

how can i interact in windows (xp, vista, 7) welcome screen or locked screen like a VNC or Dame Ware

im trying to make a support software in c#.net like a VNC or Dame Ware and i dont know how to send input event to login or locked screen in windows (xp, vista and 7)
user648324
  • 41
  • 1
4
votes
1 answer

Take screenshot of desktop when Windows is locked (Win+L)

I want to take a screenshot of desktop while Windows is locked (with Win+L). Standard methods make a black screen, with code of pixel: COLORREF color = GetPixel(hdc, x, y); equal -1. Neither a user mode program nor a service could capture a useful…
Evgeny Bechkalo
  • 109
  • 1
  • 9
4
votes
1 answer

How to create a custom logon Windows screen in C#?

I would like to implement a custom login screen (with a custom login method, say, fingerprint, or something else) on a relatively recent Windows machine (7, 8, or 10). Somehow I couldn't find a real description of this topic, I either wound up at…
D__
  • 239
  • 3
  • 13
4
votes
1 answer

Token delegation using LOGON32_LOGON_NETWORK_CLEARTEXT

How safe is it to use LOGON32_LOGON_NETWORK_CLEARTEXT? We have the following scenario: Web server A is using Win32 LogonUser. Then it needs to invoke an asmx method on server B. If the used logon type is LOGON32_LOGON_INTERACTIVE it works well.…
ewolfman
  • 361
  • 3
  • 4
  • 18
4
votes
1 answer

CreateEvent from Windows-7 Logon Screen

I'm asking this question because it turns out that there's some difficulty in writing a screensaver app in Delphi that's capable of running from the Logon screen. See question: Windows 7 logon screensaver in Delphi I've narrowed down the problem (or…
Disillusioned
  • 14,635
  • 3
  • 43
  • 77
4
votes
8 answers

Ctrl-Alt-Del doens't work in logon on VirtualBox Windows 2003 server guest by RDP

When i try to access a VirtualBox Windows 2003 server guest hosted in a Google Compute Engine Debian Wheezly by any RDP, the logon screen appears and when i press Ctrl-Alt-Del task manager came up.
teteArg
  • 3,684
  • 2
  • 20
  • 18
4
votes
4 answers

hook a hotkey from windows logon screen

i built a program that hooks the keyboard and when some hotkey pressed it openning the door (that connected to the COM1 serial port of the computer). this works fine, until i locking the computer (winkey+L). i want to be able to open the door with…
DxCK
  • 4,402
  • 7
  • 50
  • 89
4
votes
2 answers

Displaying Window on Logon Screen Using C# in Windows XP

I am trying to create a service with C# that launches a process that can be displayed on the Windows XP Logon screen. I found some code that is doing this in C++. The C++ code is for a service that creates another process with STARTUPINFO.lpDesktop…
Andrew Garrison
  • 6,977
  • 11
  • 50
  • 77
3
votes
2 answers

Credential Provider communicating over network

First let me explain my desired solution: I'm making a custom Credential Provider to authenticate a user by sending logon credentials to an external authentication server, then passing the same credentials along with some extra authentication…
trbox
  • 476
  • 6
  • 16
3
votes
1 answer

Replacing Windows 7's logon screen completely?

In Windows XP it was possible to substitute the logon interface for your own GINA implementation that could add additional features to the logon screen as well as implement some organisation-specific features. I've looked at a number of MSDN…
Kristina
  • 15,859
  • 29
  • 111
  • 181
3
votes
1 answer

C# Custom Credential Provider RDP Issue

I am developing a C# implementation of custom credential provider. It's working with no problems on interactive sessions. However, when i try to connect that computer with RDP (mstsc), It gives an error message after credentials are serialized.…
candogg
  • 145
  • 7
3
votes
1 answer

C++ - How do I manage other user in Credential Provider V1 (Vista-Win7)

I develop a code to credential provider V2 for windows 10. I manage local users and active directory users also other user tile in windows 10 by V2 of credential provider. Now I develop an other code for use in windows 7. I use from V1 credential…
VOLVO
  • 541
  • 5
  • 16
3
votes
0 answers

Bypass WinLogon programmatically

I have a service running into the PC that can spawn exe (usually games) remotely from internet. This works perfectly once the user has logged into their computer. If the Windows Login (WinLogon) is present the exe won't launch (or will launch but…
Romain
  • 1,390
  • 1
  • 13
  • 27
3
votes
1 answer

How to SendInput to WinSta0\Winlogon desktop using C#/pinvoke

I'm writing a remote control application in C# for a suite of tech support tools. Everything works fine except that I'm unable to use SendInput to the Winlogon desktop. I'm successfully detecting the change from Default to Winlogon, and I'm able…
Jared
  • 764
  • 7
  • 17
1
2
3
12 13