mirror of https://github.com/n1nj4sec/pupy.git
update pupygen -l. close issue #165
This commit is contained in:
parent
31ce1efdc0
commit
e4c0d837e3
|
@ -256,14 +256,17 @@ def parse_scriptlets(args_scriptlet, debug=False):
|
|||
class ListOptions(argparse.Action):
|
||||
def __call__(self, parser, namespace, values, option_string=None):
|
||||
print colorize("## available formats :", "green")+" usage: -f <format>"
|
||||
print "\t- exe_86, exe_x64 : generate PE exe for windows"
|
||||
print "\t- dll_86, dll_x64 : generate reflective dll for windows"
|
||||
print "\t- py : generate a fully packaged python file (with all the dependencies packaged and executed from memory), all os (need the python interpreter installed)"
|
||||
print "\t- pyinst : generate a python file compatible with pyinstaller"
|
||||
print "\t- py_oneliner : same as \"py\" format but served over http to load it from memory with a single command line."
|
||||
print "\t- ps1 : generate ps1 file which embeds pupy dll (x86-x64) and inject it to current process."
|
||||
print "\t- ps1_oneliner : load pupy remotely from memory with a single command line using powershell."
|
||||
print "\t- rubber_ducky : generate a Rubber Ducky script and inject.bin file (Windows Only)."
|
||||
print "\t- exe_86, exe_x64 : generate PE exe for windows"
|
||||
print "\t- dll_86, dll_x64 : generate reflective dll for windows"
|
||||
print "\t- lin_x86, lin_x64 : generate a ELF binary for linux"
|
||||
print "\t- so_x86, so_x64 : generate a ELF .so for linux"
|
||||
print "\t- py : generate a fully packaged python file (with all the dependencies packaged and executed from memory), all os (need the python interpreter installed)"
|
||||
print "\t- pyinst : generate a python file compatible with pyinstaller"
|
||||
print "\t- py_oneliner : same as \"py\" format but served over http to load it from memory with a single command line."
|
||||
print "\t- ps1 : generate ps1 file which embeds pupy dll (x86-x64) and inject it to current process."
|
||||
print "\t- ps1_oneliner : load pupy remotely from memory with a single command line using powershell."
|
||||
print "\t- rubber_ducky : generate a Rubber Ducky script and inject.bin file (Windows Only)."
|
||||
print "\t- apk : generate a apk for running pupy on android"
|
||||
|
||||
print ""
|
||||
print colorize("## available transports :","green")+" usage: -t <transport>"
|
||||
|
|
Loading…
Reference in New Issue