From 78ade00deef268b88d4d7eff4c0b2d1e127c9163 Mon Sep 17 00:00:00 2001 From: ptalmeida Date: Fri, 25 Jan 2019 15:10:03 +0000 Subject: [PATCH] Update outdated REAME.md --- README.md | 10 +++++++++- sherlock.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6ac9b39..522d353 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,12 @@ optional arguments: --version Display version information and dependencies. --verbose, -v, -d, --debug Display extra debugging information and metrics. - --quiet, -q Disable debugging information (Default Option). + --folderoutput FOLDEROUTPUT, -fo FOLDEROUTPUT + If using multiple usernames, the output of the results + will be saved at this folder. + --output OUTPUT, -o OUTPUT + If using single username, the output of the result + will be saved at this file. --tor, -t Make requests over TOR; increases runtime; requires TOR to be installed and in system path. --unique-tor, -u Make requests over TOR with new TOR circuit after each @@ -55,6 +60,9 @@ optional arguments: --proxy PROXY_URL, -p PROXY_URL Make requests over a proxy. e.g. socks5://127.0.0.1:1080 + --json JSON_FILE, -j JSON_FILE + Load data from a JSON file or an online, valid, JSON + file. ``` For example, run ```python3 sherlock.py user123```, and all of the accounts diff --git a/sherlock.py b/sherlock.py index d72abaa..61e82f7 100644 --- a/sherlock.py +++ b/sherlock.py @@ -348,7 +348,7 @@ def main(): ) parser.add_argument("--rank", "-r", action="store_true", dest="rank", default=False, - help="Present websites ordered by their Alexa.com rank in popularity.") + help="Present websites ordered by their Alexa.com global rank in popularity.") parser.add_argument("--folderoutput", "-fo", dest="folderoutput", help="If using multiple usernames, the output of the results will be saved at this folder." )