feat(modules): allow multiple modules to be ran

main
Marshall Hallenbeck 2023-03-17 09:07:21 -04:00
parent 192cbb16c9
commit a6463c60ff
1 changed files with 0 additions and 5 deletions

View File

@ -302,11 +302,6 @@ def main():
if ans.lower() not in ['y', 'yes', '']: if ans.lower() not in ['y', 'yes', '']:
sys.exit(1) 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 <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: try:
asyncio.run( asyncio.run(
start_threadpool(protocol_object, args, db, targets, jitter) start_threadpool(protocol_object, args, db, targets, jitter)