Skip to content
This repository was archived by the owner on Dec 6, 2023. It is now read-only.

Commit 895f16c

Browse files
author
mpgn
authored
Merge pull request #395 from byt3bl33d3r/v5-dev
CrackMapExec v5.1.0dev - 3TH@n
2 parents 0a49f75 + 7323502 commit 895f16c

20 files changed

+1037
-54
lines changed

.github/workflows/crackmapexec.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: CrackMapExec tests on ${{ matrix.os }}
1919
uses: actions/setup-python@v1
2020
with:
21-
python-version: 3.8
21+
python-version: 3.7
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ data/cme.db
66
# Byte-compiled / optimized / DLL files
77
__pycache__/
88
*.py[cod]
9+
bin/
910

1011
# C extensions
1112
*.so
@@ -33,6 +34,7 @@ var/
3334
# before PyInstaller builds the exe, so as to inject date/other infos into it.
3435
*.manifest
3536
*.spec
37+
!crackmapexec.spec
3638

3739
# Installer logs
3840
pip-log.txt

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![Supported Python versions](https://img.shields.io/badge/python-3.8+-blue.svg)
1+
![Supported Python versions](https://img.shields.io/badge/python-3.7+-blue.svg)
22

33
# CrackMapExec
44

cme/cli.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
def gen_cli_args():
88

9-
VERSION = '5.0.2dev'
10-
CODENAME = 'P3l1as'
9+
VERSION = '5.1.0dev'
10+
CODENAME = '3TH@n'
1111

1212
p_loader = protocol_loader()
1313
protocols = p_loader.get_protocols()
@@ -48,8 +48,8 @@ def gen_cli_args():
4848
std_parser.add_argument("-u", metavar="USERNAME", dest='username', nargs='+', default=[], help="username(s) or file(s) containing usernames")
4949
std_parser.add_argument("-p", metavar="PASSWORD", dest='password', nargs='+', default=[], help="password(s) or file(s) containing passwords")
5050
std_parser.add_argument("-k", "--kerberos", action='store_true', help="Use Kerberos authentication from ccache file (KRB5CCNAME)")
51-
std_parser.add_argument("--aesKey", action='store_true', help="AES key to use for Kerberos Authentication (128 or 256 bits)")
52-
std_parser.add_argument("--kdcHost", action='store_true', help="IP Address of the domain controller. If omitted it will use the domain part (FQDN) specified in the target parameter")
51+
std_parser.add_argument("--aesKey", metavar="AESKEY", nargs='+', help="AES key to use for Kerberos Authentication (128 or 256 bits)")
52+
std_parser.add_argument("--kdcHost", metavar="KDCHOST", help="IP Address of the domain controller. If omitted it will use the domain part (FQDN) specified in the target parameter")
5353

5454
fail_group = std_parser.add_mutually_exclusive_group()
5555
fail_group.add_argument("--gfail-limit", metavar='LIMIT', type=int, help='max number of global failed login attempts')

cme/connection.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ def proto_flow(self):
7979
self.enum_host_info()
8080
self.proto_logger()
8181
self.print_host_info()
82-
self.login()
83-
if hasattr(self.args, 'module') and self.args.module:
84-
self.call_modules()
85-
else:
86-
self.call_cmd_args()
82+
if self.login():
83+
if hasattr(self.args, 'module') and self.args.module:
84+
self.call_modules()
85+
else:
86+
self.call_cmd_args()
8787

8888
def call_cmd_args(self):
8989
for k, v in vars(self.args).items():
@@ -227,7 +227,7 @@ def login(self):
227227
if self.plaintext_login(self.domain, usr.strip(), f_pass.strip()): return True
228228
else:
229229
if self.plaintext_login(usr.strip(), f_pass.strip()): return True
230-
230+
user.seek(0) # added june 2020, may break everything but solve this issue cme smb file -u file -p file
231231
elif isinstance(user, str):
232232
if hasattr(self.args, 'hash') and self.args.hash:
233233
with sem:

cme/crackmapexec.py

+3
Original file line numberDiff line numberDiff line change
@@ -212,3 +212,6 @@ def main():
212212

213213
if module_server:
214214
module_server.shutdown()
215+
216+
if __name__ == '__main__':
217+
main()

cme/first_run.py

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
CME_PATH = os.path.expanduser('~/.cme')
1212
TMP_PATH = os.path.join('/tmp', 'cme_hosted')
13+
if os.name == 'nt':
14+
TMP_PATH = os.getenv('LOCALAPPDATA') + '\\Temp\\cme_hosted'
1315
WS_PATH = os.path.join(CME_PATH, 'workspaces')
1416
CERT_PATH = os.path.join(CME_PATH, 'cme.pem')
1517
CONFIG_PATH = os.path.join(CME_PATH, 'cme.conf')

cme/logger.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ def info(self, msg, *args, **kwargs):
6969
msg, kwargs = self.process(u'{} {}'.format(colored("[*]", 'blue', attrs=['bold']), msg), kwargs)
7070
self.logger.info(msg, *args, **kwargs)
7171

72-
def error(self, msg, *args, **kwargs):
73-
msg, kwargs = self.process(u'{} {}'.format(colored("[-]", 'red', attrs=['bold']), msg), kwargs)
72+
def error(self, msg, color='red', *args, **kwargs):
73+
msg, kwargs = self.process(u'{} {}'.format(colored("[-]", color, attrs=['bold']), msg), kwargs)
7474
self.logger.error(msg, *args, **kwargs)
7575

7676
def debug(self, msg, *args, **kwargs):

0 commit comments

Comments
 (0)