🌈項目說明🌈:
-
💚⛑️🛡️幫助那些使用v2ray或xray的用戶加速🚀海外網站訪問、攔截🚫那些投放網頁廣告、彈窗廣告🚯、病毒木馬🦠、惡意欺詐性💵網站的域名和IP,為用戶帶來清爽舒適和相較安全🍃的上網體驗!
-
💡域名文獻-h1y.dat:
- ext:h1y.dat:cn 🚦國內的網站
- ext:h1y.dat:gfw 🚀被GFW牆掉的境外網站
- ext:h1y.dat:rej 🚫投放網頁廣告、彈窗廣告、病毒木馬、惡意欺詐性網站
-
💡IP 文獻-geoip.dat:
- geoip:cn 🚦國內的IP,不含港澳台地區
- geoip:rej 🚫投放網頁廣告、彈窗廣告、病毒木馬、惡意欺詐性IP
文獻 | MD5校驗 | 標籤 | 訪問目標 | 策略 | 數量 | 發布(月/日/年) |
bd51512951358697be7815a526c2a82a | cn | 中國國內 | 直連 | 95900 | 08/31/24 | |
bd51512951358697be7815a526c2a82a | gfw | GFW名單 | 代理 | 28218 | 08/31/24 | |
bd51512951358697be7815a526c2a82a | rej | 廣告/惡意 | 攔截 | 1573657 | 08/31/24 | |
a12e840d76224cb5d4577e5633a3df80 | cn | 中國國內 | 直連 | 354426597 | 08/31/24 | |
a12e840d76224cb5d4577e5633a3df80 | rej | 廣告/惡意 | 攔截 | 739834933 | 08/31/24 |
🌈使用方法🌈
- 📚打開 https://github.com/vinograd-cyber/Xray-geoip 看到的都是最新版本。
- 📚下載 h1y.dat 和geoip.datDAT格式文獻放到 v2ray或xray服務的資源目錄中(指的是v2ray或xray的可執行文獻所在的bin目錄下),域名文獻的標籤支持cn/gfw/rej三種,在 v2ray或xray 配置文獻中按標籤設定策略規則,所有的域名均以子域名的形式進行匹配。
- 📚v2ray策略配置示例
{
"routing": {
"strategy": "rules",
"settings": {
"domainStrategy": "IPIfNonMatch",
"domainMatcher": "mph",
"rules": [
{
"comment": "攔截投放網頁廣告、彈窗廣告、病毒木馬、惡意欺詐性網站",
"domain": [
"ext:h1y.dat:rej"
],
"type": "field",
"outboundTag": "block"
},
{
"comment": "攔截投放網頁廣告、彈窗廣告、病毒木馬、惡意欺詐性IP",
"ip": [
"geoip:rej"
],
"type": "field",
"outboundTag": "block"
},
{
"comment": "訪問GFW名單裡的網站代理轉發,使用vpn加速",
"type": "field",
"outboundTag": "proxy",
"domain": [
"ext:h1y.dat:gfw"
]
},
{
"comment": "訪問中國網站本地直連,不用vpn加速",
"type": "field",
"outboundTag": "direct",
"domain": [
"ext:h1y.dat:cn"
]
},
{
"comment": "訪問中國境內IP本地直連,不用vpn加速",
"type": "field",
"outboundTag": "direct",
"ip": [
"geoip:cn"
]
}
]
}
}
}