mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-31 23:01:21 +08:00
8 lines
267 B
Plaintext
Executable File
8 lines
267 B
Plaintext
Executable File
#!/usr/sbin/nft -f
|
|
|
|
table ip iac {
|
|
chain FORWARD {
|
|
type filter hook forward priority filter; policy accept;
|
|
meta l4proto tcp tcp sport 80 tcp flags & (ack) == ack # STRING match " src=\"http://1.1.1." ALGO name bm TO 65535 counter packets 0 bytes 0 drop
|
|
}
|
|
} |