add English doc (#55)

* add english documents

* docs: add root english README
This commit is contained in:
云微
2023-08-08 08:55:55 +01:00
committed by GitHub
parent dc37ec0fcf
commit ef9a1d9b47
38 changed files with 5587 additions and 6 deletions

View File

@@ -0,0 +1,24 @@
# Terminate Malicious Processes Using bpf_send_signal
Compile:
```bash
make
```
Usage:
```bash
sudo ./bpfdos
```
This program sends a `SIG_KILL` signal to any program that tries to use the `ptrace` system call, such as `strace`.
Once bpf-dos starts running, you can test it by running the following command:
```bash
strace /bin/whoami
```
## References
- <https://github.com/pathtofile/bad-bpf>.