File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 - uses : actions-rs/toolchain@v1
1919 with :
2020 toolchain : stable
21- - run : (test -x $HOME/.cargo/bin/mdbook || cargo install mdbook)
22- - run : mdbook build && mdbook test
23- - uses : JamesIves/github-pages-deploy-action@v4.4.1
21+ - name : install mdbook
22+ run : (test -x $HOME/.cargo/bin/mdbook || cargo install mdbook)
23+ - name : build and test
24+ run : mdbook build && mdbook test
25+ - name : publish
26+ if : github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository_owner == 'eunomia-bpf'
27+ uses : JamesIves/github-pages-deploy-action@v4.4.1
2428 with :
2529 branch : gh-pages
2630 folder : book
Original file line number Diff line number Diff line change 4444
4545这里涵盖了一系列和 eBPF 相关的高级内容,包含在 Android 上使用 eBPF 程序、使用 eBPF 程序进行可能的攻击与防御、复杂的追踪等等。将 eBPF 用户态与内核态的部分结合起来,可能能带来巨大的威力(同时也是安全隐患)。
4646
47+ Android:
48+
4749- [ 在 Android 上使用 eBPF 程序] ( src/22-android/README.md )
48- - [ 使用 eBPF 追踪 HTTP 请求或其他用户态协议] ( src/23-http/README.md )
50+
51+ 网络和追踪:
52+
53+ - [ 使用 eBPF 追踪 HTTP 请求或其他七层协议] ( src/23-http/README.md )
54+ - [ 使用 sockops 加速网络请求转发] ( src/29-sockops/README.md )
55+
56+ 安全:
57+
4958- [ 使用 eBPF 隐藏进程或文件信息] ( src/24-hide/README.md )
5059- [ 使用 bpf_send_signal 发送信号终止进程] ( src/25-signal/README.md )
5160- [ 使用 eBPF 添加 sudo 用户] ( src/26-sudo/README.md )
You can’t perform that action at this time.
0 commit comments