dependencies fix

This commit is contained in:
n1nj4sec 2016-10-08 14:50:51 +02:00
parent f8b49b3ec8
commit 89aa935320
11 changed files with 1457 additions and 2 deletions

View File

@ -8,7 +8,7 @@ __class_name__="Pywerview"
@config(cat="gather")
class Pywerview(PupyModule):
""" Rewriting of some PowerView's functionalities in Python """
dependencies=["pywerview", "impacket", "unicodedata", "calendar", "bs4", "pdb", "cmd", "bdb", "repr", "pprint", "htmlentitydefs", "HTMLParser", "markupbase", "OpenSSL", "six","cryptography","enum", "_cffi_backend", "pkg_resources", "plistlib", "uu", "quopri", "ipaddress", "idna"]
dependencies=["pywerview", "impacket", "calendar", "bs4", "pdb", "cmd", "bdb", "repr", "pprint", "htmlentitydefs", "HTMLParser", "markupbase", "OpenSSL"]
def init_argparse(self):
# changes from original main :

View File

@ -66,7 +66,6 @@ class Rdp(PupyModule):
self.client.load_package("pupyutils.rdp_check")
self.client.load_package("impacket")
self.client.load_package("calendar")
self.client.load_package("six")
self.client.load_package("OpenSSL")
for host in hosts:
with redirected_stdio(self.client.conn):

File diff suppressed because it is too large Load Diff

View File

@ -23,6 +23,21 @@ packages_dependencies={
"pyaudio" : [
(LOAD_PACKAGE, "_portaudio"),
],
"OpenSSL" : [
(LOAD_PACKAGE, "six"),
(LOAD_PACKAGE, "enum"),
(LOAD_PACKAGE, "cryptography"),
(LOAD_PACKAGE, "_cffi_backend"),
(LOAD_PACKAGE, "plistlib"),
(LOAD_PACKAGE, "uu"),
(LOAD_PACKAGE, "quopri"),
(LOAD_PACKAGE, "pyparsing"),
(LOAD_PACKAGE, "pkg_resources"),
(LOAD_PACKAGE, "pprint"),
(LOAD_PACKAGE, "ipaddress"),
(LOAD_PACKAGE, "idna"),
(LOAD_PACKAGE, "unicodedata"),
],
}