-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
请教如何抓取官方EPG #23
Comments
这个我也想知道 |
https://www.right.com.cn/forum/thread-4059959-1-1.html 这里有个up主提供了算法取密钥,作者可否试一下,我不太懂加密,跑了一晚上跑不出密钥来 |
按他说的跑了一下php,我也没找出来他说的8位密钥 $encrypted = ''; // Authenticator string
foreach (range(0, 99999999) as $i) {
$key = sprintf("%08d", $i);
$result = openssl_decrypt(hex2bin($encrypted), 'des-ede3', $key . str_repeat('0', 24 - strlen($key)), OPENSSL_RAW_DATA);
if ($result !== false) {
printf("%08d: %s\n", $i, var_export($result, true));
}
} 上面这个php脚本跑出来不少结果,但是没有一个是正常字符串而且符合特征的 ed: 搜索验证页面的endpoint找到一个叫tellyget的git,里面验证用的是des而不是3des,可以试试换成DES-ECB能不能解密 |
大佬可以提供一下用ffprobe盲扫生成分辨率列表的批处理吗?想扫扫移动的组播段 |
https://www.right.com.cn/forum/thread-8280221-1-1.html 这里大佬提供了思路,作者可尝试下 |
https://github.com/yujincheng08/rust-iptv-proxy |
想请教下作者有没有办法抓取IPTV内网的EPG电子节目单出来,因为网上公共的EPG还是有很多地方台没有。
The text was updated successfully, but these errors were encountered: