From ac057065fb485c23d1fd28288e69a6c19d9cce73 Mon Sep 17 00:00:00 2001 From: mpgn Date: Thu, 23 Mar 2023 06:44:26 -0400 Subject: [PATCH] Update message and module for ntdsutil module --- cme/crackmapexec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cme/crackmapexec.py b/cme/crackmapexec.py index 7dd94d69..f2fd1810 100755 --- a/cme/crackmapexec.py +++ b/cme/crackmapexec.py @@ -298,7 +298,7 @@ def main(): logging.debug(f"proto object module after adding: {protocol_object.module}") if hasattr(args, 'ntds') and args.ntds and not args.userntds: - ans = input(highlight('[!] Dumping the ntds can crash the DC on Windows Server 2019. Use the option --user to dump a specific user safely or the modile -M ntdsutil [Y/n] ', 'red')) + ans = input(highlight('[!] Dumping the ntds can crash the DC on Windows Server 2019. Use the option --user to dump a specific user safely or the module -M ntdsutil [Y/n] ', 'red')) if ans.lower() not in ['y', 'yes', '']: sys.exit(1)