You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### [30. June 2024] - Version 0.10.2
- **Custom Configuration Path**: Added support for specifying a custom configuration file path using the `--config` or `-c` command-line argument.
- **Platform-Specific Directories**: Added support for platform-specific (*nix, macOS, Windows) configuration directories.
- **Debug Mode**: Improved debug output for configuration file loading.
Fixed#22
SploitScan: Retrieve and display vulnerability data as well as public exploits for given CVE ID(s).
110
114
111
115
positional arguments:
112
116
cve_ids Enter one or more CVE IDs to fetch data. Separate multiple CVE IDs with spaces. Format for each ID: CVE-YYYY-NNNNN. This argument is optional if an import file is provided
113
-
using the -n option.
117
+
using the -i option.
114
118
115
119
options:
116
120
-h, --help show this help message and exit
@@ -120,6 +124,8 @@ options:
120
124
Specify the type of the import file: 'nessus', 'nexpose', 'openvas' or 'docker'.
121
125
-i IMPORT_FILE, --import-file IMPORT_FILE
122
126
Path to an import file from a vulnerability scanner. If used, CVE IDs can be omitted from the command line arguments.
127
+
-c CONFIG, --config CONFIG
128
+
Path to a custom config file.
123
129
-d, --debug Enable debug output.
124
130
```
125
131
@@ -252,6 +258,12 @@ This system assists users in making informed decisions on which vulnerabilities
252
258
253
259
## 📆 Changelog
254
260
261
+
### [30. June 2024] - Version 0.10.2
262
+
263
+
- **Custom Configuration Path**: Added support for specifying a custom configuration file path using the `--config` or `-c` command-line argument.
264
+
- **Platform-Specific Directories**: Added support for platform-specific (*nix, macOS, Windows) configuration directories.
265
+
- **Debug Mode**: Improved debug output for configuration file loading.
266
+
255
267
### [26. June 2024] - Version 0.10
256
268
257
269
- **HackerOne Integration**: Added support forsearching through HackerOne and displays if the CVE was usedin any Bug Bounty program including its rank and severity distribution.
description = "SploitScan is a sophisticated cybersecurity utility designed to provide detailed information on vulnerabilities and associated exploits."
help="Enter one or more CVE IDs to fetch data. Separate multiple CVE IDs with spaces. Format for each ID: CVE-YYYY-NNNNN. This argument is optional if an import file is provided using the -n option.",
1040
+
help="Enter one or more CVE IDs to fetch data. Separate multiple CVE IDs with spaces. Format for each ID: CVE-YYYY-NNNNN. This argument is optional if an import file is provided using the -i option.",
1029
1041
)
1030
1042
parser.add_argument(
1031
1043
"-e",
@@ -1045,6 +1057,12 @@ def cli():
1045
1057
type=str,
1046
1058
help="Path to an import file from a vulnerability scanner. If used, CVE IDs can be omitted from the command line arguments.",
0 commit comments