Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sloorush/ebpf-keylogger
A Keylogger with eBPF
https://github.com/sloorush/ebpf-keylogger
ebpf
Last synced: 10 days ago
JSON representation
A Keylogger with eBPF
- Host: GitHub
- URL: https://github.com/sloorush/ebpf-keylogger
- Owner: sloorush
- License: mit
- Created: 2021-08-15T07:51:33.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-03T05:55:29.000Z (about 3 years ago)
- Last Synced: 2024-07-30T18:13:34.909Z (5 months ago)
- Topics: ebpf
- Language: Python
- Homepage:
- Size: 1.38 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eBPF Keylogger
Keylogger written in [eBPF](https://ebpf.io/).
## How to run
```sh=
❯ sudo ./ebpf-keylogger -h
usage: bpf-keylogger [-h] [--debug] [-t] [-o OUTFILE] [-u]A keylogger written in eBPF.
optional arguments:
-h, --help show this help message and exit
--debug Print debugging info.
-t, --timestamp Print time stamps.
-o OUTFILE, --outfile OUTFILE
Output trace to a file instead of stdout.
-u, --upload upload the files to google drive
```## Helpful cmds
```sh=
# To get help
sudo ./ebpf-keylogger -h# To get the logs in std out run
sudo ./ebpf-keylogger# You might have to give it executable permission
chmod +x ./ebpf-keylogger# To get the logs in an outfile
sudo ./ebpf-keylogger -o OUTFILE.txt# To run it with timestamps,
sudo ./ebpf-keylogger -o OUTFILE.txt -t# To run it with uploads to google drive
sudo ./ebpf-keylogger -o OUTFILE.txt -t -u
```Requires:
- The latest version of [bcc](https://github.com/iovisor/bcc)
# Disclaimer
**This code is made for EDUCATIONAL PURPOSES ONLY. We are not liable for any damages**