diff --git a/myparser.py b/myparser.py index 4ebef630e6a..b272370a00f 100644 --- a/myparser.py +++ b/myparser.py @@ -38,7 +38,7 @@ def emails(self): self.genericClean() reg_emails = re.compile( # Local part is required, charset is flexible - # https://tools.ietf.org/html/rfc6531 (removed * and () as they provide FP mostly) + # https://tools.ietf.org/html/rfc6531 (removed * and () as they provide FP mostly ) '[a-zA-Z0-9.\-_+#~!$&\',;=:]+' + '@' + '[a-zA-Z0-9.-]*' + diff --git a/theHarvester.py b/theHarvester.py index 85bfa414c5e..feda1045aac 100644 --- a/theHarvester.py +++ b/theHarvester.py @@ -45,7 +45,7 @@ def usage(): google-profiles, jigsaw, twitter, googleplus, all\n""" print " -s: Start in result number X (default: 0)" print " -v: Verify host name via dns resolution and search for virtual hosts" - print " -f: Save the results into an HTML and XML file" + print " -f: Save the results into an HTML and XML file (both)" print " -n: Perform a DNS reverse query on all ranges discovered" print " -c: Perform a DNS brute force for the domain name" print " -t: Perform a DNS TLD expansion discovery" @@ -54,7 +54,7 @@ def usage(): print " google 100 to 100, and pgp doesn't use this option)" print " -h: use SHODAN database to query discovered hosts" print "\nExamples:" - print " " + comm + " -d microsoft.com -l 500 -b google" + print " " + comm + " -d microsoft.com -l 500 -b google -h myresults.html" print " " + comm + " -d microsoft.com -b pgp" print " " + comm + " -d microsoft -l 200 -b linkedin" print " " + comm + " -d apple.com -b googleCSE -l 500 -s 300\n"