Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dorkamotorka/ssl-ebpf

Observability of Encrypted Traffic using eBPF
https://github.com/dorkamotorka/ssl-ebpf

Last synced: 16 days ago
JSON representation

Observability of Encrypted Traffic using eBPF

Awesome Lists containing this project

README

        

# eBPF - Capturing SSL/TLS Plain Text Data Using uprobe

- Run eBPF Program

```
go generate
go build
sudo ./ssl-ebpf
```

- Run HTTPS Server in `/test` directory:

```
go run main.go
```

- Then you can make requests using `curl`:

```
curl -X GET https://localhost:4445 --insecure --http1.1
curl -X POST https://localhost:4445 --insecure --http1.1
curl -X PUT https://localhost:4445 --insecure --http1.1
curl -X PATCH https://localhost:4445 --insecure --http1.1
curl -X DELETE https://localhost:4445 --insecure --http1.1
curl -X CONNECT https://localhost:4445 --insecure --http1.1
curl -X OPTIONS https://localhost:4445 --insecure --http1.1
curl -X TRACE https://localhost:4445 --insecure --http1.1
```