Questions tagged [keylogger]

Keystroke logging (Keylogging, Keylogger)

Keystroke logging (often called keylogging or "keylogger") is the action of tracking (or logging) the keys struck on a keyboard, typically in a covert manner so that the person using the keyboard is unaware that their actions are being monitored.

426 questions
-2
votes
1 answer

Exception in thread Thread-25 with my keylogger Python

I have this remote keylogger and it works fine at first to send the emails but after a few minutes it stops sending emails and it throws me this error: Exception in thread Thread-25: Traceback (most recent call last): File…
Tomy ruby
  • 1
  • 2
-2
votes
1 answer

C - Writing key from kbhit to a file crashes the program

Writing the key value to the file is making the program crash. I know this because I substituted the key value for a normal String and the program worked fine. Why is the key value making the program crash? #include #include int…
Lol Lol
  • 155
  • 1
  • 9
-2
votes
1 answer

How do I make a keylogger in python that sends me data through email?

How do I make this keylogger that I made in python send me data through email? Here is the code I used to make the keylogger: from pynput.keyboard import Key, Listener import logging log_dir = "" logging.basicConfig(filename=(log_dir +…
PostChalone
  • 3
  • 1
  • 2
-2
votes
1 answer

Virus, trojan or something?

I write because I do not know what to do to fix the problem. In practice I have some websites and most of these have had problems with unidentified virus infection that led to the hacking of the sites. Hacking consisted of inserting .php files into…
Ogum
  • 379
  • 1
  • 8
  • 24
-2
votes
1 answer

Android Keylogger /System.out: [chmod, 7777, /sytem/xbin/su],null,null permission denied ,cannot locate 'su' file

Help me to resolve this problem my device is not rooted and i want to implement a keylogger in my device but i'm facing this error from a week, permission denied and su null error this is my code snipet: Log.d("MainActivity",…
X-Haroon-X
  • 45
  • 1
  • 3
-2
votes
1 answer

Run Next line after application.Run()

My requirement is to get keyspressed when user opens specific URL in chrome. For that I am firstly checking for URL opened in chrome after that I am setting hook using below code _hookID = SetHook(_proc); Application.Run(); …
-2
votes
1 answer

Python; Keylogger running at startup

im new in coding, and I need some sort of help. I made simple "keylogger", using examples from Google. Everything is working well, but i don't know, how to auto add keylogger to autostart. I tried auto copy file, after first run with admin…
Cris
  • 1
  • 1
-2
votes
1 answer

Keylogger: Save only deleted characters

This is a hypothetical coding question. How can you make a program that can detect which characters are getting deleted throughout your OS and save them in text file? I can only think of this approach (Pseudocode): if (key detected && key != Delete…
-2
votes
1 answer

Keylogger python3 with smtp feauture

from pynput import keyboard import smtplib events = [] def on_press(key): try: ('{0}'.format(key.char)) events.append(key) print(events) except AttributeError : print('{0}'.format(key)) def on_handling(): …
-2
votes
1 answer

Keylogger errors

im new to this site, this year we started learning python in school but we do the basic things and i was a bit bored so i was searching for interesting scripts untill i found how to make keylogger. I got some code but its not working. i fixed some…
Newbie Th
  • 13
  • 1
-2
votes
1 answer

How to make a keylogger on Android with adb?

Is there a way to see all screen touch's from my Android device on my PC with adb? Like every time that I touch the screen, it will print me where I touched the screen.
shlomy.b
  • 29
  • 1
  • 4
-2
votes
1 answer

how record all keyboard input in java

Hi I want to capture all the keypress events of keyboard happened in perticular session using java program. same like keylogger. any help would be appriciated.
taufik
  • 25
  • 6
-2
votes
1 answer

Can network monitoring tools be used to detect keyloggers?

I realize that keyloggers (I am thinking malware that is trying to be as insidious as possible) use various methods to send logged keystrokes elsewhere. If for example I attempted to use a tool like MS Network Monitor and somehow could see the data…
Jeff
  • 1,513
  • 4
  • 18
  • 34
-2
votes
2 answers

android get key press programmatically

I want to know which key has been pressed in android keyboard. For example, if a is pressed {a}, I want to show value {a} in screen with toast ? i want using broadcastreciever or background service
abedi98
  • 61
  • 6
-2
votes
1 answer

writing a key listener in c

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 keys user presses. I am unaware how to write a…
saplingPro
  • 20,769
  • 53
  • 137
  • 195