Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sjlleo/netflix-verify

流媒体NetFlix解锁检测脚本 / A script used to determine whether your network can watch native Netflix movies or not
https://github.com/sjlleo/netflix-verify

Last synced: 14 days ago
JSON representation

流媒体NetFlix解锁检测脚本 / A script used to determine whether your network can watch native Netflix movies or not

Awesome Lists containing this project

README

        

# NETFLIX-VERIFY

最新版本: `v3.0-stable`

流媒体NetFlix解锁检测脚本,使用Go语言编写。

在VPS网络正常的情况下,哪怕是双栈网络也可在几秒内快速完成IPv4/IPv6的NF解锁情况判断。

## 其他常见流媒体脚本链接

可以试试 [@lmc999](https://github.com/lmc999) 的全能脚本,基本包含所有你能用到的流媒体了

https://github.com/lmc999/RegionRestrictionCheck

其他,之前学 Go 的时候随便写写的,~~现在再回去看想钻到洞里去~~

~~DisneyPlus 解锁检测: https://github.com/sjlleo/VerifyDisneyPlus~~

~~Youtube 缓存节点、地域信息检测:https://github.com/sjlleo/TubeCheck~~

## 新特性

**2022/05/21**

添加`custom`影片检测支持,发布 `v3.0` 第一个稳定版

**2022/05/20**

重构`verify`、`util`、`printer` module,引入`goroutine`并发机制,提升运行效率。

一年前,我在学习`Golang`的时候以研究为目的完成了这个项目,现在是时候抛弃包袱,完整重构了。

## 编译脚本

编译脚本来自于 [@missuo](https://github.com/missuo) 同学的修改版,在从特表感谢~

## 指定网卡出口测试

感谢 @caobug

有些时候,我们使用了`Warp`或者是其他隧道网卡工具的时候,设置的路由表默认不通过他们上网

在这种情况下,如果我们依旧想要测试该网卡出口是否支持解锁NetFlix,可以选择指定网卡IP进行测试

在终端输入`ip a`,查看您想测试的网卡IP,然后加入参数 `-address` + 您的网卡IP地址即可,具体可看下图

![图片](https://user-images.githubusercontent.com/13616352/169537511-8a10c9d2-3f4c-438a-b20a-8e5e31464259.png)

## 鸣谢

1. 感谢 [@CoiaPrant](https://github.com/CoiaPrant) 指出对于地域检测更简便的方法
2. 感谢 [@XmJwit](https://github.com/XmJwit) 解决了IPV6 Only VPS无法下载脚本的问题
3. 感谢 [@samleong123](https://github.com/samleong123) 指出了文档的解释缺陷
4. 感谢 [@ymcoming](https://github.com/ymcoming) 指出了IPv6的检测Bug

## 功能实现

- [X] 解锁情况判断
- [X] 地域信息显示
- [X] 双栈网络测试
- [X] 代理检测 (Experiment)

~~半解锁检测(Deprecated)~~

## 如何食用

使用前,如果您不知道您使用的是什么架构的CPU,请先使用`uname -m`查看

**如果提示`Exec format error`是因为您下载了与您系统架构不对应的二进制文件**

对于`amd64`(`x86_64`),请使用如下命令下载运行
```bash
wget -O nf https://github.com/sjlleo/netflix-verify/releases/download/v3.1.0/nf_linux_amd64 && chmod +x nf && ./nf
```

对于`arm64`,请使用如下命令下载运行
```bash
wget -O nf https://github.com/sjlleo/netflix-verify/releases/download/v3.1.0/nf_linux_arm64 && chmod +x nf && ./nf
```

对于部分路由器,其SoC使用了`mips`架构,请使用如下命令下载运行
```bash
wget -O nf https://github.com/sjlleo/netflix-verify/releases/download/v3.1.0/nf_linux_mips && chmod +x nf && ./nf
```

## 相关名词解释

1. **不提供服务** - 所在的地区NF没开通,连自制剧也看不了
2. **宽松版权** - 有些NF拍摄的影片不是特别注重版权,所以限制放的很开
3. **解锁自制剧** - 代表可以看由NF自己拍摄的影片
4. **解锁非自制剧** - 代表可以看NF买下的第三方版权影片
5. **地域解锁** - NF在不同的地区可以看的片源都是不同的,有些影片只能在特定区观看

一般来说,需要能看非自制剧才算真正意义上的NF解锁
## Stargazers over time

[![Stargazers over time](https://starchart.cc/sjlleo/netflix-verify.svg)](https://starchart.cc/sjlleo/netflix-verify)