アンチザプレトシングボックス
20241119000025
現在のところ、レガシー geosite と geoip もサポートされています。
ルールを作成し、必要なサイトのみのブロックを解除できます。
bypass
に設定します。geoip:antizapret
およびgeosite:antizapret
を使用します)。このプロジェクトでは、zapret-info/zi リポジトリを使用して、Roskomnadzor から最新のダンプを取得します。
プロジェクトは現在、次の 2 つのユーティリティで構成されています。
filegenerator
-- CSV ダンプからantizapret.srs
、 antizapret-ruleset.json
、 geoip.db
、 geosite.db
ファイルを生成するシンプルなユーティリティ。githubreleaser
-- リリースを作成し、アセットをアップロードするユーティリティ。最新のantizapret.srs
、 geoip.db
、 geosite.db
ここからダウンロードできます。
更新。申し訳ありませんが、2024 年 4 月 6 日頃にリンクが切れていました。本日 4 月 12 日にリンクを復元しました。
以下は、WireGuard アウトバウンド (Shadowsocks または他のシングボックスがサポートするものに簡単に切り替えることができます) と暗号化された AdGuard DNS (接続中に WireGuard 上で動作して広告とトラッカーをブロックします) を使用した構成の例です。
{
"log" : {
"level" : " warn "
},
"dns" : {
"servers" : [
{
"tag" : " adguard-dns " ,
"address" : " tls://dns.adguard-dns.com " ,
"address_resolver" : " local-dns " ,
"detour" : " wireguard-out "
},
{
"tag" : " local-dns " ,
"address" : " local " ,
"detour" : " direct-out "
}
],
"rules" : [
{
"outbound" : " any " ,
"server" : " local-dns "
}
]
},
"inbounds" : [
{
"type" : " tun " ,
"inet4_address" : " 172.16.0.1/30 " ,
"auto_route" : true ,
"strict_route" : true ,
"sniff" : true
}
],
"outbounds" : [
{
"type" : " direct " ,
"tag" : " direct-out "
},
{
"type" : " wireguard " ,
"tag" : " wireguard-out " ,
"server" : " REDACTED " ,
"server_port" : 51820 ,
"system_interface" : true ,
"local_address" : [
" 10.252.0.1/32 " ,
" 2600:xxxx:xxxx:cafe::1/128 "
],
"private_key" : " REDACTED " ,
"peer_public_key" : " REDACTED " ,
"pre_shared_key" : " REDACTED "
},
{
"type" : " dns " ,
"tag" : " dns-out "
}
],
"route" : {
"rules" : [
{
"rule_set" : " antizapret " ,
"outbound" : " wireguard-out "
},
{
"protocol" : " dns " ,
"outbound" : " dns-out "
}
],
"rule_set" : [
{
"tag" : " antizapret " ,
"type" : " remote " ,
"format" : " binary " ,
"url" : " https://github.com/savely-krasovsky/antizapret-sing-box/releases/latest/download/antizapret.srs " ,
"download_detour" : " wireguard-out "
}
],
"auto_detect_interface" : true
},
"experimental" : {
"cache_file" : {
"enabled" : true
}
}
}