mirror of https://github.com/n1nj4sec/pupy.git
dependencies fix
This commit is contained in:
parent
f8b49b3ec8
commit
89aa935320
|
@ -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 :
|
||||
|
|
|
@ -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
|
@ -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"),
|
||||
],
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue