Merge pull request #35 from nwalsh1995/master

fixed a typo in the argument help message
This commit is contained in:
Ahmed Aboul-Ela 2016-09-29 20:39:30 +04:00 committed by GitHub
commit 5e2f5bb9d9
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ def parse_args():
parser = argparse.ArgumentParser(epilog = '\tExample: \r\npython '+sys.argv[0]+" -d google.com")
parser.error = parser_error
parser._optionals.title = "OPTIONS"
parser.add_argument('-d', '--domain', help="Domain name to enumrate it's subdomains", required=True)
parser.add_argument('-d', '--domain', help="Domain name to enumerate it's subdomains", required=True)
parser.add_argument('-b', '--bruteforce', help='Enable the subbrute bruteforce module',nargs='?', default=False)
parser.add_argument('-p', '--ports', help='Scan the found subdomains against specified tcp ports')
parser.add_argument('-v', '--verbose', help='Enable Verbosity and display results in realtime',nargs='?', default=False)