From 6cb5c2d4a59b535b26dfc26466d31f44b0ba9986 Mon Sep 17 00:00:00 2001 From: 0xsobky <0xsobky@gmail.com> Date: Thu, 29 Dec 2016 21:57:11 +0200 Subject: [PATCH] Edit documentation --- AutoRecon.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AutoRecon.py b/AutoRecon.py index be68056..0316c23 100644 --- a/AutoRecon.py +++ b/AutoRecon.py @@ -1,7 +1,7 @@ #!/usr/bin/env python2 # -*- coding: utf-8 -*- """ -Automates the reconnaissance process of web hacking. +Automate the reconnaissance process of web hacking. """ import sys import socket @@ -9,7 +9,7 @@ from time import sleep def main(): - """ Executes main code """ + """Execute main code.""" try: domain = sys.argv[1] ip_address = socket.gethostbyname(domain) @@ -36,7 +36,7 @@ def main(): 'WPScan': wpscan_cmd} def handle_proc(proc): - """ handles subprocesses outputs """ + """Handle subprocesses outputs.""" separator = '==================' output = ''.join(proc.stdout.readlines()) print proc.title