-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from ddosify/feat/filter-processes
Feat/filter processes
- Loading branch information
Showing
51 changed files
with
991 additions
and
949 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
.DS_Store | ||
.DS_Store | ||
.vscode/settings.json | ||
.vscode/launch.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
//go:build ignore | ||
|
||
#include "../headers/bpf.h" | ||
#include "../headers/common.h" | ||
#include "../headers/tcp.h" | ||
#include "../headers/l7_req.h" | ||
|
||
|
||
// order is important | ||
#ifndef __BPF__H | ||
#define __BPF__H | ||
#include <bpf/bpf_core_read.h> | ||
#include <bpf/bpf_helpers.h> | ||
#include <bpf/bpf_endian.h> | ||
#include <bpf/bpf_tracing.h> | ||
#endif | ||
|
||
#define FILTER_OUT_NON_CONTAINER | ||
|
||
#include <stddef.h> | ||
#include "../headers/pt_regs.h" | ||
#include <sys/socket.h> | ||
|
||
#include "../headers/log.h" | ||
|
||
#include "macros.h" | ||
#include "struct.h" | ||
#include "map.h" | ||
|
||
#include "tcp.c" | ||
#include "proc.c" | ||
|
||
#include "http.c" | ||
#include "amqp.c" | ||
#include "postgres.c" | ||
#include "openssl.c" | ||
#include "http2.c" | ||
#include "tcp_sock.c" | ||
#include "go_internal.h" | ||
#include "l7.c" | ||
|
||
char __license[] SEC("license") = "Dual MIT/GPL"; | ||
|
||
|
Oops, something went wrong.