Skip to content

Commit

Permalink
Edit documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSobky committed Dec 29, 2016
1 parent 792d7ec commit 6cb5c2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AutoRecon.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#!/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
import subprocess
from time import sleep

def main():
""" Executes main code """
"""Execute main code."""
try:
domain = sys.argv[1]
ip_address = socket.gethostbyname(domain)
Expand All @@ -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
Expand Down

0 comments on commit 6cb5c2d

Please sign in to comment.