Title here
Summary here
Import pip-audit JSON scan report.
This parser expects a JSON file.
The parser can handle legacy and current JSON format.
The current format has added a dependencies
element:
{
"dependencies": [
{
"name": "pyopenssl",
"version": "23.1.0",
"vulns": []
},
...
]
...
}
The legacy format does not include the dependencies
key:
[
{
"name": "adal",
"version": "1.2.2",
"vulns": []
},
...
]
Sample pip-audit Scan scans can be found here.