Keystroke logging (Keylogging, Keylogger)

learn more… | top users | synonyms

0
votes
0answers
29 views

Does this Terminal output indicate a that a keylogger has been installed on this Mac? [closed]

A friend is concerned that a keylogger has been installed on their machine, a Mac running MacOS 10.7. I have the following Terminal output. Do any of you spot any indication of keylogging apps ...
0
votes
2answers
31 views

Python to send email with file before exit by calling custom module

I have the code below and also code that sends email with the file so by importing it from library I wanted to execute it after the file is closed and before the program exits yet it does not happen I ...
-1
votes
0answers
43 views

How to print a message ONCE every hour without repeats?

So I've written a basic function for this, however it tends to print it multiple times, at least 50+. I have been messing around with this for over a day now and have not been able to find a way ...
-7
votes
0answers
42 views

how to know the specific program executing on windows c++ [closed]

i'm writing KeyLogger.exe as a homework, this homework specific the webpage to log the key strokes. for example i set it logs only Facebook.com and user opens Google.com then the program won't log the ...
-1
votes
0answers
98 views

Chrome Packaged App Webview keylogging from top level window, how is this not a MASSIVE security issue?

I just forked and ran a Chrome Packaged App browser demo from Google. Their new packaged apps api has a <webview> tag and you can listen to everything typed into it with this code: ...
0
votes
0answers
9 views

Removable Device logger

How can we keep a log of all the devices (like pen drives, hard disks etc.) which were inserted into the PC ? Is there an already existing software for this ?
0
votes
2answers
95 views

C# - Make Mouse Cursor Invisible

I tried to make the mouse cursor invisible using the following code: Cursor.Hide(); The mouse cursor does disappear from the screen and it does not appear in video captured using Expression Encoder ...
6
votes
4answers
157 views

C# - Transparent Window to defeat Keyloggers

How can I create a window which is fully apparent to the user but is not visible in screenshots. I know that this is possible since Neo SafeKeys (an onscreen keyboard to defeat keyloggers) does not ...
-1
votes
1answer
93 views

pyHook for Python 3.3

I am coding a simple keylogger using Python. I hope to use pyHook to capture keyboard events.I couldn't find any packages of pyHook for python 3.3 which I have installed. Is there any other module for ...
0
votes
2answers
49 views

how to hide vb form on startup

I am trying to hide the main form on startup but for some reason i am failed to do that. In the following code i have created on button that hides the form but i want to hide the form on load please ...
0
votes
0answers
75 views

Email Sending keylogger, Symbols/Encryptions appearing at RichTextBox when debug

So when i run the program, Encryptions/Symbols are appearing at RichtextBox1 Heres the code Imports System.Net.Mail Public Class Form1 Dim results As Integer Private Declare Function ...
2
votes
1answer
201 views

iOS key logger implementation

I want to understand how to implement a key logger for iOS. And how can I avoid logging keys in my application, if there is iKeyMonitor (for example) installed on device? After research I found that ...
-1
votes
1answer
96 views

Keylogger not sending to my gmail(education purpose only)

I've been trying to figure out what is the problem but I can't find... Option Strict On Imports System.Web Imports System.IO Imports System.Net.Mail Public Class Form1 Private Declare Function ...
-1
votes
1answer
54 views

Keyloggers and Virtual Machines [closed]

I want to test some keyloggers in order to see how they work. If my host OS is clean, and I install the keyloggers on a guest OS running in VirtualBox, will the keylogger be able to log the ...
0
votes
3answers
101 views

Python threading with pyhook

import win32api import win32console import win32gui import pythoncom, pyHook , sys, time , os , threading import shutil ,socket ,datetime from ftplib import FTP from threading import Thread def fi(): ...
-1
votes
2answers
79 views

security - Protection against Screenshot Keyloggers [closed]

I was thinking of creating an on-screen keyboard to protect against keyloggers. The main problem is that I have found that there is a category of keloggers, called screenshot key loggers, which are ...
0
votes
0answers
62 views

Using own code in pyhook pumpmessages

