From 1a39a2a87780080fc2acc362ea2e3c020334a337 Mon Sep 17 00:00:00 2001 From: David Kennedy Date: Wed, 3 Feb 2021 14:01:50 -0500 Subject: [PATCH] bump version to match changelog --- CHANGELOG.txt | 10 ++++++++++ trevorc2_server.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 9cde3fd..cfc1568 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,13 @@ +~~~~~~~~~~~~~~~~ +version 2.1 +~~~~~~~~~~~~~~~~ + +* Added the cmd prompt library so that we have autocomplete on commands using tab as well as history (arrow up/down). +* -- Also help is added to each command so you can type help (Also tab complete) +* Added servercmd as menu option to run commands on Trevor Server instead of ifconfig +* Converted agents into proper class objects and agentlistclass to add them into a userlist +* Updated the Readme.md + ~~~~~~~~~~~~~~~~ version 2.0 ~~~~~~~~~~~~~~~~ diff --git a/trevorc2_server.py b/trevorc2_server.py index 10efe8d..4490b4a 100755 --- a/trevorc2_server.py +++ b/trevorc2_server.py @@ -95,7 +95,7 @@ logging.basicConfig(level=logging.CRITICAL, format='[%(asctime)s] %(message)s', log = logging.getLogger(__name__) __author__ = 'Dave Kennedy (@HackingDave)' -__version__ = 0.71 +__version__ = 2.1 # ROOT CHECK if os.geteuid() != 0: