File tree Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change 1+ # 📦 Release Notes — ` getsploit ` v2.0.2
2+
3+ ## ✅ Python Compatibility
4+ - Minimum supported Python version is now ** 3.10+** .
5+
6+ ## 🔐 API Key Management
7+ You can now provide your API key in several ways:
8+
9+ 1 . Save the key for the current user:
10+ ``` bash
11+ getsploit --set-key YOUR-KEY
12+ ```
13+
14+ 2 . Alternatively, pass the key:
15+
16+ * via the ` --api-key ` command-line option
17+ * or through the ` VULNERS_API_KEY ` environment variable
18+
19+ ** Key resolution priority:**
20+
21+ 1 . If ` --api-key ` is provided, it takes precedence.
22+ 2 . If not, the ` VULNERS_API_KEY ` environment variable is used.
23+ 3 . If neither is set, the saved key from ` --set-key ` is used.
24+
25+ ## 🔍 Query Behavior
26+
27+ * Search queries are now passed ** as-is** , without modification.
28+
29+ ### 🔎 Search in title only:
30+
31+ ``` bash
32+ getsploit title:wordpress AND title:" 4.7.0"
33+ ```
34+
35+ ### 🔎 Search across all fields:
36+
37+ ``` bash
38+ getsploit wordpress sql injection
39+ ```
40+
41+ ⚠️ When searching in the local database, queries must be compatible with ** FTS4** (Full-Text Search v4).
42+
43+ ## 🏷 Available Search Fields
44+
45+ * ` id `
46+ * ` title `
47+ * ` description `
48+ * ` sourceData `
49+ * ` published `
You can’t perform that action at this time.
0 commit comments