中国DOS联盟论坛

中国DOS联盟

-- 联合DOS 推动DOS 发展DOS --

联盟域名:www.cn-dos.net  论坛域名:www.cn-dos.net/forum
DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!

游客:  注册 | 登录 | 命令行 | 会员 | 搜索 | 上传 | 帮助 »
中国DOS联盟论坛 » DOS批处理 & 脚本技术(批处理室) » 自动切换外网IP的应用--刷woyaofacai.com的积分
作者:
标题: 自动切换外网IP的应用--刷woyaofacai.com的积分 上一主题 | 下一主题
yishanju
银牌会员

[b]看你妹啊[/b]


积分 1488
发帖 1357
注册 2006-5-20
状态 离线
『楼 主』:  自动切换外网IP的应用--刷woyaofacai.com的积分

自动切换外网IP的应用--刷woyaofacai.com的积分
如果推荐别人通过你的宣传链接,你就会得到10分,每个IP得到10分,下面就是我的宣传连接,^_^:
http://www.woyaofacai.com/?User=%e4%be%9d%e5%b1%b1%e5%b1%85

通过脚本自动切换IP地址,自己访问自己的宣传连接,这样就能刷积分了.


看代码,bat.bat 的内容:
prompt 运行中...
:yishanju
title 网关为192.168.1.1
netsh interface ip set address name="本地连接" gateway=192.168.1.1 gwmetric=0
nc 192.168.1.2 80 <d2.txt
ping 127.0.0.1 -n 1>nul
nc 192.168.1.2 80 <l2.txt
nc www.woyaofacai.com 80 <duijian.txt
ping 127.0.0.1 >nul
title 网关为192.168.1.2
netsh interface ip set address name="本地连接" gateway=192.168.1.2 gwmetric=0
nc 192.168.1.1 80 <d1.txt
ping 127.0.0.1 -n 1>nul
nc 192.168.1.1 80 <l1.txt
nc www.woyaofacai.com 80 <duijian.txt
ping 127.0.0.1 >nul
set /a a=%time:~0,2%
set /a b=8
if %a% geq %b% shutdown -s -f -t 100 & exit
goto yishanju
我们公司有两条ADSL,通过切换网关,可以实现轮流通过两根ADSL 上网,这样刷得快些.

2007-3-17 20:44
查看资料  发短消息 网志   编辑帖子  回复  引用回复
yishanju
银牌会员

[b]看你妹啊[/b]


积分 1488
发帖 1357
注册 2006-5-20
状态 离线
『第 2 楼』:  

d1.txt 的内容:
GET /userRpm/StatusRpm.htm?Disconnect=断%20线&wan=1 HTTP/1.1
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
Referer: http://192.168.1.1/
Accept-Language: zh-cn
UA-CPU: x86
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Maxthon; KuGooSoft; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
Host: 192.168.1.1
Connection: Keep-Alive
Authorization: Basic YWRtaW46YWRtaW4=





                                                                                 


                                                                                 


                                                                                 


2007-3-17 20:47
查看资料  发短消息 网志   编辑帖子  回复  引用回复
yishanju
银牌会员

[b]看你妹啊[/b]


积分 1488
发帖 1357
注册 2006-5-20
状态 离线
『第 3 楼』:  

l1.txt 的内容:
GET /userRpm/StatusRpm.htm?Connect=连%20接&wan=1 HTTP/1.1
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
Referer: http://192.168.1.1/
Accept-Language: zh-cn
UA-CPU: x86
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Maxthon; KuGooSoft; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
Host: 192.168.1.1
Connection: Keep-Alive
Authorization: Basic YWRtaW46YWRtaW4=




                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    


2007-3-17 20:48
查看资料  发短消息 网志   编辑帖子  回复  引用回复
yishanju
银牌会员

[b]看你妹啊[/b]


积分 1488
发帖 1357
注册 2006-5-20
状态 离线
『第 4 楼』:  

d2.txt 的内容:
GET /userRpm/StatusRpm.htm?Disconnect=断%20线 HTTP/1.1
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
Referer: http://192.168.1.2/
Accept-Language: zh-cn
UA-CPU: x86
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Maxthon; KuGooSoft; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
Host: 192.168.1.2
Connection: Keep-Alive
Authorization: Basic YWRtaW46YWRtaW4=







                                                                                 


                                                                                 


                                                                                 


2007-3-17 20:49
查看资料  发短消息 网志   编辑帖子  回复  引用回复
yishanju
银牌会员

[b]看你妹啊[/b]


积分 1488
发帖 1357
注册 2006-5-20
状态 离线
『第 5 楼』:  

l2.txt 的内容:
GET /userRpm/StatusRpm.htm?Connect=连%20接 HTTP/1.1
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
Referer: http://192.168.1.2/
Accept-Language: zh-cn
UA-CPU: x86
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; Maxthon; KuGooSoft; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
Host: 192.168.1.2
Connection: Keep-Alive
Authorization: Basic YWRtaW46YWRtaW4=








                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    


2007-3-17 20:50
查看资料  发短消息 网志   编辑帖子  回复  引用回复
yishanju
银牌会员

[b]看你妹啊[/b]


积分 1488
发帖 1357
注册 2006-5-20
状态 离线
『第 6 楼』:  

d1.txt , l1.txt,d2.txt,l2.txt 的内容是用WinSock Expert v0[1].6 beta1汉化版 抓包得到的

nc.exe 和WinSock Expert v0[1].6 beta1汉化版工具可以在各大黑客网站上下载得到,由于两个工具长期被广大滴所谓滴黑客们使用,所以杀毒报警在所难免.

2007-3-17 20:51
查看资料  发短消息 网志   编辑帖子  回复  引用回复

请注意:您目前尚未注册或登录,请您注册登录以使用论坛的各项功能,例如发表和回复帖子等。


可打印版本 | 推荐给朋友 | 订阅主题 | 收藏主题



论坛跳转: