Skip to content

Commit a8a884a

Browse files
author
Diego Nadares
committed
Ready for release 1.27.1
1 parent a2ec8fc commit a8a884a

8 files changed

Lines changed: 41 additions & 1 deletion

File tree

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

CHANGELOG/1.27.1/date.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
December 11th, 2025

RELEASE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
1.27.1 [Dec 11th, 2025]:
2+
---
3+
* [MOD] Changed behaviour of TenableIOJSONExport plugin to better represent the vulnerabilities and assets. #384
4+
* [FIX] Fixed Nuclei plugin to correctly parse impact and remediation fields from Nuclei 3.x JSON format while maintaining backward compatibility with 2.x. #379
5+
* [FIX] Fixed Burp plugin crash on Python >= 3.11 by using non-strict Base64 decoding. #385
6+
* [FIX] Secure Score Card IP Field. #386
7+
18
1.27.0 [Oct 3rd, 2025]:
29
---
310
* [ADD] Faraday Asset Import CSV Plugin. #375

faraday_plugins/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '1.27.0'
1+
__version__ = '1.27.1'
22

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"id": "vuln_with_hostname",
4+
"asset": {
5+
"ipv4_addresses": [
6+
"192.168.1.100"
7+
],
8+
"display_fqdn": "server.example.com",
9+
"host_name": "server"
10+
},
11+
"definition": {
12+
"id": 1,
13+
"name": "First Vulnerability",
14+
"description": "First vulnerability with hostname"
15+
},
16+
"port": 80
17+
},
18+
{
19+
"id": "vuln_without_hostname",
20+
"asset": {
21+
"ipv4_addresses": [
22+
"192.168.1.100"
23+
]
24+
},
25+
"definition": {
26+
"id": 2,
27+
"name": "Second Vulnerability",
28+
"description": "Second vulnerability without hostname on same host"
29+
},
30+
"port": 443
31+
}
32+
]

0 commit comments

Comments
 (0)