i want to check if the file in which i am writing the keys is more than 2Kb . If it is more than 2KB then i need to make another file and stop writing in this one. I am a beginer in python please help ...
0
votes
0answers
159 views

Keylogger in python

import win32api , win32console , win32gui , pythoncom , pyHook , sys, time ,os lastWindow = None lastWindow=win32gui.GetWindowText (win32gui.GetForegroundWindow()) while True: def ...
-4
votes
1answer
70 views

C - How can I interact with a hidden window?

My purpose is to make a keylogger and I don't want to just to copy the available codes out there around the internet because they can easily get caught by antivirus so I am writing one with an ...
0
votes
2answers
403 views

C++ simple keylogger

I`m trying to write a simple keylogger in C++ using WinAPI. Is there a way to get in which application the user is typing the captured key strokes? And here is my code so far: #include ...
0
votes
2answers
160 views

Python - Window Title and keylogger

This is a code for a python keylogger and window title grabber but i am not able to grab them at same time. import pythoncom, pyHook ,time def OnKeyboardEvent(event): keylog= ...
0
votes
0answers
32 views

Need Help to create a keylogger using Java [duplicate]

I would like to write an app to get my keyboard inputs, I don't know where to start please help me Thank You,
0
votes
3answers
134 views

Function does not work inside a class - function call missing argument list

I've built a working keylogger and now I want to move it to class so I can re-use it whenever I want and even on different languages like c# however I encountered error because same code does not work ...
-4
votes
1answer
301 views

How to make a C++ key-logger public [closed]

I have made a simple key logger program in C++, it was made in Dev C++ and when run it simply runs in the background and writes whatever the user types on his keyboard into a txt file, this program ...
0
votes
2answers
85 views

Get a notification when a window is set as active

I'm trying to write a basic keylogger in C++ and so far I managed to install a low lever keyboard hook using the win api. It notifies me everytime a key is pressed. I would like to do something ...
1
vote
0answers
64 views

Get KeyStrokes for OSX in RAD Studio XE2 delphi?

I want to make a Fire Monkey app in RAD studio xe2 that will save keystrokes for OSX.I have read about CGEvent or Apple Script for such development.Is it possible in RAD Studio XE2?please guide...
-3
votes
1answer
436 views

Most efficient way to code a keylogger? (VB.NET) [closed]

I am designing a key logger to make statistics such as "Most queried Google strings" and such... Users will know it is a key logger and it is not "clandestine". I have looked into the ...
0
votes
1answer
706 views

Build a simple Keylogger Android Application: Accessibility research for Virtual keyboard

I have been trying to find some resources in order to build a Keylogger Android application for an accessibility research project on the Android platform (APILevel 17). The Interface of the ...
0
votes
1answer
236 views

OS X - Python Keylogger - letters in double

I'm working on a python Keylogger for OS X. My script is working well, but all the letters are in double in the shell / txt log file. Can anyone tell me why... That's a mystery me for ! ...
1
vote
1answer
144 views

VB.net suggestions to avoid keyloggers spy on my textbox password?

How it could be done? So far i seen on Google: Virtual keyboard Add some events to my textbox to cancel the key event. When key pressed record what has been pressed save and then simulate other 10 ...
0
votes
0answers
140 views

Keylogging in Java for Mac OSX

I need a program/library to record all keystrokes (Java preferred). I disassembled a normal keyboard to build a custom interface for certain programs. An interface which provides a physical interface ...
1
vote
1answer
283 views

How to implement keystroke logging by java [duplicate]

Possible Duplicate: How do you record keystrokes when operating on another window in Java? Try to get all keystroke on the OS. any ideas?
0
votes
1answer
1k views

Android Keylogger

I am writing an application for the Android for an examination. One of the features of the application is the keylogger that captures everything that user types. I didn't understand how I could ...
0
votes
0answers
244 views

GetAsyncKeyState and ToUnicodeEx and VirtualKeys

I have the folloing code on a C# application, and I'm trying to get all keys pressed and write them on a string. The problema that I'm having is that if a press Shift+L or Shift+1 the ToUnicodeEx ...
0
votes
1answer
139 views

How do I write a simple program to show a notification when CAPS LOCK is pressed?

Forgive me if this is a silly question but I am a novice programmer, and I'm hoping there is a novice solution to this. Is there any programming language that will quickly allow me to write a simple ...
2
votes
2answers
434 views

Delphi FormKeyDown ALT Key Stuck

I have a form with 2 CheckBoxes (1 is for Holding CTRL - 1 is for Holding ALT) Both CheckBoxes are disabled so the KeyDown Event of the form works properly. There is also a TTimer that synchronizes ...
0
votes
1answer
199 views

How to capture cursor movements and key strokes on a Mac (in the entire system)?

maybe you know the program Keyboard Maestro for Mac. With Keyboard Maestro you can call Scripts by pressing custom keyboard shortcuts and you can listen for text input (e.g. you can create a ⌘ every ...
-2
votes
5answers
632 views

Java key listener to track all keystrokes

I want to build a key listener in Java as part of my project. It should track all the key presses pressed in every window. Is it possible to make such a thing? In all windows and all programs.
0
votes
1answer
91 views

How to block a connection to a specific FTP server

I'm thinking about writing an anti-keylogger/anti RAT application. Basically, what I want it to do is this: Monitor outgoing ftp traffic (maybe monitor all outgoing traffic and have an option to ...
-1
votes
4answers
292 views

How to detect a character in a Textbox?

I got a Keylogger working (good tut and copypaste) and now I just want that when you press a specific key (e.g. S) it performs an action. How can I do this? I took all the Code from this Tutorial ...
1
vote
1answer
215 views

logging and clearing file

I am working on simple keylogger - import logging, sys, smtplib, pyHook, pythoncom, socket path = r"C:\Users\Karel\Desktop\log.txt" logging.basicConfig(filename=path, level=logging.DEBUG, ...
0
votes
2answers
336 views

c++ KeyLogger not logging first shift key or control key press

I'm writting a key logger but not for malicious purposes. Its actually to create a file that is then read "polled" by an xsplit broadcast program pluging which shows my keypresses on screen while I ...
1
vote
1answer
205 views

c# KeyPressed doesn't capture special chars

I'm using a keylogger to capture keys as they are pressed. It works fine but not for special chars as "@, +£%*¨¨" .. etc private void Test_KeyPress(object sender, KeyPressEventArgs e) { ...
1
vote
1answer
413 views

Something like pyHook on OS X

I am actually working with pyHook, but I'd like to write my program for OS X too. If someone know such a module ... I've been looking on the internet for a while, but nothing really relevant. -> The ...
1
vote
0answers
290 views

Automatically accessing Truecrypt/Keepass etc. using Windows 7 password

I basically want to automatically mount a (non-system) Truecrypt volume or start Keypass just protected with a single (secure) password, the one windows 7 use for default authentification. I'm using ...
3
votes
2answers
195 views

Java - Key catcher

I'm trying to make a kind of a keylogger in Java. I got an app that allowed people to get their RSS feeds on their desktop and I want to make a quick access. By the way, I need something that can do ...
2
votes
5answers
337 views

cannot see the message when user presses the key

The following java program calls a native method in C that should print a message you pressed a key ! if the user presses a key. But i can't see the message as the i press the key.I also check if the ...
3
votes
1answer
302 views

How to use SetWindowsHookEx function with java?

I want to log the keys in a table that i have designed in java. To get the keys user is pressing (on windows) i am advised to use the function SetWindowsHookEx. But i don't know how to use this ...
0
votes
1answer
626 views

writing a key listener in c [closed]

I want to write my own keylogger using Java. To write the keylogger i would need a hook file that will catch the keyevents by the users. How can i write this hook file so that i am able to get the ...
0
votes
1answer
270 views

Global Keyboard hook call back function

I am trying to write a simple keylogger program by using global keyboard hooks. I need somehelp in implementing the keyboard hook callback function. My function as of now works but cannot handle the ...

1 2 3