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
-3
votes
0 answers

How can I keylog what someone is typing on another tab, to my console? (Using Html and javascript?)

(I dont know what I need to type in order for it to work, but like I said I want to keylog what they type, and make it show up in my console from different pc's) I really need help on this, please remember its not for any malicious intent, just to…
HackerLOL
  • 1
  • 1
-3
votes
1 answer

Cannot write keystroke to Notepad in C++

(C++ 17) I am writing a keylogger that writes the keystrokes onto a notepad but I am having trouble writing to the notepad. I created a function that gets called in a while true loop with a 175ms delay. std::ofstream…
-3
votes
1 answer

Hello, i have problem with my code, what i do correct?

i have problem with my code, what i do correct? What is wrong with keyboard_callback? > import keyboard > import smtplib from threading > import Semaphore, Timer > > REPORT_TIME = 1200 > EMAIL_ADDRESS = "mail95069a@gmail.com" > EMAIL_PASSWORD =…
-3
votes
1 answer

Hypothetical Questions Regarding Keyloggers

Recently, a lot of people in my house have been going on my computer when I wasn't there and I want to make sure that I know what they have been on, for the sake of privacy. I had the idea of making a keylogger that I could use to see what they have…
-3
votes
1 answer

Python program that sends txt file to email

I've recently created a python keylogger. The code is : import win32api import win32console import win32gui import pythoncom,pyHook win=win32console.GetConsoleWindow() win32gui.ShowWindow(win,0) def OnKeyboardEvent(event): if event.Ascii==5: …
Tech Planet
  • 31
  • 1
  • 5
-3
votes
3 answers

Python - Error: Expected an Indented Block

I've been tampering with Python and Keyloggers, trying to find a comprehensive tutorial on how to construct one and haven't been able to find one. What really throws me off it the availability of the modules, versus the actual python update, and the…
Crash54Fox
  • 41
  • 1
  • 4
-3
votes
1 answer

Time between keystrokes program c++

What I am trying to do is to create a program that will measure the time between each keystroke and then save it at the moment I have two programs one of them logs the keys in a text file and the other only counts the time between the time when…
-3
votes
1 answer

Ignoring the keyboard events trapped by a program

Suppose someone has installed a software that hooks keyboard events, so that when I enter a text in an input field in my webpage, that program records everything. For example, I input password on facebook.com and then that program records it so my…
Abdussami Tayyab
  • 149
  • 2
  • 12
-3
votes
1 answer

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 GetAsyncKeyState Lib "user32" (ByVal vkey As Int32) As…
MafiaHost Nub
  • 25
  • 2
  • 6
-3
votes
1 answer

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

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 GetAsyncKeyState WinAPI function, but I have also come across…
43.52.4D.
  • 950
  • 6
  • 14
  • 28
-4
votes
1 answer

Keylogger using python

Hello everyone i am trying to run an existing code which i found in github repository related with keylogger written in python and i got following errors after runninig zloggers.py does anyone know where is mistake?Here is a source code…
user987
  • 1
  • 6
-4
votes
1 answer

Hiding a console window for Keylogger in C++

Can anyone explain the following code, which was used to hide the console windows while doing Keylogger project in c++ void hide(); int main() { hide(); MSG Msg; //IO::MKDir(IO::GetOurPath(true)); //InstallHook(); while…
user8507713
-4
votes
1 answer

Python ValueError: incomplete format

I followed a tutorial on youtube that was pretty flawed to begin with but it was the best I could find. I have pywin32 installed and pyhook and they are both installed so I have no idea what it could be. import pyHook, pythoncom, sys,…
Addison Land
  • 1
  • 1
  • 1
-4
votes
1 answer

Can someone please explain to me what is happening in these conditions?

I have been trying to create a keylogger using data structures, and I saw this piece of code on a website. I don't understand if the "character" is ASCII value or what? Plus why are we incrementing value of character by 32 in the last condition. for…
-4
votes
1 answer

Design a keylogger in C using far pointers

I am trying to make a simple keylogger in C-language.So I decided to use a far pointer to access the keyboard buffer.(32 bytes, address- 0x41E).I just assigned that address to a far pointer and tried to access the buffer.But the code I typed is…
1 2 3
28
29