What are the legitimate uses of global keyboard hooks? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T02:54:04Zhttp://stackoverflow.com/feeds/question/310745http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/310745/what-are-the-legitimate-uses-of-global-keyboard-hooks4What are the legitimate uses of global keyboard hooks?Software Monkey2008-11-22T02:14:34Z2008-12-04T22:53:46Z
<p>Other than for app launch shortcuts, which should only be provided by the O/S, what are the legitimate uses of things like Windows keyboard hooks? It seems to me that we only have problems with things like key loggers because operating systems provide hooks to do things that should not be permitted by anyone under any condition except the O/S kernal itself.</p>
<p>EDIT: OK, so given some legitimate places where they may be required, should not the O/S provide a high level ability to globally turn them off, and only allow exceptions on a program-by-program basis?</p>
http://stackoverflow.com/questions/310745/what-are-the-legitimate-uses-of-global-keyboard-hooks/310752#3107522Answer by Timothy Khouri for What are the legitimate uses of global keyboard hooks?Timothy Khouri2008-11-22T02:19:26Z2008-11-22T02:19:26Z<p>Not true, there are environments where the owner of the computer may want to stop things such as Ctrl+Alt+Delete... example, a Kiosk, or... .... Best Buy?</p>
http://stackoverflow.com/questions/310745/what-are-the-legitimate-uses-of-global-keyboard-hooks/310757#3107570Answer by Kibbee for What are the legitimate uses of global keyboard hooks?Kibbee2008-11-22T02:25:03Z2008-11-22T02:25:03Z<p>There may not be a lot of legitimate uses. However, I'm of the opinion that you shouldn't intentionally limit the features of a system, simply to make it more secure.</p>
<p>Also, a key-logger isn't a bad thing if you know it's there and you installed it yourself.</p>
http://stackoverflow.com/questions/310745/what-are-the-legitimate-uses-of-global-keyboard-hooks/310762#3107621Answer by Wimmel for What are the legitimate uses of global keyboard hooks?Wimmel2008-11-22T02:29:04Z2008-11-22T02:34:45Z<p>For example I have installed two applications;</p>
<ul>
<li>One maps Windows-V as <a href="http://stevemiller.net/puretext/" rel="nofollow">paste</a> unformatted text</li>
<li>Another one <a href="http://lifehacker.com/373177/neuter-the-caps-lock-key-with-handicapslock" rel="nofollow">modifies</a> how caps lock works</li>
</ul>
<p>I think both of them require a hook.</p>
http://stackoverflow.com/questions/310745/what-are-the-legitimate-uses-of-global-keyboard-hooks/310789#3107891Answer by FlySwat for What are the legitimate uses of global keyboard hooks?FlySwat2008-11-22T02:58:52Z2008-11-22T02:58:52Z<p>I wrote an app that let me place virtual sticky notes on my monitor. I used an OS keyboard hook to bind a hotkey to it.</p>
<p>I had an option in settings to disable the hook.</p>
http://stackoverflow.com/questions/310745/what-are-the-legitimate-uses-of-global-keyboard-hooks/342380#3423802Answer by RJCantrell for What are the legitimate uses of global keyboard hooks?RJCantrell2008-12-04T22:53:46Z2008-12-04T22:53:46Z<p>I'm currently working on a mobile application platform / hardware abstraction layer for an enterprise client, and one requirement was that a screensaver would be brought up after a certain period of inactivity. Since mobile devices don't have mice to move, "activity" consists of key presses or screen taps. One of our devices doesn't have a touchscreen, and, to make a long story longer, the mobile hardware vendor didn't properly implement the Win32 API calls that would allow me to get the time since the last user input.</p>
<p>Since the hardware vendor was unwilling to implement the Win32 API properly, the next best way I knew of to ensure that my console application could trap key presses in any application on the system was to install a global keyboard hook.</p>
<p>That said, I agree that the average consumer scenario is very different from mine, and the OS should allow the user to whitelist activities like this.</p>