Add eviltwin args. Add "Dependency" subclass
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#!/usr/bin/python2.7
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from .dependency import Dependency
|
||||
from .tshark import Tshark
|
||||
from .wash import Wash
|
||||
from ..util.process import Process
|
||||
@@ -10,8 +11,11 @@ from ..model.client import Client
|
||||
|
||||
import os, time
|
||||
|
||||
class Airodump(object):
|
||||
class Airodump(Dependency):
|
||||
''' Wrapper around airodump-ng program '''
|
||||
dependency_required = True
|
||||
dependency_name = 'airodump-ng'
|
||||
dependency_url = 'https://www.aircrack-ng.org/install.html'
|
||||
|
||||
def __init__(self, interface=None, channel=None, encryption=None,\
|
||||
wps=False, target_bssid=None, output_file_prefix='airodump',\
|
||||
|
||||
Reference in New Issue
Block a user