首页 > 代码库 > 广告路由器开发(一)数据流

广告路由器开发(一)数据流

最近无事时对广告路由器进行了一个分析

常用的广告路由器一般是通过普通路由器刷openwrt或是ddwrt等固件后安装wifidog组件做的,我们这里分析的即是wifidog加authpuppy

以下数据为截取自authpuppy和wifidog的交互


1.用户请求页面http://www.gov.cn/guowuyuan/2014-09/23/content_2755108.htm
--------------------------------------------------------------------------------------
request:
/login/?gw_address=192.168.4.1&gw_port=2060&gw_id=default&mac=00:0e:c6:f0:06:b2&url=http%3A//www.gov.cn/guowuyuan/2014-09/23/content_2755108.htm

response:
<form action="http://192.168.1.251:81/login/?gw_address=192.168.4.1&gw_port=2060&gw_id=default&mac=00:0e:c6:f0:06:b2&url=http%3A//www.gov.cn/guowuyuan/2014-09/23/content_2755108.htm" method="POST">
    <input type="hidden" name="gw_id" value=http://www.mamicode.com/"default" />>


广告路由器开发(一)数据流