keylogger Questions

7

I am working to make a small keylogger with Python, by using the pyHook, pythoncom and Pywin32 modules. Here is my code: import pyHook, pythoncom, sys, logging file_log = 'C:\\important\\log.txt'...
Fante asked 20/9, 2013 at 2:18

3

Solved

def file_input(recorded): now_time = datetime.datetime.now() w = open("LOG.txt", 'a') w.write(recorded) w.write("\n") w.write(now_time) w.write("--------------------------------------") w .close()...
Despondent asked 4/1, 2017 at 1:36

1

JShell by default enables a persistent history of everything typed, which can be recalled by pressing the up arrow. Where is the setting to turn this ❝feature❞ off? Also, how do I even clear the ...
Troat asked 14/10, 2018 at 18:7

2

Solved

Can Powershell listen for and capture key presses? Is it possible to write a PowerShell script that, like AutoHotkey, sits in tray and waits until you press a predefined keyboard key to start exec...
Peculation asked 17/1, 2019 at 13:9

3

Solved

Intro: I want to create a POC on Android Security which requires to identify if there is any KeyLogger running on Android device or not. And if it is running or installed on device then, disable it...
Mahdi asked 2/12, 2014 at 8:44

2

I am finding a Ubuntu OS command, which lets the program to read the data from keyboard even if the program is in background. I tried to search it a lot but got no success. If any Ubuntu/Linux prog...
Emporium asked 5/10, 2012 at 10:13

3

Solved

I want to create a console application that will display the key that is pressed on the console screen, I made this code so far: static void Main(string[] args) { // This is absolutely wrong, but ...
Alyworth asked 17/1, 2012 at 16:29

1

Solved

I have a barcode scanner connected to my RasPi without any tty, which means headless without a monitor. In other words, a keylogger for number inputs. This scanner reads numerical barcodes like GTI...
Jane asked 10/11, 2017 at 16:44

4

Solved

I just started working on a tool to help me increase my productivity with Vim. I want it to log every keystroke to a file and then identify inefficient usage patterns. I would like it to store a ti...
Redemptioner asked 30/5, 2013 at 8:0

6

Solved

I want to write a key listener in Java. It should track all the key presses regardless of whether the Java app has focus or not. Is this possible?
Sharleensharlene asked 29/8, 2012 at 12:0

4

If I am working in an application and I press a key from the keyboard, how can I capture that key (or string), including the source application's name, in C, under GNU/LINUX, in userland, without X...
Excommunicate asked 28/9, 2009 at 2:14

1

Solved

i want to make an android app that works in background and get's what key is pressed in keyboard and throw Equivalent of it in another language,for example persian or arabic. how can i do this? tha...
Paulinepauling asked 8/1, 2014 at 18:14

1

Solved

i want to implement key chording on a normal keyboard and i thought i use python xlib. for this to work the program has to globally swallow all keyevents and only later allow them to go through. m...
Milfordmilhaud asked 4/8, 2013 at 1:39

5

Solved

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...
Ingaingaberg asked 10/4, 2013 at 19:54

2

Solved

Is it possible to log all commands I type in VIM for later analyzing? I mean each simple command like motions or changing the text, i.e. jjjjjjkkkcw<newword> If it is not possible in VIM, ma...
Confute asked 11/3, 2012 at 21:15

1

Solved

For Emacs, how do I store what view-lossage collects into an external file? Ideally I'd like to store these keystroke data into an external log file incrementally and automatically, meaning it is d...
Lublin asked 18/3, 2012 at 19:13

8

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 o...
Meggy asked 2/9, 2011 at 15:14

2

Solved

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 ...
Sardanapalus asked 17/5, 2011 at 15:44

1

Solved

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, (learni...
Susanasusanetta asked 26/1, 2011 at 19:48

1

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 lo...
Sun asked 18/11, 2010 at 18:58

1

Solved

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 p...
Devastate asked 22/8, 2010 at 7:30

1

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 f...
Howie asked 9/6, 2010 at 19:1

3

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 GetAsync...
Tope asked 16/9, 2009 at 4:10

2

Solved

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 control/shift/space...
Banas asked 14/12, 2009 at 16:16

4

Solved

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 o...
Salty asked 28/6, 2009 at 6:20

© 2022 - 2024 — McMap. All rights reserved.