예제 #1
0
 def __init__(self, *args, **kwargs):
     result = BaseModule.__init__(self, *args, **kwargs)
     # stores the values read from the CSV file
     self.__values = []
     # keeps track of which module options correspond to which CSV column index
     self.__csv_indices = {}
     # account for the fact that module options are stored and preloaded from a config file
     self.__init_options()
     return result
예제 #2
0
 def __init__(self, *args, **kwargs):
     result = BaseModule.__init__(self, *args, **kwargs)
     # stores the values read from the CSV file
     self.__values = []
     # keeps track of which module options correspond to which CSV column index
     self.__csv_indices = {}
     # account for the fact that module options are stored and preloaded from a config file
     self.__init_options()
     return result
예제 #3
0
 def __init__(self, *args, **kwargs):
     result = BaseModule.__init__(self, *args, **kwargs)
     self.hosting_server = ''
     return result
예제 #4
0
 def __init__(self, *args, **kwargs):
     result = BaseModule.__init__(self, *args, **kwargs)
     return result
예제 #5
0
파일: mimikatz.py 프로젝트: 3L3N4/pentestly
 def __init__(self, *args, **kwargs):
     result = BaseModule.__init__(self, *args, **kwargs)
     self.hosting_server = ''
     return result
예제 #6
0
 def __init__(self, *args, **kwargs):
     result = BaseModule.__init__(self, *args, **kwargs)
     self.hosting_server = ''
     self.new_script_name = '/root/.recon-ng/scripts/shellcode.ps1'
     return result
예제 #7
0
 def __init__(self, *args, **kwargs):
     result = BaseModule.__init__(self, *args, **kwargs)
     self.hosting_server = ''
     self.new_script_name = '/root/.recon-ng/scripts/shellcode.ps1'
     return result