2024-10-14 11:17:44 +04:00
2024-10-13 16:16:57 +04:00
2024-10-13 12:35:38 +04:00
2024-10-13 12:35:38 +04:00
2024-09-28 16:45:04 +04:00
2024-10-14 11:17:44 +04:00

Re:filter

blackandgreen_A_preview_git

Re:filter — это попытка создать актуальный список заблокированных доменов и IP-адресов в РФ, а также популярных и заблокированных для пользователей из России. Этот репозиторий содержит весь исходный код для процесса фильтрации списка доменов РКН, и (в будущем: регулярные) выпуски:

  • V2Fly, Xray: geoip.dat, geosite.dat
  • Sing-Box: geoip.db, geosite.db
  • Отфильтрованные списки доменов: domains_all.lst
  • Суммированный список IP-адресов: ipsum.lst
  • Публичный BGP сервер, где используется суммированный список IP-адресов: 165.22.127.207 (AS 65412)

Пример использования Xray

{
  "routing": {
    "rules": [
      {
        "ip": [
          "ext:geoip.dat:refilter"
        ],
        "type": "field",
        "outboundTag": "proxy"
      },
      {
        "domain": [
          "ext:geosite.dat:refilter"
        ],
        "type": "field",
        "outboundTag": "proxy"
      },
      {
        "type": "field",
        "outboundTag": "direct"
      }
    ]
  }
}

Пример RoutingA для V2RayA:
default: direct
ip(geoip:refilter)->proxy
domain(ext:"LoyalsoldierSite.dat:refilter")->proxy


Re:filter is an attempt to create a relevant list of blocked domains and IPs in Russia, along with popular domains that are also blocked for Russian users. This repository contains all the source code for the RKN domain list filtration process, and (TBD: regular) releases of:

  • V2Fly, Xray: geoip.dat, geosite.dat
  • Sing-Box: geoip.db, geosite.db
  • Filtered lists of domains: domains_all.lst
  • Summarized IP list: ipsum.lst
  • Public BGP Server where the summarized IP list is used: 165.22.127.207 (AS 65412)

Xray config example

{
  "routing": {
    "rules": [
      {
        "ip": [
          "ext:geoip.dat:refilter"
        ],
        "type": "field",
        "outboundTag": "proxy"
      },
      {
        "domain": [
          "ext:geosite.dat:refilter"
        ],
        "type": "field",
        "outboundTag": "proxy"
      },
      {
        "type": "field",
        "outboundTag": "direct"
      }
    ]
  }
}

RoutingA of V2RayA Example:
default: direct
ip(geoip:refilter)->proxy
domain(ext:"LoyalsoldierSite.dat:refilter")->proxy

Description
No description provided
Readme 12 MiB
Languages
Python 50.4%
Go 49.6%