URL bug fixes

This commit is contained in:
Chuck Woodraska 2020-05-11 13:30:20 -07:00
parent 38e5cbd909
commit 3148a9d807
3 changed files with 4 additions and 4 deletions

2
analyzers/DomainToolsIris/domaintoolsiris_analyzer.py Executable file → Normal file
View File

@ -18,7 +18,7 @@ class DomainToolsAnalyzer(Analyzer):
"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):

View File

@ -22,7 +22,7 @@
<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"
>

View File

@ -36,8 +36,8 @@
<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>