|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
|
Announcements
Chapters
Services
Feature Zones
|
NoteIn response to the many requests from VB (and other languages) coders, I finally took some time to update the project and move all the functions into a DLL so that any program developed in a language capable of calling Windows standard libraries (DLLs) can use them. To demonstrate these functions, I also included C and a VB projects. IntroductionI manage a system where I need to restrict users from accessing the desktop and running other applications. The search for ways to achieve this returned several different techniques. Although in the end I didn't use any of the techniques described here, I decided to compile all the code in one application for everyone who should need it. Note: I don't claim to be the author of any of the code presented in this article. The application is a compilation of several sources and I will try to acknowledge the authors whenever possible. I. Hiding Desktop WindowsHiding the Windows Desktop, Taskbar, Start Button,..., is generally achieved by passing the window handle returned by If, for example, you want to hide the Taskbar, you can use the following code: ShowWindow(FindWindow("Shell_TrayWnd", NULL), SW_HIDE); If you want to hide the Start Button, you have to know the button control ID first and use the same technique: ShowWindow(GetDlgItem(FindWindow("Shell_TrayWnd", NULL), 0x130), SW_HIDE); How do I know that the Taskbar class name is " If you want just to disable the window, and not hide it, change the You will see that if you hide the Desktop and the Taskbar, the Start Menu still pops up when you press the Win key or double click the desktop area. To find out how to prevent this unwanted behavior, you have to read the next section. II. Disabling System KeysI call system keys all the special key combinations that the operating system (OS) use to switch between tasks or bring up the Task Manager. There are several ways to disable these key combinations. Win9x/MEYou can disable all these key combinations (including Ctrl+Alt+Del) by fooling the operating system into thinking the screen saver is running. This can be accomplished with the following code: SystemParametersInfo(SPI_SETSCREENSAVERRUNNING, TRUE, &bOldState, 0);
This trick doesn't work in Windows NT or higher (Win NT+), so you need other techniques. HooksIn Win NT+, one way to trap key switching combinations is to write a keyboard hook. You install a keyboard hook by calling hKeyboardHook = SetWindowsHookEx(WH_KEYBOARD, KeyboardProc, hInstance, 0);
The LRESULT KeyboardProc(...)
{
if (Key == VK_SOMEKEY)
return 1; // Trap key
return CallNextHookEx(...); // Let the OS handle it
}
To release the hook, you use: UnhookWindowsHookEx(hKeyboardHook); There are two type of hooks: local and global (or system wide) hooks. Local hooks can only trap events for your application, while global hooks can trap events for all the running applications. To trap the switching task keys, it's necessary to write a global hook. The Microsoft documentation states that global hook procedures should be placed in a separate DLL. The DLL is then mapped into the context of every process and can trap the events for each process -- that's why hooks are used to inject code into a remote process. In my application, I wanted to avoid the use of an external library, so I set the global hook inside my own application (without an external library). This is accomplished by passing in the 3rd parameter of the I'm not going into more details about hooks because there are many excellent articles dealing with this subject. There's still one remaining problem: keyboard hooks cannot trap Ctrl+Alt+Del sequence! Why? Because the OS never sends this key combination to the keyboard hook chain. It is handled at a different level in the OS and is never sent to applications. So, how can we trap the Ctrl+Alt+Del key combination? Read the next section to find out. Ctrl+Alt+DelThere are several ways to disable this key combination:
Disable Task ManagerTo disable the Task Manager, you only have to enable the policy "Remove Task Manager", either using the Group Policy editor (gpedit.msc) or setting the registry entry. Inside my application, I used the registry functions to set the value for the following key: HKCU\Software\Microsoft\Windows\CurrentVersion\
Policies\System\DisableTaskMgr:DWORD
Set it to 1 to disable Task Manager and 0 (or delete key) to enable it again. Subclassing Winlogon's SAS windowYou subclass a window's procedure by calling: SetWindowLong(hWnd, GWL_WNDPROC, NewWindowProc); The call only works for windows created by your application, i.e., you cannot subclass windows belonging to other processes (the address of So, how can we subclass Winlogon SAS window? The answer is: you have to somehow map the address of The technique of mapping memory into the address space of a remote process is called Injection. Injection can be accomplished in the following ways:
My preferred injection technique is the last one. It has the advantage of not needing an external DLL. To properly work this method requires very careful coding of the functions you are injecting onto the remote process. To help you to avoid common pitfalls of this technique, I inserted some tips at the beginning of the source code. For people who think this method is too dangerous, I included also the After injecting the code into Winlogon's subclassing, the SAS window reduces too:
Other Techniques1. RegisterHotKey()/MeI only managed to disable Alt+Tab and Alt+Esc key combinations using this method. 2. SystemParametersInfo(SPI_SETSWITCHTASKDISABLE/SPI_SETFASTTASKSWITCH)In all the versions I tried, this method never worked! 3. Switch to a new desktopWith this technique, you create a new desktop and switch to it. Because the other processes (normally) run on the "Default" desktop (Winlogon runs on the "Winlogon" desktop and the screen saver runs on the "Screen-saver" desktop), this has the effect on effectively locking the Windows desktop until the process that runs in the new desktop has finished. The following code describes the steps necessary to create and switch to a new desktop and run a thread/process in it: // Save original desktop hOriginalThread = GetThreadDesktop(GetCurrentThreadId()); hOriginalInput = OpenInputDesktop(0, FALSE, DESKTOP_SWITCHDESKTOP); // Create a new Desktop and switch to it hNewDesktop = CreateDesktop("NewDesktopName", NULL, NULL, 0, GENERIC_ALL, NULL); SetThreadDesktop(hNewDesktop); SwitchDesktop(hNewDesktop); // Execute thread/process in the new desktop StartThread(); StartProcess(); // Restore original desktop SwitchDesktop(hOriginalInput); SetThreadDesktop(hOriginalThread); // Close the Desktop CloseDesktop(hNewDesktop); To assign a desktop to a thread, References
Final NotesIn the introduction, I referred that at the end I didn't use none of the techniques described in this article. The strongest method of securing the Windows desktop is to change the system shell by your own shell (that is, by your own application). In Windows 9x, edit the file c:\windows\system.ini, and in the [boot] section, change the key shell=Explorer.exe by shell=MyShell.exe. In Windows NT or higher, you can replace the shell by editing the following Registry key: HKLM\Software\Microsoft\Windows NT\
CurrentVersion\Winlogon\Shell:STRING=Explorer.Exe
This is a global change and affects all users. To affect only certain users, edit the following Registry key: HKLM\Software\Microsoft\WindowsNT\CurrentVersion\
Winlogon\Userinit:STRING=UserInit.Exe
Change the value of Userinit.exe by MyUserInit.exe. Here's the code for MyUserInit: #include <windows.h> #include <Lmcons.h> #define BACKDOORUSER TEXT("smith") #define DEFAULTUSERINIT TEXT("USERINIT.EXE") #define NEWUSERINIT TEXT("MYUSERINIT.EXE") int main() { STARTUPINFO si; PROCESS_INFORMATION pi; TCHAR szPath[MAX_PATH+1]; TCHAR szUserName[UNLEN+1]; DWORD nSize; // Get system directory szPath[0] = TEXT('\0'); nSize = sizeof(szPath) / sizeof(TCHAR); if (!GetSystemDirectory(szPath, nSize)) strcpy(szPath, "C:\\WINNT\\SYSTEM32"); strcat(szPath, "\\"); // Get user name szUserName[0] = TEXT('\0'); nSize = sizeof(szUserName) / sizeof(TCHAR); GetUserName(szUserName, &nSize); // Is current user the backdoor user ? if (!stricmp(szUserName, BACKDOORUSER)) strcat(szPath, DEFAULTUSERINIT); else strcat(szPath, NEWUSERINIT); // Zero these structs ZeroMemory(&si, sizeof(si)); si.cb = sizeof(si); ZeroMemory(&pi, sizeof(pi)); // Start the child process if (!CreateProcess(NULL, // No module name (use command line). szPath, // Command line. NULL, // Process handle not inheritable. NULL, // Thread handle not inheritable. FALSE, // Set handle inheritance to FALSE. 0, // No creation flags. NULL, // Use parent's environment block. NULL, // Use parent's starting directory. &si, // Pointer to STARTUPINFO structure. &pi)) // Pointer to PROCESS_INFORMATION structure. { return -1; } // Close process and thread handles CloseHandle(pi.hProcess); CloseHandle(pi.hThread); return 0; }
|
||||||||||||||||||||||