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: Nate W. <natew@cncf.io>
Signed-off-by: Maryam Tavakkoli <maryam_tavakkoli@hotmail.com>
Signed-off-by: MaryamTavakkoli <maryam_tavakkoli@hotmail.com>
MaryamTavakkoli and nate-double-u committed Jul 25, 2023
commit 5f5a9696e15de594b5f4cb94258983b8c241cd32
2 changes: 1 addition & 1 deletion content/en/ebpf.md
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ This might be sufficient for many scenarios, however, there are cases where deve
Observability, security, and networking features are some of the ideal examples to be implemented within the kernel space.
One of the possibilities to reach such a goal is to use Linux kernel modules, which allow extending the kernel base without adding directly to the kernel source code.
While using Linux kernel modules bring the mentioned benefits, it adds to the security risks because they operate within the kernel space and can make the kernel crash.
Kernel modules have elevated privileges and direct access to system resources, making them a potential target for attackers.
Kernel modules have elevated privileges and direct access to system resources, which, if not properly secured, can be exploited by attackers.

## How it helps
Compared to Linux Kernel modules, eBPF provides a more controlled and contained environment for executing user-defined programs.