Autokey consists of two files:
injector.py
- Injects keystrokes from a given file to simulate keyboardlogger.py
- Keylogger which logs keystrokes into log.txt file
git clone https://github.com/spignelon/autokey.git
cd autokey
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python injector.py
python logger.py
- injector.py by default uses random.uniform() with range 0 to 0.4, you can edit this range according to your needs, or you can leave it default (will work in most cases).
- Use Esc (escape) key to quit the logger.py