diff --git a/artemis/reporting/modules/bruter/classifier.py b/artemis/reporting/modules/bruter/classifier.py index a38c7aba3..b8a5aacaf 100644 --- a/artemis/reporting/modules/bruter/classifier.py +++ b/artemis/reporting/modules/bruter/classifier.py @@ -182,6 +182,9 @@ def is_exposed_file_with_listing(found_url: FoundURL) -> bool: def is_exposed_archive(found_url: FoundURL) -> bool: + if _is_html(found_url.content_prefix): + return False + path = urllib.parse.urlparse(found_url.url).path if ".zip" in path and found_url.content_prefix.startswith("PK"): return True