码迷,mamicode.com
首页 > 其他好文 > 详细

OpenWrt 广告植入原型搭建

时间:2014-09-20 15:25:07      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   io   os   java   ar   for   文件   

笔者通过在路由器上搭建Provioxy代理服务器来实现过滤通过其对网页,并植入相应对广告。

废话不多说直接上实验:


第一步:准备固件

编译OpenWrt固件-选择Privoxy


第二步:修改配置文件

配置user.filter, user.action, config文件。

config文件中需要指定监听都地址与端口号

root@YSWiFi:/etc/privoxy# cat config 
confdir /etc/privoxy
logdir /var/log
filterfile default.filter
filterfile user.filter
#logfile privoxy
actionsfile match-all.action # Actions that are applied to all sites and maybe overruled later on.
actionsfile default.action   # Main actions file
actionsfile user.action      # User customizations
listen-address  10.1.1.1:8118
toggle  1
enable-remote-toggle  1
enable-remote-http-toggle  0
enable-edit-actions 1
enforce-blocks 0
buffer-limit 4096
forwarded-connect-retries  0
accept-intercepted-requests 1
allow-cgi-request-crunching 0
split-large-forms 0
keep-alive-timeout 300
socket-timeout 300
permit-access  10.1.1.0/24
debug   1    # show each GET/POST/CONNECT request
debug   4096 # Startup banner and warnings
debug   8192 # Errors - *we highly recommended enabling this*
#admin-address privoxy-admin@example.com
#proxy-info-url http://www.example.com/proxy-service.html

root@YSWiFi:/etc/privoxy# 

在user.action中注入广告脚本 xxx.js

具体参考我的脚本 https://gist.github.com/qianguozheng

user.filter中添加过滤规则

FILTER: block-weeds
s|</head>|<script type="text/javascript" src="http://www.yourdomainname.com/ystest/js/hupu.js"></script>$0|

user.action中调用过滤规则
{+filter{block-weeds}}
.*

将所有目标地址为80端口的请求转到8118端口
iptables -t nat -A PREROUTING -s 0.0.0.0/0.0.0.0 -p tcp --dport 80 -j REDIRECT --to-ports 8118


第三步:体验结果

这时候,当你打开网页的时候,你会发现原来世界那么容易控制, 每个网页都有你所想看到都东西。

OpenWrt 广告植入原型搭建

标签:style   http   color   io   os   java   ar   for   文件   

原文地址:http://blog.csdn.net/qianguozheng/article/details/39234051

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!