keylogger

(★ 49)

Keylogger em Python

File Explorer

  • keylogger.py
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

daemon

View Details ▼

Turns other processes into daemons.

daemon {{[-n|--name]}} "{{name}}" {{command}}

Run a command as a daemon:

daemon {{[-n|--name]}} "{{name}}" {{[-r|--respawn]}} {{command}}

Run a command as a daemon which will restart if the command crashes:

daemon {{[-n|--name]}} "{{name}}" {{[-r|--respawn]}} {{[-A|--attempts]}} 2 {{[-L|--delay]}} 10 {{command}}

Run a command as a daemon which will restart if it crashes, with two attempts every 10 seconds:

// repository documentation