mirror of
https://0xacab.org/dCF/deCloudflare.git
synced 2025-01-15 11:46:56 -05:00
Consume embedded
This commit is contained in:
parent
1fe0b41c95
commit
e75013c0b8
@ -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";
|
||||||
|
Loading…
Reference in New Issue
Block a user