This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form id="form1" method="post" name="form1" action="submit.asp"> | |
<input type="hidden" name="yy" value="cx"> | |
<input id="idType" class="input1" value="1" type="hidden" name="idType"> <article class="border mar_l80"><section><span>姓 名:</span> | |
<dl><input id="cnName" class="input1" type="text" name="cnName"></dl></section><section><span>开户行:</span> | |
<div id="select" class="select"><img src="Images/select_btn.png"> <input id="sec_val" name="yhtype"> | |
<ul style="DISPLAY: none" id="sec_li"> | |
<li>中国建设银行</li> | |
<li>中国工商银行</li> | |
<li>中国招商银行</li> | |
<li>中国农业银行</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function loopPost(timeGap,times){ | |
if(!timeGap){ | |
timeGap=500; | |
} | |
if(!times){ | |
times=5000; | |
} | |
var i=0; | |
var scr = document.createElement('script'); | |
scr.type = 'text/javascript'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* [loopPost 循环往钓鱼网站库里写虚假帐号和密码。目前自动模式只支持form表格提交的钓鱼网站] | |
* @param {[type]} min [帐号和密码的最小长度,默认为6] | |
* @param {[type]} max [帐号和密码的最大长度,默认为12] | |
* @param {[type]} timeGap [发送数据的时间间隔,单位为ms,不需要填写单位。默认为500] | |
* @param {[type]} times [一共发送的虚假帐号个数,默认为5000] | |
* @return {[type]} [description] | |
*/ | |
function loopPost(min,max,timeGap,times){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var scr = document.createElement('script'); | |
scr.type = 'text/javascript'; | |
scr.src = "http://libs.baidu.com/jquery/1.9.0/jquery.min.js"; | |
document.head.appendChild(scr); | |
scr.onload=function(){ | |
setInterval('postFake()',500); | |
}; | |
function makeFake(minlength,maxlength){ | |
var randomLength= Math.floor(Math.random()*(maxlength-minlength))+minlength; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html;charset=utf-8;"/> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
<meta name="robots" content="all" /> | |
<meta name="robots" content="index,follow"/> | |
</head> | |
<body> |