Consume embedded

This commit is contained in:
Brian Batraski 2022-08-30 10:38:36 +00:00 committed by #deCloudflare
parent 1fe0b41c95
commit e75013c0b8

View File

@ -10,10 +10,11 @@ This page show you how to block CloudFlare websites with proxy.
``` ```
function FindProxyForURL(url, host){ function FindProxyForURL(url, host){
var hip = dnsResolve(host);
if ( if (
isInNet(dnsResolve(host),"104.16.0.0","255.248.0.0") isInNet(hip,"104.16.0.0","255.248.0.0")
||isInNet(dnsResolve(host),"104.24.0.0","255.252.0.0") ||isInNet(hip,"104.24.0.0","255.252.0.0")
){return "SOCKS5 0.0.0.0:7";} ){return "SOCKS5 0.0.0.0:7";}
return "DIRECT"; return "DIRECT";