Updated README

This commit is contained in:
g0tmi1k 2015-07-08 23:12:58 +01:00
parent bdb8acbc33
commit 7f2dc9d41b
2 changed files with 8 additions and 8 deletions

View file

@ -14,14 +14,14 @@ root@kali:~# searchsploit -h
Usage: searchsploit [OPTIONS] term1 [term2] ... [termN] Usage: searchsploit [OPTIONS] term1 [term2] ... [termN]
Example: Example:
searchsploit afd windows local searchsploit afd windows local
searchsploit -f oracle windows remote searchsploit -t oracle windows
========= =========
Options Options
========= =========
-c, --case Perform a case-sensitive search (Default is insensitive). -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. -h, --help Show this help screen.
-t, --title Search just the exploit title (Default is title AND the file's path).
-u, --update Update exploit 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.
@ -34,11 +34,11 @@ Example:
* Use any number of search terms, 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 '-t' to exclude the file's path to filter the search results.
* Could possibly increase false positives (especially when searching numbers). * Could possibly remove false positives (especially when searching numbers).
* When updating from git or displaying help, search terms 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 afd windows local
------------------------------------------------------------ ---------------------------------- ------------------------------------------------------------ ----------------------------------
Exploit Title | Path Exploit Title | Path
| (/usr/share/exploitdb/platforms) | (/usr/share/exploitdb/platforms)

View file

@ -40,7 +40,7 @@ function usage()
echo " Usage: ${progname} [options] term1 [term2] ... [termN]" echo " Usage: ${progname} [options] term1 [term2] ... [termN]"
echo "Example:" echo "Example:"
echo " ${progname} afd windows local" echo " ${progname} afd windows local"
echo " ${progname} -f oracle windows remote" echo " ${progname} -t oracle windows"
echo echo
echo "=========" echo "========="
echo " Options " echo " Options "
@ -60,8 +60,8 @@ function usage()
echo " * Use any number of search terms, 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 '-t' to exclude the file's path to filter the search results."
echo " * Could possibly increase false positives (especially when searching numbers)." echo " * Could possibly remove false positives (especially when searching numbers)."
echo " * When updating from git or displaying help, search terms will be ignored." echo " * When updating from git or displaying help, search terms will be ignored."
echo "" echo ""
exit 1 exit 1