generated from nathanwoodburn/python-webserver-template
parent
003e14343b
commit
3370d01a54
@ -6,4 +6,5 @@ dnspython
|
||||
cryptography
|
||||
datetime
|
||||
beautifulsoup4
|
||||
requests-doh
|
||||
requests-doh
|
||||
git+https://github.com/Nathanwoodburn/requests-doh.git
|
12
tools.py
12
tools.py
@ -18,7 +18,7 @@ import socket
|
||||
resolver = dns.resolver.Resolver()
|
||||
resolver.nameservers = ["194.50.5.28","194.50.5.27","194.50.5.26"]
|
||||
resolver.port = 53
|
||||
requests_doh.add_dns_provider("HNSDoH", "https://hnsdoh.com/dns-query")
|
||||
DoHsession = requests_doh.DNSOverHTTPSSession("hnsdoh")
|
||||
|
||||
# Disable warnings
|
||||
urllib3.disable_warnings()
|
||||
@ -211,8 +211,7 @@ class ProxyError(Exception):
|
||||
|
||||
def proxy(url: str) -> requests.Response:
|
||||
try:
|
||||
session = requests_doh.DNSOverHTTPSSession("HNSDoH")
|
||||
r = session.get(url,verify=False,timeout=30)
|
||||
r = DoHsession.get(url,verify=False,timeout=30)
|
||||
return r
|
||||
except Exception as e:
|
||||
return ProxyError(str(e))
|
||||
@ -249,9 +248,10 @@ def cleanProxyContent(htmlContent: str,url:str, proxyHost: str):
|
||||
ignored = True
|
||||
break
|
||||
if not ignored:
|
||||
# link.attrs[attrib] = f"{proxyUrl}/{link[attrib]}"
|
||||
# Add path also
|
||||
link.attrs[attrib] = f"{proxyUrl}/{urlparse(link[attrib]).path}/{link[attrib]}"
|
||||
if link[attrib].startswith("/"):
|
||||
link.attrs[attrib] = f"{proxyUrl}{link[attrib]}"
|
||||
else:
|
||||
link.attrs[attrib] = f"{proxyUrl}/{urlparse(url).path}{link[attrib]}"
|
||||
|
||||
scripts = soup.find_all('script')
|
||||
for script in scripts:
|
||||
|
Loading…
Reference in New Issue
Block a user