Just another wrapper Link to heading
This script is a wrapper for exploit/PoC search engine Sploitus by Vulners https://sploitus.com/.
Check it on my github repo https://github.com/adubaldo/pysploitus
Installation Link to heading
git clone https://github.com/adubaldo/pysploitus
pip3 install -r requirements.txt
Run Link to heading
python sploitcli.py -h
usage: sploitcli.py [-h] -t {exploits,tools} -q QUERY [-m MAX | -a] [-s {date,score}]
optional arguments: Link to heading
-h, --help, show this help message and exit
-s {date,score}, sort results by date or score.
required arguments: Link to heading
-t {exploits,tools}, type of search, exploits vs tools.
-q QUERY, search by keyword (e.g "wordpress 5.1")
options: Link to heading
-m MAX, retrieve MAX number of results.
-a,view all exploits found in a search, default is 10
Example Link to heading
Search available exploit/PoC for Log4j vulnerability sorted by date (descending) up to 10 results.
python sploitcli.py -t exploits -q "log4j" -m 10 -s date