Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VHostScan/lib/core/virtual_host_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down