Ник | Пост | Дата |
---|---|---|
ValdikSS |
Small example of using BPF to block TCP RST by @darkk. Works on Android, does not require root.
This specific example shows how to circumvent one-sided TCP reset attack by an on-path DPI box blocking On-path DPI box is assumed to be passive , being unable to drop packets, just being able to inject some. One-sided TCP reset attack means that RST packet is injected only towards the “client” endpoints and the “server” does not get another RST. E.g. some networks in Uganda block OpenVPN/TCP with two-sided TCP reset attacks. One has to control the server as well to mitigate two-sided attack. | 2019-09-23T14:48:14.861Z |
ValdikSS | Note that you can’t use eBPF on Android: bpf() syscall is blocked by seccomp (it’s allowed only for system, but not for user applications). Android seccomp whitelists all syscalls in SYSCALLS.TXT, and then blacklists some, or whitelists missing. Since bpf() is missing from SYSCALLS.TXT and not whitelisted for applications, we can’t use bpf() on stock Android. You can still use regular BPF (don’t confuse it with bpf() syscall which is used for eBPF). | 2019-09-23T15:17:58.161Z |
ValdikSS | cBPF and eBPF support test example for Android, C source code and armv7/arm64 binaries. More information here: https://www.reddit.com/r/androiddev/comments/93raql/help_me_test_ebpf_support_on_modern_android/ | 2019-10-09T19:00:21.128Z |