mirror of
https://github.com/SpaceTimee/Cealing-Host.git
synced 2025-09-14 13:56:47 +08:00
Compare commits
45 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
2c663c9573 | ||
![]() |
da3199dcdc | ||
![]() |
3074e66f11 | ||
![]() |
cbfba2f37b | ||
![]() |
b9da332385 | ||
![]() |
4f3c66e439 | ||
![]() |
7840e05689 | ||
![]() |
7ecd87a874 | ||
![]() |
715c88c533 | ||
![]() |
77c8ad5885 | ||
![]() |
7595ce1112 | ||
![]() |
fabe99601b | ||
![]() |
274ecc8b16 | ||
![]() |
70ed625df3 | ||
![]() |
5df065619d | ||
![]() |
a4ed203894 | ||
![]() |
7ca65b202c | ||
![]() |
530d85c93f | ||
![]() |
98c2247ee6 | ||
![]() |
dd92fa0de5 | ||
![]() |
3c5925b6c5 | ||
![]() |
82a3c1df27 | ||
![]() |
c2e382fdbc | ||
![]() |
d226eb3604 | ||
![]() |
8d27589aa1 | ||
![]() |
77b75dedca | ||
![]() |
3bf45ef4b8 | ||
![]() |
ebd9c1fca9 | ||
![]() |
b61ef02f99 | ||
![]() |
c7b60645bc | ||
![]() |
f44dc21fd8 | ||
![]() |
ad363a8fe0 | ||
![]() |
88cd566eb6 | ||
![]() |
780bffe776 | ||
![]() |
8e1cd5abc5 | ||
![]() |
0f706228bb | ||
![]() |
72403c3254 | ||
![]() |
b6e3477cdf | ||
![]() |
4f677771b5 | ||
![]() |
4324e6332a | ||
![]() |
5cd9c72a89 | ||
![]() |
fd5598fc96 | ||
![]() |
237dd4d630 | ||
![]() |
50422f4f02 | ||
![]() |
c2cbfe5dda |
24
.github/workflows/convert_host_to_toml.py
vendored
Normal file
24
.github/workflows/convert_host_to_toml.py
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
import json
|
||||
import toml
|
||||
from collections import defaultdict
|
||||
|
||||
|
||||
def convert_host_to_toml(host_path, toml_path):
|
||||
with open(host_path) as host_file:
|
||||
host_rules = json.load(host_file)
|
||||
|
||||
toml_rules = defaultdict(dict)
|
||||
|
||||
for host_rule in host_rules:
|
||||
domains, sni, ip = host_rule
|
||||
|
||||
for domain in domains:
|
||||
toml_rules["alter_hostname"][domain] = sni
|
||||
toml_rules["hosts"][domain] = ip
|
||||
|
||||
with open(toml_path, "w") as toml_file:
|
||||
toml.dump(toml_rules, toml_file)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
convert_host_to_toml("Cealing-Host.json", "Cealing-Host.toml")
|
37
.github/workflows/convert_host_to_toml.yaml
vendored
Normal file
37
.github/workflows/convert_host_to_toml.yaml
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
name: Convert Host To Toml
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
jobs:
|
||||
convert_host_to_toml:
|
||||
name: Convert Host To Toml
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Fetch Github Folder & Host
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
sparse-checkout: |
|
||||
.github
|
||||
Cealing-Host.json
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.x
|
||||
check-latest: true
|
||||
|
||||
- name: Install Toml
|
||||
run: pip install "toml"
|
||||
|
||||
- name: Convert Host To Toml
|
||||
run: |
|
||||
cp "Cealing-Host.json" ".github/workflows/Cealing-Host.json"
|
||||
python ".github/workflows/convert_host_to_toml.py"
|
||||
|
||||
- name: Release Toml
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
files: Cealing-Host.toml
|
||||
token: ${{ secrets.GH_TOKEN }}
|
@ -1,12 +1,12 @@
|
||||
[
|
||||
[["cdn.jsdelivr.net"],"","104.16.89.20"],
|
||||
[["images.prismic.io"],"","151.101.78.208"],
|
||||
[["images.prismic.io"],"imgix.net","151.101.78.208"],
|
||||
[["api.fanbox.cc"],"api.fanbox.cc","172.64.146.116"],
|
||||
[["*pixiv.net","*fanbox.cc"],"pixivision.net","210.140.139.155"],
|
||||
[["*pximg.net"],"","210.140.92.141"],
|
||||
[["*pximg.net"],"","210.140.139.133"],
|
||||
[["*pinterest.com","*pinimg.com"],"","151.101.0.84"],
|
||||
[["*wallhaven.cc"],"","15.235.80.145"],
|
||||
[["upld.e-hentai.org"],"","94.100.18.249"],
|
||||
[["*e-hentai.org"],"","104.20.19.168"],
|
||||
[["upld.e-hentai.org"],"","89.149.221.236"],
|
||||
[["*e-hentai.org"],"","172.66.132.196"],
|
||||
[["*ehgt.org"],"","109.236.85.28"],
|
||||
[["*exhentai.org"],"","178.175.132.22"],
|
||||
[["*hentaiverse.org"],"","178.162.151.56"],
|
||||
@ -19,25 +19,46 @@
|
||||
[["*xhamster.com"],"zh.xhamster.com","104.17.35.109"],
|
||||
[["*xhamster42.desi"],"zh.xhamster42.desi","104.17.35.109"],
|
||||
[["*rutube.ru"],"","109.238.90.239"],
|
||||
[["#*.googlevideo.com"],"",""],
|
||||
[["*google*","*gstatic.com","*youtube.com","*.ggpht.com","i.ytimg.com","*youtube-nocookie.com","*blogger.com"],"g.cn","109.185.236.240"],
|
||||
[["*.googlevideo.com"],"",""],
|
||||
[["gemini.google.com"],"","47.102.115.14"],
|
||||
[["#*google*","$*google.com","*gstatic.com","*youtube.com","*youtu.be","*.ggpht.com","i.ytimg.com","*youtube-nocookie.com","*blogger.com","*android.com"],"g.cn","34.49.133.3"],
|
||||
[["consent.yahoo.com"],"consent.yahoo.com","consent.yahoo.com"],
|
||||
[["guce.yahoo.com"],"guce.yahoo.com","guce.yahoo.com"],
|
||||
[["*.buy.yahoo.com"],"buy.yahoo.com","[2001:67c:2960:6464::b4de:6697]"],
|
||||
[["*.yahoo.com^*.media.yahoo.com","s.yimg.com"],"www.yahoo.com","[2001:67c:2960:6464::b4de:6a0b]"],
|
||||
[["external-content.duckduckgo.com"],"","20.43.160.189"],
|
||||
[["*duckduckgo.com"],"","20.43.161.105"],
|
||||
[["www.ecosia.org"],"www.ecosia.org","[2001:67c:2960:6464::ac40:9647]"],
|
||||
[["*startpage.com"],"","67.63.58.139"],
|
||||
[["*twitter.com","x.com","*.x.com","t.co","*.t.co"],"","69.195.183.139"],
|
||||
[["*twimg.com"],"","146.75.72.157"],
|
||||
[["*facebook.com","*fbcdn.net","business.whatsapp.com"],"","157.240.22.169"],
|
||||
[["*whatsapp.com","*whatsapp.net"],"","157.240.225.60"],
|
||||
[["*instagram.com","*instagr.am","ig.me","*.ig.me"],"","157.240.236.174"],
|
||||
[["*github.com"],"","20.200.245.247"],
|
||||
[["*instagram.com","*instagr.am","ig.me","*.ig.me"],"","157.240.27.174"],
|
||||
[["*.media.tumblr.com"],"","192.0.77.3"],
|
||||
[["*tumblr.com"],"","192.0.77.40"],
|
||||
[["api.github.com"],"","20.205.243.168"],
|
||||
[["docs.github.com"],"","185.199.110.154"],
|
||||
[["support.github.com","resources.github.com"],"","185.199.108.133"],
|
||||
[["services.github.com"],"","140.82.113.18"],
|
||||
[["community.github.com"],"","140.82.114.17"],
|
||||
[["*github.com"],"","20.27.177.113"],
|
||||
[["objects-origin.githubusercontent.com"],"","140.82.113.22"],
|
||||
[["*githubusercontent.com"],"","185.199.108.133"],
|
||||
[["*huggingface.co"],"huggingface.cn","3.167.200.113"],
|
||||
[["$hub.docker.com"],null,"54.208.73.48"],
|
||||
[["*vercel.app"],"vercel.com","64.29.17.193"],
|
||||
[["*claude.ai"],"claude.ai","[2001:67c:2960:6464::a04f:680a]"],
|
||||
[["copilot.microsoft.com"],"www.azureedge.net","[2001:67c:2960:6464::cc4f:c5ed]"],
|
||||
[["*character.ai"],"","104.18.223.226"],
|
||||
[["internal-api.virginia.labs.lumalabs.ai"],"","34.204.141.236"],
|
||||
[["*lumalabs.ai"],"vercel.com","76.76.21.21"],
|
||||
[["upload.wikimedia.org"],"","208.80.154.240"],
|
||||
[["*wikipedia.org","*wikimedia.org","*wikinews.org","*wiktionary.org","*wikibooks.org","*wikiversity.org","*wikidata.org","*wikiquote.org","*wikivoyage.org","*wikifunctions.org"],"","185.15.59.224"],
|
||||
[["*1lib.sk","*singlelogin.re"],"","176.123.7.228"],
|
||||
[["*archive.org"],"","207.241.228.68"],
|
||||
[["*steamcommunity.com"],"","104.73.78.128"],
|
||||
[["*wikipedia.org","*wikimedia.org^lists.wikimedia.org","*wikinews.org","*wiktionary.org","*wikibooks.org","*wikiversity.org","*wikidata.org","*wikiquote.org","*wikivoyage.org","*wikifunctions.org","*wikisource.org","*mediawiki.org","w.wiki","*.w.wiki"],"","185.15.59.224"],
|
||||
[["*archiveofourown.org"],"","104.20.8.2"],
|
||||
[["*z-library.sk","*z-lib.help"],"","176.123.7.105"],
|
||||
[["*archive.org"],"","207.241.237.2"],
|
||||
[["*greasyfork.org"],"","96.126.98.220"],
|
||||
[["*itch.io"],"","45.79.115.66"],
|
||||
[["*steamcommunity.com"],"","184.50.187.66"],
|
||||
[["store.steampowered.com"],"","23.46.197.62"],
|
||||
[["hello.vrchat.com"],"","198.185.159.145"],
|
||||
[["ask.vrchat.com"],"","216.66.8.43"],
|
||||
@ -48,30 +69,43 @@
|
||||
[["drive.proton.me"],"","185.70.42.40"],
|
||||
[["pass.proton.me"],"","185.70.42.63"],
|
||||
[["*proton.me"],"","185.70.42.45"],
|
||||
[["tamtam-lp*.ok.ru"],"","217.20.158.136"],
|
||||
[["#tamtam-lp*.ok.ru"],"","217.20.158.136"],
|
||||
[["ok.ru","www.ok.ru"],"","5.61.23.11"],
|
||||
[["*ok.ru"],"","5.61.23.30"],
|
||||
[["cdn1.cdn-telegram.org"],"","34.111.15.3"],
|
||||
[["cdn4.cdn-telegram.org"],"","34.111.35.152"],
|
||||
[["cdn5.cdn-telegram.org"],"","34.111.108.175"],
|
||||
[["zws1*.web.telegram.org","zws3*.web.telegram.org"],"","149.154.174.200"],
|
||||
[["zws2*.web.telegram.org","zws4*.web.telegram.org"],"","38.94.111.240"],
|
||||
[["#zws1*.web.telegram.org","#zws3*.web.telegram.org"],"","149.154.174.200"],
|
||||
[["#zws2*.web.telegram.org","#zws4*.web.telegram.org"],"","93.183.68.61"],
|
||||
[["*.web.telegram.org"],"","149.154.170.200"],
|
||||
[["*telegram.org","*tg.dev","t.me","*.t.me","*telesco.pe"],"","38.94.111.240"],
|
||||
[["*discord.com"],"","162.159.137.232"],
|
||||
[["*telegram.org","telegram.me","*tg.dev","t.me","*.t.me","*telesco.pe"],"","93.183.68.61"],
|
||||
[["*discord.com"],"","162.159.136.232"],
|
||||
[["*discord.gg"],"","162.159.130.234"],
|
||||
[["*discordapp.com"],"","162.159.130.233"],
|
||||
[["$assets.twitch.tv","$panels.twitch.tv","$passport.twitch.tv","$*nicovideo.jp","$nvapi.nicovideo.jp","$embed.nicovideo.jp","$wktk.nicovideo.jp"],null,"13.226.65.160"],
|
||||
[["*discordapp.net"],"","162.159.130.232"],
|
||||
[["$assets.twitch.tv","$panels.twitch.tv","$passport.twitch.tv","$irc-ws.chat.twitch.tv"],null,"3.167.200.113"],
|
||||
[["$*twitch.tv","$m.twitch.tv","$gql.twitch.tv"],"","151.101.194.167"],
|
||||
[["*netflix.com"],"netflix.com","[2001:67c:2960:6464::2cf2:0da1]"],
|
||||
[["*disneyplus.com"],"disneyplus.com","[2001:67c:2960:6464::17c5:ea7c]"],
|
||||
[["disney.*.edge.bamgrid.com"],"disney.images.edge.bamgrid.com","[2001:67c:2960:6464::36e6:4744]"],
|
||||
[["$*nicovideo.jp","$account.nicovideo.jp","$live.nicovideo.jp","$live2.nicovideo.jp","$sp.nicovideo.jp","$nvapi.nicovideo.jp","$embed.nicovideo.jp","$wktk.nicovideo.jp"],null,"3.167.200.113"],
|
||||
[["*gamer.com.tw"],"","104.16.223.104"],
|
||||
[["*bilibili.tv"],"bilibili.tv","[2001:67c:2960:6464::6797:9785]"],
|
||||
[["open.spotify.com"],"","[2001:67c:2960:6464::9765:c32a]"],
|
||||
[["*spotify.com"],"spotify.com","[2001:67c:2960:6464::23ba:e018]"],
|
||||
[["$*audiomack.com","$music.audiomack.com","$api.audiomack.com","$assets.audiomack.com"],null,"3.167.200.113"],
|
||||
[["*rumble.com"],"","205.220.231.24"],
|
||||
[["*reddit.com","*redditstatic.com","*redd.it","*redditmedia.com"],"","146.75.33.140"],
|
||||
[["*quora.com"],"fs.quoracdn.net","162.159.152.17"],
|
||||
[["*v2ex.com"],"","172.67.35.211"],
|
||||
[["*v2ex.com"],"","172.66.137.6"],
|
||||
[["*eyny.com"],"","172.241.24.66"],
|
||||
[["*onedrive.live.com"],"","13.107.42.13"],
|
||||
[["*mega.io"],"","66.203.127.11"],
|
||||
[["*mega.nz"],"","31.216.144.5"],
|
||||
[["*api.mega.co.nz"],"","66.203.125.15"],
|
||||
[["*amazon.co.jp"],"amazon.com","18.66.145.15"],
|
||||
[["*dropbox.com"],"","162.125.248.18"],
|
||||
[["*pixeldrain.com"],"pixeldra.in","103.107.198.191"],
|
||||
[["*amazon.co.jp"],"amazon.com","13.35.219.115"],
|
||||
[["*etsy.com"],"","151.101.193.224"],
|
||||
[["*bbc.com"],"","146.75.36.81"],
|
||||
[["*bbci.co.uk","*bbc.co.uk"],"","23.77.21.232"],
|
||||
@ -81,13 +115,16 @@
|
||||
[["*dailymotion.com"],"","195.8.215.140"],
|
||||
[["forum.f-droid.org"],"","37.218.242.53"],
|
||||
[["f-droid.org","www.f-droid.org","fdroid.org"],"","37.218.243.72"],
|
||||
[["*apkmirror.com"],"","104.19.134.58"],
|
||||
[["*apkmirror.com"],"","104.17.67.215"],
|
||||
[["*gravatar.com"],"","192.0.80.240"],
|
||||
[["a5.behance.net"],"a5.behance.net","13.35.185.106"],
|
||||
[["*behance.net"],"behance.net","[2001:67c:2960:6464::9765:41c5]"],
|
||||
[["*okx.com"],"","8.212.101.92"],
|
||||
[["*patreon.com"],"","104.16.25.14"],
|
||||
[["*patreonusercontent.com"],"","104.18.70.106"],
|
||||
[["*vimeo.com"],"","162.159.128.61"],
|
||||
[["identity.flickr.com"],"","3.209.240.130"],
|
||||
[["*vimeo.com"],"","162.159.138.60"],
|
||||
[["identity.flickr.com"],"","52.6.22.65"],
|
||||
[["*flickr.com"],"","13.33.142.102"],
|
||||
[["*imgur.com"],"","199.232.196.193"],
|
||||
[["*thetvdb.com"],"","54.192.23.105"]
|
||||
[["*thetvdb.com"],"","13.35.222.88"]
|
||||
]
|
24
README.md
24
README.md
@ -3,15 +3,18 @@
|
||||
</br>
|
||||
|
||||
## 自我介绍
|
||||
**Cealing Host 存储库**: 用于管理最新的 Sheas Cealer 内置伪造规则
|
||||
**Cealing Host 存储库**: 用于管理最新的内置伪造规则
|
||||
|
||||
* 部分使用该规则的项目: [Sheas Cealer](https://github.com/SpaceTimee/Sheas-Cealer), [Sheas Cealer Droid](https://github.com/SpaceTimee/Sheas-Cealer-Droid)
|
||||
|
||||
## 词汇解释
|
||||
**[Sheas Cealer Dictionary](https://github.com/SpaceTimee/Sheas-Cealer/wiki/Sheas-Cealer-Dictionary)**
|
||||
**[Sheas Cealer Dictionary](https://github.com/SpaceTimee/Sheas-Cealer/wiki/Sheas-Cealer-Dictionary)** or **[Cealer Dict](https://github.com/SpaceTimee/Sheas-Cealer-Droid/wiki/Cealer-Dict)**
|
||||
|
||||
## 注意事项
|
||||
1. 部分特殊网站的伪造请参考 [特殊网站伪造教程](https://github.com/SpaceTimee/Cealing-Host/wiki/Special%E2%80%90Cealing%E2%80%90Instruction)
|
||||
2. 本项目仅供测试 Sheas Cealer 的 SNI 伪造效果,无意绕过任何国家审查设备的审查
|
||||
3. 本项目非常欢迎大家贡献自己的伪造规则,欢迎提交 PR,Issue,也欢迎通过私信告诉我
|
||||
1. 部分特殊网站的伪造请参考 **[特殊网站伪造教程](https://github.com/SpaceTimee/Cealing-Host/wiki/Special-Cealing-Instruction)**
|
||||
2. 本项目仅**收录满足一定要求的网站**,但受限于篇幅等,该要求无法在此处写出
|
||||
3. 本项目仅供**测试 Sheas Cealer 的 SNI 伪造效果**,无意绕过任何国家审查设备的审查
|
||||
4. 本项目非常欢迎大家**贡献自己的伪造规则**,欢迎提交 PR,Issue,也欢迎通过[其他方式](https://github.com/SpaceTimee/Cealing-Host#联系方式)告诉我
|
||||
|
||||
## 文件地址
|
||||
1. Cealing Host (内置规则): [https://github.com/SpaceTimee/Cealing-Host/raw/main/Cealing-Host.json](https://github.com/SpaceTimee/Cealing-Host/raw/main/Cealing-Host.json) ([镜像](https://gitlab.com/SpaceTimee/Cealing-Host/raw/main/Cealing-Host.json))
|
||||
@ -24,16 +27,15 @@ c15412/Cealing-Host (部分规则添加多 ip 优选功能): [https://github.com
|
||||
|
||||
> 这些伪造规则由其他维护者维护,使用前请自行检查
|
||||
|
||||
## 食用方式
|
||||
1. 运行 Sheas Cealer -> 将文件 (镜像) 直链填入上游链接 -> 点击**更新上游规则**按钮获取更新 (首选)
|
||||
2. 运行 Sheas Cealer -> 点击**编辑上游规则**按钮 -> 将相应内容复制到自动打开的文件中并保存 (临时使用)
|
||||
## 格式文档
|
||||
**[Cealing Host Documentation](https://github.com/SpaceTimee/Cealing-Host/wiki/Cealing-Host-Documentation)**
|
||||
|
||||
## 开发者
|
||||
**Space Time**
|
||||
|
||||
## 联系方式
|
||||
1. **QQ 群 (主群): 716266896,338919498**
|
||||
2. TG 群 (分群): [PixCealerChat](https://t.me/PixCealerChat)
|
||||
3. **邮箱: Zeus6_6@163.com**
|
||||
1. **QQ 群: 1034315671,716266896,338919498**
|
||||
2. **TG 群: [PixCealerChat](https://t.me/PixCealerChat)**
|
||||
3. 邮箱: Zeus6_6@163.com
|
||||
|
||||
•ᴗ•
|
||||
|
Loading…
Reference in New Issue
Block a user