Fix bug in CPE parsing
The current CPE dictionary parsing didn't catch the end of the 'title' tag and would have extra data in the 'title' attribute of the CPE. As an example using CVE-2015-7183 from https://cve.circl.lu/api/cve/CVE-2015-7183: Currently shows up like this: { "id": "cpe:2.3:a:mozilla:firefox:41.0.2", "title": "Mozilla Firefox 41.0.2\n \n Vendor" }, Should be: { "id": "cpe:2.3:a:mozilla:firefox:41.0.2", "title": "Mozilla Firefox 41.0.2" },
Loading
Please sign in to comment