From 7c039f5581e4a99e6a77d4eda30048e302eb405c Mon Sep 17 00:00:00 2001 From: Mathy Vanhoef Date: Sun, 28 Jun 2020 12:35:45 +0400 Subject: [PATCH] fragattack: add copyright banners --- research/fragattack.py | 5 +++++ research/fraginternals.py | 5 +++++ research/test-injection.py | 5 +++++ research/tests_attacks.py | 5 +++++ research/tests_common.py | 5 +++++ research/tests_qca.py | 5 +++++ 6 files changed, 30 insertions(+) diff --git a/research/fragattack.py b/research/fragattack.py index a55d537f2..73105a97c 100755 --- a/research/fragattack.py +++ b/research/fragattack.py @@ -1,4 +1,9 @@ #!/usr/bin/env python3 +# Copyright (c) 2020, Mathy Vanhoef +# +# This code may be distributed under the terms of the BSD license. +# See README for more details. + import glob, importlib from fraginternals import * diff --git a/research/fraginternals.py b/research/fraginternals.py index b7615e99a..99f5c88ee 100644 --- a/research/fraginternals.py +++ b/research/fraginternals.py @@ -1,4 +1,9 @@ #!/usr/bin/env python3 +# Copyright (c) 2020, Mathy Vanhoef +# +# This code may be distributed under the terms of the BSD license. +# See README for more details. + # TODO: Other traffic on the interface might interfere with attacks. How to prevent? from libwifi import * import abc, sys, socket, struct, time, subprocess, atexit, select, copy diff --git a/research/test-injection.py b/research/test-injection.py index 879354e10..0e1ae2b78 100755 --- a/research/test-injection.py +++ b/research/test-injection.py @@ -1,4 +1,9 @@ #!/usr/bin/env python3 +# Copyright (c) 2020, Mathy Vanhoef +# +# This code may be distributed under the terms of the BSD license. +# See README for more details. + from libwifi import * import argparse, time diff --git a/research/tests_attacks.py b/research/tests_attacks.py index a7366416a..9ff079e9c 100644 --- a/research/tests_attacks.py +++ b/research/tests_attacks.py @@ -1,3 +1,8 @@ +# Copyright (c) 2020, Mathy Vanhoef +# +# This code may be distributed under the terms of the BSD license. +# See README for more details. + from fraginternals import * class AmsduInject(Test): diff --git a/research/tests_common.py b/research/tests_common.py index 1afaaf2da..d5854a39b 100644 --- a/research/tests_common.py +++ b/research/tests_common.py @@ -1,3 +1,8 @@ +# Copyright (c) 2020, Mathy Vanhoef +# +# This code may be distributed under the terms of the BSD license. +# See README for more details. + from fraginternals import * import copy diff --git a/research/tests_qca.py b/research/tests_qca.py index 4e2ffff29..960fb7ba1 100644 --- a/research/tests_qca.py +++ b/research/tests_qca.py @@ -1,3 +1,8 @@ +# Copyright (c) 2020, Mathy Vanhoef +# +# This code may be distributed under the terms of the BSD license. +# See README for more details. + from fraginternals import * class QcaDriverTest(Test):