mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
12 lines
278 B
Bash
Executable File
12 lines
278 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2020, Mathy Vanhoef <mathy.vanhoef@nyu.edu>
|
|
#
|
|
# This code may be distributed under the terms of the BSD license.
|
|
# See README for more details.
|
|
set -e
|
|
|
|
iptables -P INPUT DROP
|
|
iptables -P FORWARD DROP
|
|
ip6tables -P INPUT DROP
|
|
ip6tables -P FORWARD DROP
|