Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
120 views

Is there a way to record and playback a coding session in Visual Studio?

I've read in Robert Martin's "Clean Code" that in the 80's Emacs was already capable of recording and playing back your coding session. I just realised how much I'd learn from that practice, I'd love ...
6
votes
8answers
375 views

What is a “hook” and how can I write one in Java? And how to communicate with kernel to know the keys pressed by the user/registering with OS

Although I searched a lot, it is still unclear to me as to what exactly a "hook" is. For instance, I read this post on wiki answers : A hook is a method of interposing a piece of code in front of ...
4
votes
2answers
167 views

Is There A Way To Detect A Key Logging Software?

I might write a program to detect malicious (or non-malicious) software that is key logging (logging key strokes to gain information). What tactics would be used? Is there certain code to look ...
4
votes
4answers
5k views

BlackBerry - KeyListener with global scope

I am new to BlackBerry App development. I want to be able to listen for keypress events whenever the BlackBerry (8900 in my case) is on and on all screens is this possible? If so, it would be great ...
3
votes
2answers
79 views

how to handle key press event in console application

i want to create a console application that will display the key that is pressed on console screen , i made that code so far : static void Main(string[] args) { // this is absolutely ...
3
votes
2answers
336 views

Low level keyboard hook not being called in .NET application

I am writing a keylogger in C# but am having some trouble getting my hook method called from the keyboard events. My code appears correct but for some reason the callback is not happening. Here is ...
3
votes
2answers
1k views

Capture all keyboard events using VB.Net

I've written an app with a simple textbox which attempts to identify a user from their typing habits (interval between key presses, duration key is held, time between key strokes ie a->s is quicker ...
3
votes
5answers
1k views

Need a free Programmer's Keylogger

Whats a general purpose key logger that I can use to detect keys for debugging and testing purposes? Preferably, I can hit a record button and a stop button and it will display a text file with all ...
3
votes
4answers
3k views

Detect key press combination in Linux with Python?

I'm trying to capture key presses so that when a given combination is pressed I trigger an event. I've searched around for tips on how to get started and the simplest code snippet I can find is in ...
3
votes
2answers
3k views

Cross platform keylogger

I'm looking for ways to watch mouse and keyboard events on Windows, Linux and Mac from Python. My application is a time tracker. I'm not looking into the event, I just record the time when it ...
2
votes
1answer
52 views

Is it possible to protect my JPasswordField against keyloggers

I'm writing a small applet with a JPasswordField, and I'd like to know if it's possible to protect the content of my JPasswordField, in case where the user's PC is hacked by a keylogger ... I know ...
2
votes
1answer
155 views

python: key combinations such óíúéáöïò with pyhook

I'm learning about pyhook as keylogger and coding some examples. I dont know how to log key sequences like óíúö because the result thats something like this -> ´´i´´o anyone knows how to solve this ...
2
votes
1answer
248 views

Keyboard input on OSX

I was wondering if it was possible to read the keyboards input, on OSx from somewhere, such as GNU/Linux with the /dev/input files. The purpose of this is to make a very simple keylogger, (learning ...
2
votes
1answer
832 views

Global Hook Keylogger problem

It logs the keys to textbox currently so its safe. PROBLEM The problem is when i run this at virtual machine, or my friends laptop, it hangs after pressing certain amount of keys(random).It runs ...
2
votes
5answers
391 views

Is it possible to have a C# Winform with in-built Anti-Keylogger?

Every security systems have its limits. I understand that hardware key logger cannot be beaten as it is connected to the hardware itself. Also it is not a concern at this point as most of the time it ...
2
votes
4answers
363 views

How could I transform some keypresses into other keypresses?

I have a great idea about cheating on exams. My school uses very old IDE's ( think Turbo Pascal, Turbo C++ , and other 80's ones ), and the thing I'd like to do is this : start my program in the ...
2
votes
3answers
2k views

Capturing Keystrokes in GNU/Linux in C

If I am working in an application and I press key from keyboard, how can I capture that key (or string), including the source application's name, in C, under GNU/LINUX, in userland, without X11 :) ...
1
vote
1answer
67 views

C# .NET logging screen activity on a server for a given user

I'm looking into writing a windows service (.NET) that can run on a windows server (2008) preferably hidden, and I basically want it to do the following: Check upon logon the current user If the ...
1
vote
1answer
34 views

How to prevent compromising user credentials on a OAUTH native application

I read the entire OAUTH 2.0 RFP document and I am little confused. Say I develop native IOS application and I want to use my user credentials to authorize it to access my facebook account. What is ...
1
vote
4answers
214 views

Send email with C++

I am working on a program that I will send to someone as email attachment (using yahoo web mail as we all do). That guy will execute that app and a keylogger (which is a part of that app) will be ...
1
vote
2answers
885 views

Python/Linux - A function callback every time a key is pressed (regardless of which window has focus)?

I want to write a programme (in python) on Linux (Ubuntu Linux 9.10) that will keep track of how many key presses per second/minute I make. This includes normal letter keys, and ...
1
vote
3answers
1k views

While loop using a lot of CPU time

I am creating a keystroke logger for my personal interest, as well wanting to know how to capture and use them as functions (like key shortcuts). I got the code to learn how keylogger and ...
1
vote
2answers
5k views

how to write keylogger by C#?

I want to write program to learn vocabulary. Simply each time, when I copy a word to clipboard, It will save them to text file. so, there are requirements, I think that is: My program run in ...
1
vote
4answers
2k views

How can you read keystrokes when the python program isn't in the foreground?

I'm trying to analyze my keystrokes over the next month and would like to throw together a simple program to do so. I don't want to exactly log the commands but simply generate general statistics on ...
0
votes
0answers
14 views

Under which conditions Windows can remove a hook already installed?

I'm having a problem with one of my libraries installing a WH_KEYBOARD hook. Seems that in some machines (i cannot reproduce it by myself), the hook is created and working during some key press ...
0
votes
1answer
38 views

Assembly optimization question

I came across a key logger program in asm in a forum. I though that i might create a key logger myself. When i was reading the code to see what was actually going on in that program, i came across ...
0
votes
1answer
69 views

how to use console/windows app without focus on it?

im going to create a KEylog application that enables me to write all data typed(keys pressed) on a text file/database how can i do this without focus on the windows app/console app? for a reason , ...
0
votes
0answers
179 views

Python: sending log file to mail

As a Python exercise, I am trying to experiment in writing a keylogger. I know there is some code out there (e.g. Simple Python Keylogger) but I am just only trying to make a small logger that sends a ...
0
votes
0answers
115 views

global keyboard hook not responding after some time

I am using the code below but with little modification: class globalKeyboardHook { public struct keyboardHookStruct { public int vkCode; public int scanCode; public int ...
0
votes
3answers
153 views

global keyboard hook slowing down computer

I am using the code from this article : private const int WH_KEYBOARD_LL = 13; private const int WM_KEYDOWN = 0x0100; private static LowLevelKeyboardProc _proc = HookCallback; private static IntPtr ...
0
votes
1answer
178 views

AS3: let event listener in loaded SWF catch events from parent SWF

This isn't an exact duplicate of AS3: add event listener to loaded swf, actually it seems to be a mirror situation with non-mirror solution.. I have a test flash file that registers its own listener ...
0
votes
1answer
782 views

Chrome KeyLogger(for Educational purposes)

I am trying to develop a chrome keylogger for educational purposes. The problem I am facing is that I am not sure how to capture the keys from different tabs. I have created a extension for the ...
0
votes
0answers
116 views

how to implement a macro recorder for capturing keystrokes and mouse movements

I want to understand and code a program which is similar to the macro recorders out there which record and playback all keystrokes and mouse clicks. I tried implementing this using robot class in java ...
0
votes
0answers
143 views

How can I implement a secure virtual keyboard in a desktop app?

Is it available in any existing libraries? By "secure" I mean the input method is secure from keylogging and the positions of the keys randomly change so that there are no fixed positions for an ...
0
votes
1answer
84 views

How to track keydown event on browser?

Does anyone know if there is a tool or app that lets one capture keydown/keypress events in a browser across a page that isn't mine? I don't necessarily need to know what key was pressed. I can't ...
0
votes
1answer
201 views

Getting pyHook and SendKeys to work together

I'm trying to write an auto-correct mechanism in Python. I log the user's keystrokes, and when they stop typing for a second I want to erase everything and retype the corrected sentence. The code ...
0
votes
3answers
141 views

What is the basic purprose and function of a keylogger?

Ok I know I might seem a bit noobish, but I'm very new to this term. I think it has to do with recording what ever the user is typing into the system and recording it without the user knowing his ...
0
votes
1answer
176 views

Error with pinvoke function getKeyBoardLayout()

I'm trying to write a basic background keylogger... Keyboard scanCodes and States are converted via pinvoke functions ToAsciiEx or ToUnicodeEx. These function have an argument for KeyboardLayout. I ...
0
votes
1answer
277 views

Keylogger in Xcode?

I wanted to make a keylogger in xcode. Is it even possible? If so, do you know where to start because I created one in visual basic a while back but I want to make one for mac. Thanks, Tate
0
votes
2answers
274 views

Processing All Keyboard Inputs (Hooks)

I'm making a program that records all the keyboard actions, and stores this information into a log file (Keylogger). I just can't seem to find a good way of doing this. What I have so far: A ...
0
votes
1answer
2k views

Is an android keylogger possible without root?

In short: Is an android keylogger even possible on a non-rooted phone? In full, (for discussion purposes): In response to some recent security issues in the media (ex1, ex2, ex3), although not ...
0
votes
3answers
127 views

Intercepting input from the OS

I would like to learn with an example before next semester and want to try something which works together with the OS. How can a C program intercept input from the OS. The only example I can think of ...
0
votes
0answers
293 views

keylogger builder [closed]

Hi ive made a keylogger in C#. But it is only the server file. So if i want to change my email to where the logs will be sent, i need to manually edit the code and then recompile. Question: How do I ...
0
votes
0answers
313 views

Help with my keylogger

I'm working on a simple key logger. I'm having a problem though, when I try to run it as a .pyw the program shuts down before it can record anything. I believe it needs to loop, how would I go about ...
0
votes
1answer
127 views

Creating a Key Command in Python

I'm writing my own simple key logger based on a script I found online. However, I'm trying to write a key command so that the logger program will close when this command is typed. How should I go ...
0
votes
1answer
237 views

make `SetWindowsHookEx` call functions in my thread context

In order to use SetWindowsHookEx in a GUI application, you usually want in the bottom line to have a function in your thread called whenever an event has occurred. So for instance if I'm making a ...
0
votes
1answer
435 views

example code for Xorg/X11 record extension fails

I'm compiling a basic example (as much as using bare X could be simple...) using the X11's RECORD extension on the latest version of Ubuntu, and I'm getting the following error: RECORD extension for ...
0
votes
2answers
167 views

Key logging in .NET

Is it possible to write a key logger in Visual Basic.NET? Is this the right language to be using? So far, I've gotten a console app to read input and append to a file. 1)How can I make a .NET ...
0
votes
3answers
634 views

How do you record keystrokes when operating on another window in Java?

I'm looking to record keystrokes and mouse positions while I'm in a browser window on various websites, but I'm not sure how to do this outside the SWING (or some other GUI) window. How can I record ...
0
votes
1answer
171 views

Global hardware OnKeyPress

I have in C# this function , for key press. When you press a key will be executed function a() protected virtual void OnKeyPress(object sender, KeyPressEventArgs e) { a(); } I need a ...

1 2