Grammar improvements

This commit is contained in:
g0tmi1k 2015-06-12 20:55:48 +01:00
parent dc651e3c85
commit 50f179d241
2 changed files with 12 additions and 12 deletions

View file

@ -19,24 +19,24 @@ Example:
========= =========
Options Options
========= =========
-c, --case Perform case-sensitive searches (Default is insensitive). -c, --case Perform a case-sensitive search (Default is insensitive).
-f, --file Searches include file's path (Default is just the exploit title). -f, --file Include file's path when searching (Default is just the exploit title).
-h, --help Show this help screen. -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. -v, --verbose Verbose output. Title lines are allowed to overflow their columns.
-w, --www Show URLs to Exploit-DB.com rather than local path. -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. --id Display EDB-ID value rather than local path.
======= =======
Notes 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. * Search terms are not case sensitive, and order is irrelevant.
* Use '-c' if you wish to reduce results by case-sensitive searching. * 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. * Use '-f' to include the file's path to increase the search results.
* Could possibly increase false positives (especially when searching numbers). * 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 root@kali:~# searchsploit -f afd windows local
------------------------------------------------------------ ---------------------------------- ------------------------------------------------------------ ----------------------------------

View file

@ -45,24 +45,24 @@ function usage()
echo "=========" echo "========="
echo " Options " echo " Options "
echo "=========" echo "========="
echo " -c, --case Perform case-sensitive searches (Default is insensitive)." echo " -c, --case Perform a case-sensitive search (Default is insensitive)."
echo " -f, --file Searches include file's path (Default is just the exploit title)." echo " -f, --file Include file's path when searching (Default is just the exploit title)."
echo " -h, --help Show this help screen." 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 " -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 " -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 " --id Display EDB-ID value rather than local path."
echo echo
echo "=======" echo "======="
echo " Notes " echo " Notes "
echo "=======" 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 " * 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 '-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 "* Use '-f' to include the file's path to increase the search results."
echo " * Could possibly increase false positives (especially when searching numbers)." 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 "" echo ""
exit 1 exit 1
} }