From a6463c60ff513b09734569ec834a9f63e4c9cd91 Mon Sep 17 00:00:00 2001 From: Marshall Hallenbeck Date: Fri, 17 Mar 2023 09:07:21 -0400 Subject: [PATCH] feat(modules): allow multiple modules to be ran --- cme/crackmapexec.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cme/crackmapexec.py b/cme/crackmapexec.py index a8182e64..4919cc91 100755 --- a/cme/crackmapexec.py +++ b/cme/crackmapexec.py @@ -302,11 +302,6 @@ def main(): if ans.lower() not in ['y', 'yes', '']: sys.exit(1) - 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 module -M ntdsutil [Y/n] ', 'red')) - if ans.lower() not in ['y', 'yes', '']: - sys.exit(1) - try: asyncio.run( start_threadpool(protocol_object, args, db, targets, jitter)