Updated changelog and version number. Added '--version' cli option.
parent
473be51acd
commit
b0d90be6fe
14
changelog
14
changelog
|
@ -1,3 +1,17 @@
|
||||||
|
1/15/2016
|
||||||
|
---------
|
||||||
|
-start of command line option integration, use './empire -h' to see options
|
||||||
|
-bug fixes
|
||||||
|
-'searchmodule' with no arguments now lists all modules
|
||||||
|
|
||||||
|
1/14/2016
|
||||||
|
---------
|
||||||
|
-Fix for some UTF-8 encoding issues
|
||||||
|
|
||||||
|
1/10/2016
|
||||||
|
----------
|
||||||
|
-Corrected several bugs in how the workingHours window is handled in the agent
|
||||||
|
|
||||||
============
|
============
|
||||||
12/29/2015 - RELEASE 1.4
|
12/29/2015 - RELEASE 1.4
|
||||||
============
|
============
|
||||||
|
|
4
empire
4
empire
|
@ -18,8 +18,12 @@ if __name__ == '__main__':
|
||||||
parser.add_argument('-s', '--stager', nargs='?', const="list", help='Specify a stager to generate. Lists all stagers if none is specified.')
|
parser.add_argument('-s', '--stager', nargs='?', const="list", help='Specify a stager to generate. Lists all stagers if none is specified.')
|
||||||
parser.add_argument('-o', '--stager-options', nargs='*', help="Supply options to set for a stager in OPTION=VALUE format. Lists options if nothing is specified.")
|
parser.add_argument('-o', '--stager-options', nargs='*', help="Supply options to set for a stager in OPTION=VALUE format. Lists options if nothing is specified.")
|
||||||
parser.add_argument('-l', '--listener', nargs='?', const="list", help='Display listener options. Displays all listeners if nothing is specified.')
|
parser.add_argument('-l', '--listener', nargs='?', const="list", help='Display listener options. Displays all listeners if nothing is specified.')
|
||||||
|
parser.add_argument('-v', '--version', action='store_true', help='Display current Empire version.')
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
if args.version:
|
||||||
|
print empire.VERSION
|
||||||
|
else:
|
||||||
main = empire.MainMenu(args=args)
|
main = empire.MainMenu(args=args)
|
||||||
main.cmdloop()
|
main.cmdloop()
|
||||||
|
|
|
@ -9,7 +9,7 @@ menu loops.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# make version for Empire
|
# make version for Empire
|
||||||
VERSION = "1.4.0"
|
VERSION = "1.4.1"
|
||||||
|
|
||||||
|
|
||||||
from pydispatch import dispatcher
|
from pydispatch import dispatcher
|
||||||
|
|
Loading…
Reference in New Issue