Exemplo n.º 1
0
 def __init__(self):
     self.badges = badges()
     self.helper = helper()
     self.listener = listener()
     self.plugin = plugin()
     self.loader = loader()
     
     self.details = {
         'Name':        "macos/reverse_tcp/zeterpreter",
         'Authors':     ['enty8080'],
         'Description': "macOS implant written in golang and compiled for macOS.",
         'Comment':     "First macOS implant in history written in golang! Yay!"
     }
     
     self.options = {
         'LHOST': {
             'Description': 'Local host.',
             'Value':       self.helper.getip(),
             'Required':    True
         },
         'LPORT': {
             'Description': 'Local port',
             'Value':       self.helper.lport,
             'Required':    True
         },
     }
Exemplo n.º 2
0
 def __init__(self):
     self.main = main()
     self.io = io()
     self.tip = tip()
     self.execute = execute()
     self.loader = loader()
     self.config = config()
     self.badges = badges()
     self.banner = banner()
     self.storage = storage()
Exemplo n.º 3
0
 def __init__(self):
     self.io = io()
     self.tip = tip()
     self.execute = execute()
     self.loader = loader()
     self.config = config()
     self.badges = badges()
     self.banner = banner()
     self.storage = storage()
     self.modules = modules()
     self.exceptions = exceptions()
Exemplo n.º 4
0
    def __init__(self):
        self.io = io()
        self.tip = tip()
        self.jobs = jobs()
        self.execute = execute()
        self.loader = loader()
        self.config = config()
        self.badges = badges()
        self.banner = banner()
        self.colors = colors()
        self.local_storage = local_storage()
        self.modules = modules()
        self.exceptions = exceptions()

        self.history = self.config.path_config['base_paths']['history_path']
Exemplo n.º 5
0
 def __init__(self, ghost):
     self.ghost = ghost
     self.badges = badges()
     self.helper = helper()
     self.loader = loader(ghost)