From 646342bf0465744e58c5a45cef1863151724f75e Mon Sep 17 00:00:00 2001 From: wavvs <30052411+wavvs@users.noreply.github.com> Date: Sat, 14 Dec 2019 01:28:56 +0300 Subject: [PATCH] Fix typo --- VHostScan/lib/core/virtual_host_scanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VHostScan/lib/core/virtual_host_scanner.py b/VHostScan/lib/core/virtual_host_scanner.py index 171988b..5c78cfc 100644 --- a/VHostScan/lib/core/virtual_host_scanner.py +++ b/VHostScan/lib/core/virtual_host_scanner.py @@ -213,7 +213,7 @@ def create_host(self, response, hostname, page_hash): host.hostname = hostname host.response_code = response.status_code host.hash = page_hash - host.contnet = response.content + host.content = response.content for key, val in response.headers.items(): output += ' {}: {}\n'.format(key, val)