fragattack: add copyright banners

This commit is contained in:
Mathy Vanhoef 2020-06-28 12:35:45 +04:00 committed by Mathy Vanhoef
parent 3c772c7df8
commit 7c039f5581
6 changed files with 30 additions and 0 deletions

View File

@ -1,4 +1,9 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# 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.
import glob, importlib import glob, importlib
from fraginternals import * from fraginternals import *

View File

@ -1,4 +1,9 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# 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.
# TODO: Other traffic on the interface might interfere with attacks. How to prevent? # TODO: Other traffic on the interface might interfere with attacks. How to prevent?
from libwifi import * from libwifi import *
import abc, sys, socket, struct, time, subprocess, atexit, select, copy import abc, sys, socket, struct, time, subprocess, atexit, select, copy

View File

@ -1,4 +1,9 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# 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.
from libwifi import * from libwifi import *
import argparse, time import argparse, time

View File

@ -1,3 +1,8 @@
# 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.
from fraginternals import * from fraginternals import *
class AmsduInject(Test): class AmsduInject(Test):

View File

@ -1,3 +1,8 @@
# 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.
from fraginternals import * from fraginternals import *
import copy import copy

View File

@ -1,3 +1,8 @@
# 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.
from fraginternals import * from fraginternals import *
class QcaDriverTest(Test): class QcaDriverTest(Test):