Convert to string

merge-requests/30/head
Bob Mottram 2024-12-16 12:45:18 +00:00
parent 3b55ef745e
commit 683cc9bc7e
1 changed files with 6 additions and 5 deletions

View File

@ -218,10 +218,11 @@ def _detect_mitm(self) -> bool:
) )
for interloper in mitm_domains: for interloper in mitm_domains:
for header_name in check_headers: for header_name in check_headers:
if self.headers.get(header_name): if not self.headers.get(header_name):
if interloper in self.headers[header_name]: continue
if interloper in str(self.headers[header_name]):
print('MITM: ' + header_name + ' = ' + print('MITM: ' + header_name + ' = ' +
self.headers[header_name]) str(self.headers[header_name]))
return True return True
# The presence of these headers on their own indicates a MiTM # The presence of these headers on their own indicates a MiTM
mitm_headers = ( mitm_headers = (