From 50f179d24121a20b48b5105afa2fd0fa90a58e9a Mon Sep 17 00:00:00 2001 From: g0tmi1k Date: Fri, 12 Jun 2015 20:55:48 +0100 Subject: [PATCH] Grammar improvements --- README.md | 12 ++++++------ searchsploit | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index b53a56873..d510ef4ef 100755 --- a/README.md +++ b/README.md @@ -19,24 +19,24 @@ Example: ========= Options ========= - -c, --case Perform case-sensitive searches (Default is insensitive). - -f, --file Searches include file's path (Default is just the exploit title). + -c, --case Perform a case-sensitive search (Default is insensitive). + -f, --file Include file's path when searching (Default is just the exploit title). -h, --help Show this help screen. - -u, --update Update Database from git. + -u, --update Update exploit database from git. -v, --verbose Verbose output. Title lines are allowed to overflow their columns. -w, --www Show URLs to Exploit-DB.com rather than local path. - --colour Disables colour highlighting on match. + --colour Disable colour highlighting. --id Display EDB-ID value rather than local path. ======= Notes ======= - * Use any number of search terms you would like (at least 1 value), in any order. + * Use any number of search terms, in any order. * Search terms are not case sensitive, and order is irrelevant. * Use '-c' if you wish to reduce results by case-sensitive searching. * Use '-f' to include the file's path to increase the search results. * Could possibly increase false positives (especially when searching numbers). - * When updating from git or displaying help, searches will be ignored. + * When updating from git or displaying help, search terms will be ignored. root@kali:~# searchsploit -f afd windows local ------------------------------------------------------------ ---------------------------------- diff --git a/searchsploit b/searchsploit index 524d8d6c0..3d0a937c8 100755 --- a/searchsploit +++ b/searchsploit @@ -45,24 +45,24 @@ function usage() echo "=========" echo " Options " echo "=========" - echo " -c, --case Perform case-sensitive searches (Default is insensitive)." - echo " -f, --file Searches include file's path (Default is just the exploit title)." + echo " -c, --case Perform a case-sensitive search (Default is insensitive)." + echo " -f, --file Include file's path when searching (Default is just the exploit title)." echo " -h, --help Show this help screen." - echo " -u, --update Update Database from git." + echo " -u, --update Update exploit database from git." echo " -v, --verbose Verbose output. Title lines are allowed to overflow their columns." echo " -w, --www Show URLs to Exploit-DB.com rather than local path." - echo " --colour Disables colour highlighting on match." + echo " --colour Disable colour highlighting." echo " --id Display EDB-ID value rather than local path." echo echo "=======" echo " Notes " echo "=======" - echo " * Use any number of search terms you would like (at least 1 value), in any order." + echo " * Use any number of search terms, in any order." echo " * Search terms are not case sensitive, and order is irrelevant." echo " * Use '-c' if you wish to reduce results by case-sensitive searching." echo "* Use '-f' to include the file's path to increase the search results." echo " * Could possibly increase false positives (especially when searching numbers)." - echo " * When updating from git or displaying help, searches will be ignored." + echo " * When updating from git or displaying help, search terms will be ignored." echo "" exit 1 }