Filter XMLParsedAsHTMLWarnings

* Parsing xhtml sites would trigger it.

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2023-11-16 04:27:57 +02:00
parent c489b404d1
commit 17c4e19bc5
No known key found for this signature in database
GPG Key ID: A12750536B5E7010
1 changed files with 3 additions and 5 deletions

View File

@ -8,14 +8,11 @@ import re
import urllib.error
import urllib.parse
import urllib.request
import warnings
from urllib.parse import urljoin, urlparse
try:
from BeautifulSoup import BeautifulSoup
except ImportError:
from bs4 import BeautifulSoup
import portage
from bs4 import BeautifulSoup, XMLParsedAsHTMLWarning
from euscan import (
BRUTEFORCE_BLACKLIST_PACKAGES,
@ -65,6 +62,7 @@ def confidence_score(found, original, minimum=CONFIDENCE):
def scan_html(data, url, pattern):
warnings.filterwarnings("ignore", category=XMLParsedAsHTMLWarning)
soup = BeautifulSoup(data, features="lxml")
results = []