From 2e2ee592e3ce77d513f2d2b2be81e8cd07c39859 Mon Sep 17 00:00:00 2001 From: Tib3rius <48113936+Tib3rius@users.noreply.github.com> Date: Sat, 2 Mar 2019 12:51:29 -0500 Subject: [PATCH] Formatting changes in the _manual_commands.txt file. --- autorecon.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/autorecon.py b/autorecon.py index 65a359a..f71983d 100644 --- a/autorecon.py +++ b/autorecon.py @@ -361,15 +361,14 @@ async def scan_services(loop, semaphore, target): file.writelines(e('[*] {service} on {protocol}/{port}\n\n')) heading = True description = service_scans_config[service_scan]['manual'][manual]['description'] - file.writelines(e('[-] {description}\n\n')) + file.writelines(e('\t[-] {description}\n\n')) if 'commands' in service_scans_config[service_scan]['manual'][manual]: if not heading: file.writelines(e('[*] {service} on {protocol}/{port}\n\n')) heading = True for manual_command in service_scans_config[service_scan]['manual'][manual]['commands']: manual_command = e(manual_command) - file.writelines(e('{manual_command}\n')) - file.writelines('\n') + file.writelines('\t\t' + e('{manual_command}\n\n')) if heading: file.writelines('\n')