mirror of
https://github.com/lgandx/Responder.git
synced 2025-12-15 12:19:04 +00:00
added check for aioquic & updated version to reflect recent changes
This commit is contained in:
@@ -23,7 +23,7 @@ import subprocess
|
|||||||
|
|
||||||
from utils import *
|
from utils import *
|
||||||
|
|
||||||
__version__ = 'Responder 3.1.5.0'
|
__version__ = 'Responder 3.1.6.0'
|
||||||
|
|
||||||
class Settings:
|
class Settings:
|
||||||
|
|
||||||
|
|||||||
5
utils.py
5
utils.py
@@ -30,6 +30,11 @@ try:
|
|||||||
except:
|
except:
|
||||||
sys.exit('You need to install python-netifaces or run Responder with python3...\nTry "apt-get install python-netifaces" or "pip install netifaces"')
|
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
|
from calendar import timegm
|
||||||
|
|
||||||
def if_nametoindex2(name):
|
def if_nametoindex2(name):
|
||||||
|
|||||||
Reference in New Issue
Block a user