From f92332341811ec5779a7f5f965e226edc7ecaefe Mon Sep 17 00:00:00 2001 From: atenreiro Date: Sat, 21 May 2022 09:25:42 +0000 Subject: [PATCH] v1.99 bug correction #50 --- CHANGELOG | 3 +++ opensquat/__init__.py | 2 +- opensquat/app.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8acc987..e705c52 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +v1.99 (2022-05-21) ++ Bug correction (#50) - Suspicious certificate results not showing in results.txt + v1.98 (2022-04-17) + Bug correction (#63) - double DNS validation diff --git a/opensquat/__init__.py b/opensquat/__init__.py index 1417118..95d31da 100644 --- a/opensquat/__init__.py +++ b/opensquat/__init__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- # Module: __init__.py """openSquat Version.""" -__VERSION__ = "1.98" +__VERSION__ = "1.99" diff --git a/opensquat/app.py b/opensquat/app.py index e0dfecf..8c14ac4 100644 --- a/opensquat/app.py +++ b/opensquat/app.py @@ -405,7 +405,7 @@ def print_info(_info): print_info("suspicious certificate detected") else: print_info("suspicious certificate detected") - self.list_domains.append(domain) + self.list_domains.append(domains) def _process_levenshtein(self, keyword, domain, homograph_domain, domains): leven_dist = validations.levenshtein(keyword, domain)