diff --git a/flawfinder.py b/flawfinder.py index f8c82a4..d6576f8 100755 --- a/flawfinder.py +++ b/flawfinder.py @@ -589,7 +589,7 @@ def fingerprint(self): def helpuri(self): if self.cwes() == '': return 'https://dwheeler.com/flawfinder#{}'.format(self.ruleid) - cwe = re.split(',|!', self.cwes())[0] + ")" + cwe = re.split('[,!/]', self.cwes())[0] + ")" return link_cwe_pattern.sub( r'https://cwe.mitre.org/data/definitions/\2.html', cwe)