babel-tester/firewall/restrict-http.conf
Yohann D'ANELLO cb8e699bb0
PoC with Re6st
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
2021-06-14 16:14:14 +02:00

17 lines
291 B
Plaintext
Executable File

#!/usr/sbin/nft -f
flush ruleset
table inet filter {
chain input {
type filter hook input priority 0;
}
chain forward {
type filter hook forward priority 0; policy accept
accept
}
chain output {
type filter hook output priority 0;
}
}