packetfocus / BurpParser

Parser to convert BURP Pro .XML to .CSV and build a Word .Docx Template
13 stars 4 forks source link

Links are stripped out of VulnClassification CVE Entries #14

Open packetfocus opened 6 years ago

packetfocus commented 6 years ago

The VulnCLassification data from the XML file is passed to the strip_tag function so it removes the HREF link.

Should split the links out then rebuild them in the word function.

Ref: https://github.com/python-openxml/python-docx/issues/74

packetfocus commented 6 years ago

line 217 in BurpXMLParser.py :

try: vulnerabilityClassification = i.find('vulnerabilityclassifications').text vulnerabilityClassification = strip_tags(vulnerabilityClassification) status_logger.debug('Vuln Classification: {}'.format(vulnerabilityClassification))