我针对征途写了一个自动刷信的.
服务器..区..帐号..等都是自动生成
包括IP也是.
不过要随机刷IP的前提就是要在lin.asp里添加一句代码
ip=request("ip")
看了下楼主的代码
使用的是
WebBrowser控件..
WebBrowser1.Navigate (Text1.Text & Label10.Caption & Text2.Text & Label11.Caption & Text3.Text & Label12.Caption & Text4.Text & Label13.Caption & Text5.Text & Label14.Caption & Text6.Text & Label15.Caption & Text7.Text & Label16.Caption & Text8.Text & Label17.Caption)
MsgBox "成功刷入信封!", , "提示:"
就是说使用假的页面..不存在的页面..执行完
WebBrowser1.Navigate
也会提示"成功刷入信封!" 没加以判断啊
下面这段代码.是我测试时写的.不是随机产生数据的代码
Private Sub Command1_Click()
Inet1.OpenURL (Text1.Text + "?id=" + Text2.Text + "&p=" + Text3.Text + "&s=" + Text4.Text + "&ss=" + Text5.Text + "&srv=" + Text6.Text + "&js=" + Text7.Text + "&dj=" + Text8.Text + "&gj=" + Text9.Text + "&yz=" + Text10.Text+ "&ip=" + Text11.Text) '用inet连接网页
aa = InStr(Inet1.GetHeader, "404") '判断页头是否包含字符“404”,返回0则不包含,否则返回其位置
If aa <> 0 Then '页头中包含404
MsgBox "刷信失败!默认收信页面可能被改名!", 48, "失败!" '则说明该网页不存在
Else '如果页头中不包含“404”
MsgBox "刷信成功!请登陆后台查看!", 64, "恭喜!" '说明网页存在
End If
End Sub
随机刷信的效果
在此感谢我的师傅"小珂"对我的指点
因有人要求故此吧我原来的源码发上来
code.rar (80.93 KB)
[
本帖最后由 fhod 于 2010-4-11 15:06 编辑 ]