SploitScan is a powerful and user-friendly tool designed to search for exploits
692
SploitScan is a powerful and user-friendly tool designed to streamline the process of identifying exploits for known vulnerabilities and their respective exploitation probability.
Modified custom build of the image from https://github.com/xaitax/SploitScan
docker run --rm -it -v $(pwd)/trivy_reports:/input -v $(pwd):/results diwskx/sploitscan:latest --input-dir /input -e html
docker run --rm -it -v $(pwd)/trivy_reports:/input -v $(pwd):/results diwskx/sploitscan:latest --input-dir /input -e html -c /results/config.json
| Host Path | Container Path | Purpose |
|---|---|---|
$(pwd)/trivy_reports | /input | 📁 Input directory with CVE files |
$(pwd) | /results | 📥 Output directory for reports |
--input-dir /input - Specify input directory
-e html - Export format (HTML)
-c /results/config.json - Custom configuration file (optional)
{
"vulncheck_api_key": "",
"openai_api_key": "",
"google_api_key": "",
"grok_api_key": "",
"deepseek_api_key": ""
}
The container automatically processes all CVE files in the input directory
Reports are saved to the mounted results directory
Container is automatically removed after execution (--rm flag)
git clone https://github.com/diwskx/SploitScan.git
cd SploitScan
docker build -t diwskx/sploitscan:latest .
Based on original SploitScan under GNU GPL v3 license. Modifications by diwskx.
Content type
Image
Digest
sha256:88bf29c65…
Size
95.1 MB
Last updated
11 months ago
docker pull diwskx/sploitscan