Skip to content

cisco-open/secure-endpoint-ebpf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

secure-endpoint-ebpf

This repo contains the network, file, and process monitoring eBPF programs used by the Cisco Secure Endpoint linux connector to detect various events on the system.

For more information about Cisco Secure Endpoint please visit the product page here.

Building

This code cannot be directly built, it must be loaded into the Linux kernel through eBPF. One of the easiest and most straightforward ways to do this is to use Python bindings provided by BCC.

This is an example of how this can be done in Python once BCC is installed:

from bcc import BPF
import os

bpftext = R"""
<copy eBPF code from files here>
"""

b = BPF(text=bpftext)

# each kprobe must be attached, most of the functions in the files attach to a kprobe
# using attach_kprobe where "event" is the name of the event you want to attach the kprobe to 
# and "fn_name" is the name of the function in the ebpf program.
# below is an example for the fput_probe
b.attach_kprobe(event="__fput", fn_name="__fput_probe")

# the easiest way to get output from/debug the code is by inserting the bpf_trace_printk() 
# helper into the ebpf code. bpf_trace_printk() statements are similar to printf() and
# can be read using 
b.trace_print()

Issues and contributions

We use GitHub to track issues and accept contributions. If you'd like to raise an issue or open a pull request with changes, refer to our contribution guide.

More Resources

Here are some additional resources on what eBPF is and how to get started.

License

Distributed under the LGPL-2.1 License. See LICENSE for more information

About

eBPF programs for Cisco Secure Endpoint Linux Connector

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published