diff --git a/settings.py b/settings.py index 64ff0ca..d8e7f04 100644 --- a/settings.py +++ b/settings.py @@ -23,7 +23,7 @@ import subprocess from utils import * -__version__ = 'Responder 3.1.5.0' +__version__ = 'Responder 3.1.6.0' class Settings: diff --git a/utils.py b/utils.py index 38a72b1..58fa108 100644 --- a/utils.py +++ b/utils.py @@ -29,7 +29,12 @@ try: import netifaces except: sys.exit('You need to install python-netifaces or run Responder with python3...\nTry "apt-get install python-netifaces" or "pip install netifaces"') - + +try: + import aioquic +except: + sys.exit('You need to install aioquic...\nTry "apt-get install python-aioquic" or "pip install aioquic"') + from calendar import timegm def if_nametoindex2(name):