From 1a40805ae481788041a285b91533cef9c32782ca Mon Sep 17 00:00:00 2001 From: maaaaz Date: Sun, 20 Dec 2015 12:24:17 -0500 Subject: [PATCH] service interaction fix --- crackmapexec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crackmapexec.py b/crackmapexec.py index 483e615b..fa36760c 100755 --- a/crackmapexec.py +++ b/crackmapexec.py @@ -212,7 +212,7 @@ if args.combo_file and not os.path.exists(args.combo_file): if args.service: if args.service in ['start', 'stop', 'delete', 'status', 'config', 'change']: - if not args.name: + if not args.service_name: print_error('You must specify a --name') shutdown(1)