Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[EN] add eBPF #2050

Merged
merged 42 commits into from
Aug 17, 2023
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
9817c40
[EN] Add new term (eBPF)
MaryamTavakkoli May 16, 2023
a0bb35f
Update ebpf.md
CathPag May 30, 2023
9f09437
Apply suggested editions
MaryamTavakkoli Jun 11, 2023
a8f447d
Update content/en/ebpf.md
CathPag Jun 13, 2023
6cc2fd8
Update content/en/ebpf.md
CathPag Jun 13, 2023
1f50e9c
Update content/en/ebpf.md
CathPag Jun 13, 2023
5a0fa19
Update content/en/ebpf.md
CathPag Jun 13, 2023
8d37fe6
Update content/en/ebpf.md
CathPag Jun 13, 2023
34b0346
Update content/en/ebpf.md
MaryamTavakkoli Jun 27, 2023
c9dd720
Update content/en/ebpf.md
MaryamTavakkoli Jun 27, 2023
c2f68d3
Update content/en/ebpf.md
MaryamTavakkoli Jun 27, 2023
5f5a969
Update content/en/ebpf.md
MaryamTavakkoli Jun 27, 2023
9512615
Update content/en/ebpf.md
MaryamTavakkoli Jun 27, 2023
909d3af
Update content/en/ebpf.md
MaryamTavakkoli Jun 27, 2023
32d9ee4
Update wordlist.txt
MaryamTavakkoli Jun 27, 2023
bc91bc8
Update content/en/ebpf.md
MaryamTavakkoli Jul 6, 2023
baed5a4
Update content/en/ebpf.md
MaryamTavakkoli Jul 6, 2023
d7159a9
Update content/en/ebpf.md
MaryamTavakkoli Jul 6, 2023
b73fc51
Update content/en/ebpf.md
MaryamTavakkoli Jul 6, 2023
54c647e
Update content/en/ebpf.md
MaryamTavakkoli Aug 14, 2023
30f2763
Update content/en/ebpf.md
MaryamTavakkoli Aug 14, 2023
915938a
Update content/en/ebpf.md
MaryamTavakkoli Aug 14, 2023
2f1da0e
Update content/en/ebpf.md
MaryamTavakkoli Aug 14, 2023
56f5b34
Update content/en/ebpf.md
MaryamTavakkoli Aug 14, 2023
dc19137
Update content/en/ebpf.md
MaryamTavakkoli Aug 16, 2023
84289c7
Update content/en/ebpf.md
MaryamTavakkoli Aug 16, 2023
58a7e0e
Update content/en/ebpf.md
MaryamTavakkoli Aug 16, 2023
0bd71b8
Update content/en/ebpf.md
MaryamTavakkoli Aug 16, 2023
b8e2a24
Update content/en/ebpf.md
MaryamTavakkoli Aug 16, 2023
7b2b63c
Update content/en/ebpf.md
MaryamTavakkoli Aug 16, 2023
cd7f28b
Update ebpf.md
MaryamTavakkoli Aug 16, 2023
04ef547
Update wordlist.txt
MaryamTavakkoli Aug 16, 2023
400508a
Update content/en/ebpf.md
MaryamTavakkoli Aug 17, 2023
0fb6cf1
Update content/en/ebpf.md
MaryamTavakkoli Aug 17, 2023
854014d
Update content/en/ebpf.md
MaryamTavakkoli Aug 17, 2023
e4b7608
Update content/en/ebpf.md
MaryamTavakkoli Aug 17, 2023
003a7f7
Update content/en/ebpf.md
MaryamTavakkoli Aug 17, 2023
9ece25a
Update content/en/ebpf.md
MaryamTavakkoli Aug 17, 2023
efea68d
Update content/en/ebpf.md
MaryamTavakkoli Aug 17, 2023
8289205
Update content/en/ebpf.md
iamNoah1 Aug 17, 2023
0f0d2f1
Update wordlist.txt
iamNoah1 Aug 17, 2023
491c19c
Update wordlist.txt
iamNoah1 Aug 17, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update content/en/ebpf.md
Co-authored-by: Catherine Paganini <74001907+CathPag@users.noreply.github.com>
Signed-off-by: Maryam Tavakkoli <maryam_tavakkoli@hotmail.com>
MaryamTavakkoli and CathPag authored Aug 17, 2023
commit 003a7f78e8f005d1c07a90b6ce1d123d01d67781
2 changes: 1 addition & 1 deletion content/en/ebpf.md
Original file line number Diff line number Diff line change
@@ -36,6 +36,6 @@ It runs in a sandboxed environment within the kernel, providing isolation and mi
If a vulnerability or flaw is exploited in an eBPF program, its impact is generally limited to the sandboxed environment.
Moreover, before an eBPF program can start running in the kernel, it has to pass some verifications.
The verifier component checks the eBPF program for potential safety violations,
such as out-of-bounds memory access, infinite loops, and the usage of unauthorized kernel functions.
such as out-of-bounds memory access, infinite loops, and unauthorized kernel functions.
This way, it ensures that the program will not enter an infinite loop and will not cause a kernel crash.
MaryamTavakkoli marked this conversation as resolved.
Show resolved Hide resolved
These safety controls make eBPF a more secure option to run applications in the Linux kernel compared to the Linux kernel modules.
MaryamTavakkoli marked this conversation as resolved.
Show resolved Hide resolved