mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-05 12:35:52 -07:00
added check for aioquic & updated version to reflect recent changes
This commit is contained in:
parent
e346c01695
commit
a76ee47867
2 changed files with 7 additions and 2 deletions
|
@ -23,7 +23,7 @@ import subprocess
|
|||
|
||||
from utils import *
|
||||
|
||||
__version__ = 'Responder 3.1.5.0'
|
||||
__version__ = 'Responder 3.1.6.0'
|
||||
|
||||
class Settings:
|
||||
|
||||
|
|
7
utils.py
7
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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue