DarkNecromancer Posted July 18, 2005 Posted July 18, 2005 According to the documentation, blockinput can be bipassed by pressing ctrlaltdel because of the windows api, and i was doing some research, but it looks like if you system hook the keys you could intercept the msg before the system, but i couldn't find any hook examples that i could understand what they were doing. does anyone have any experiance doing this or maybe another method?
Valik Posted July 18, 2005 Posted July 18, 2005 I don't think hooking works, either, though I may be wrong. That key combination is caught at the OS level and the only way you might have a chance is if you write a driver to get to it at that level. Again, I could be wrong, but I'm sure Google will know.
MSLx Fanboy Posted July 18, 2005 Posted July 18, 2005 Either way, there should be a way to "emergency override" should ctrl+alt+del ever be trapped by the BlockInput function (without restarting) Writing AutoIt scripts since _DateAdd("d", -2, _NowCalcDate())
DarkNecromancer Posted July 19, 2005 Author Posted July 19, 2005 well see the thing is im developing a remote administration/spy for my school IT department and when they engage blockinput i need it to stay, and not be oveerriden by the user
mikeytown2 Posted September 7, 2005 Posted September 7, 2005 I got this off of the fourms somewhere, its cool... opt("WinTitleMatchMode", 4) While 1 Sleep(15);;don't use the cpu too hard If WinExists("classname=#32770") Then WinSetState("classname=#32770", "", @SW_DISABLE) Sleep(15);;don't use the cpu too hard EndIf WEnd What this does is disable the gui of taskmanager. If you want you can do a 2 fold thing, where u add @SW_HIDE as well. Just make sure to add @SW_ENABLE so the box isnt cooked. Email: POP3 & SMTP using SSL/TLS (OpenSSL)Email: IMAPEmail: Base64 & SMTP login & Send email direct to MX Server (thanks blindwig)Win: Hook Registry ChangesWin: Read/Write to Alternate Data Streams (ini example)Utility: GPS Distance Calculations, Vincenty and Haversine formulas; angles and elevationUtility: Dell Laser Printer (3000-5100) - Print LoggerUtility: Reset Router when Wireless Link FailsUtility: ImageMagick Batch jpg ProcessorVideo HCenc Batch FrontendVideo: *DEAD* YouTube Video Encoder (avs/avi to flv)Software On CD's I Like<<back|track3 Ultimate Boot CD for Windows SpinRite Ubuntu ophcrack
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now