Updated changelog and version number. Added '--version' cli option.

1.6
Harmj0y 2016-02-16 02:27:37 -05:00
parent 473be51acd
commit b0d90be6fe
3 changed files with 21 additions and 3 deletions

View File

@ -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
============

4
empire
View File

@ -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('-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('-v', '--version', action='store_true', help='Display current Empire version.')
args = parser.parse_args()
if args.version:
print empire.VERSION
else:
main = empire.MainMenu(args=args)
main.cmdloop()

View File

@ -9,7 +9,7 @@ menu loops.
"""
# make version for Empire
VERSION = "1.4.0"
VERSION = "1.4.1"
from pydispatch import dispatcher