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'...
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()...
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 ...
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...
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...
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...
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...
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...
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...
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...
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...
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
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...
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...
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...
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...
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
1 Next >
© 2022 - 2024 — McMap. All rights reserved.