Skip to content

Commit

Permalink
URL bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckWoodraska committed May 11, 2020
1 parent 38e5cbd commit 3148a9d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion analyzers/DomainToolsIris/domaintoolsiris_analyzer.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self):
"config.service", None, "Service parameter is missing"
)
self.raw = ""
self.pivot_count_threshold = int(self.get_param("config.pivot_count_threshold"))
self.pivot_count_threshold = int(self.get_param("config.pivot_count_threshold", 500))

@staticmethod
def get_domain_age(create_date):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h3 style="position:absolute; right:2%; bottom:0">
<h3 style="position:absolute; right:2%;">
<b>Iris Investigation:</b>
<a
href="https://research.domaintools.com/{{content.domain}}"
href="https://research.domaintools.com/iris/search/?q={{content.domain}}"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
4 changes: 2 additions & 2 deletions thehive-templates/DomainToolsIris_Pivot_1_0/long.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ <h3><b>Average Risk Score (Domains):</b> {{content.average_risk_score}}</h3>
<td>{{d.domain_age}}</td>
<td><span class="label {{d.domain_risk.class}}">{{d.domain_risk.risk_score}}</span></td>
<td>
<a href="https://research.domaintools.com/{{d.domain}}" target="_blank" rel="noopener noreferrer">
https://research.domaintools.com/{{d.domain}}
<a href="https://research.domaintools.com/iris/search/?q={{d.domain}}" target="_blank" rel="noopener noreferrer">
Iris Investigation: {{d.domain}}
</a>
</td>
</tr>
Expand Down

0 comments on commit 3148a9d

Please sign in to comment.