From 8bec88b81961614f47516c2237c52707ed68426d Mon Sep 17 00:00:00 2001 From: prodigysml Date: Wed, 29 Jul 2020 02:52:29 +0000 Subject: [PATCH 1/2] Edited to fix the dot problem --- Interlace/lib/core/input.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Interlace/lib/core/input.py b/Interlace/lib/core/input.py index cb4a15c..0eb096b 100644 --- a/Interlace/lib/core/input.py +++ b/Interlace/lib/core/input.py @@ -149,6 +149,10 @@ class InputHelper(object): for host in host_ranges: host = host.replace(" ", "").replace("\n", "") # check if it is a domain name + if len(host.split(".")[0]) == 0: + destination_set.add(host) + continue + if host.split(".")[0][0].isalpha() or host.split(".")[-1][-1].isalpha(): destination_set.add(host) continue From 8d32a1ffc89b139fb2619cca9e0bc83852865464 Mon Sep 17 00:00:00 2001 From: prodigysml Date: Wed, 29 Jul 2020 02:53:54 +0000 Subject: [PATCH 2/2] Incremented version --- Interlace/lib/core/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interlace/lib/core/__version__.py b/Interlace/lib/core/__version__.py index e8b6b09..aa1a8c4 100644 --- a/Interlace/lib/core/__version__.py +++ b/Interlace/lib/core/__version__.py @@ -1 +1 @@ -__version__ = '1.8.1' +__version__ = '1.8.2'