Skip to content

Commit

Permalink
fixes dionach#6
Browse files Browse the repository at this point in the history
  • Loading branch information
tkailasam committed Aug 12, 2020
1 parent 97e9673 commit 0dca195
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions HeadersAnalyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,12 @@ def findInteresting(self, host, headers):
for i in range(0, model.getSize()):
list_boring_headers.append(model.getElementAt(i))

if self.xPermittedCrossDomainPoliciesCB.isSelected():
list_boring_headers.append('x-permitted-cross-domain-policies')

if self.contentSecurityPolicyCB.isSelected():
list_boring_headers.append('content-security-policy')

issuename = "Interesting Header(s)"
issuelevel = "Low"
issuedetail = "<p>The response includes the following potentially interesting headers:</p><ul>"
Expand Down

0 comments on commit 0dca195

Please sign in to comment.