软路由实现流量拦截,破解联通IPTV
2018-07-29(日)
by chenjia.me
参考文章
软路由实现流量拦截 注意,原文中没提到的,设置好pf后要重启生效。
简洁操作
- 开启热点
echo "rdr on bridge100 inet proto tcp all -> 127.0.0.1 port 8080" | sudo pfctl -Ef -
- 设置burpsuit,注意需要监听所有接口,在
request handing
中打开invisible proxy
- 开始MITM
- 在应用商店选择一个应用查看详情,修改返回json,替换下载地址和md5
- 等待电视开始安装。
备份原文章最后代码
➜ ~ grep -v "^#" /etc/pf.conf
scrub-anchor "com.apple/*"
nat-anchor "com.apple/*"
nat-anchor "hackproxy/*"
rdr-anchor "com.apple/*"
rdr-anchor "hackproxy/*"
dummynet-anchor "com.apple/*"
anchor "com.apple/*"
anchor "hackproxy/*"
load anchor "com.apple" from "/etc/pf.anchors/com.apple"
load anchor "hackproxy" from "/etc/pf.anchors/hackproxy"
➜ ~ grep -v "^#" /etc/pf.anchors/hackproxy
nat on en5 inet from bridge100:network to any -> (en5:0) extfilter ei
rdr on bridge100 inet proto tcp all -> 127.0.0.1 port 8080
执行sudo pfctl -a hackproxy -sn
自动化检查网络出口和入口的端口封禁情况
2017-12-22(五)
by chenjia.me
BrupSuit证书导入Android7.0以上手机
2017-10-29(日)
by chenjia.me
Transform360 编译指南
2017-08-12(六)
by chenjia.me
该指南指导编译基于Transform360的FFmpeg,并介绍Transform Filter的使用方法。基于这个你可以获取到将等圆柱映射的全景视频转换为正方体映射的全景视频。
什么是Transform360 …
read more评论系统迁移至Github Issue
2017-07-29(六)
by chenjia.me
基于Google VR SDK 的Ambisonic 音频播放Demo实现及相关文档
2017-07-11(二)
by chenjia.me