Skip to content

Instantly share code, notes, and snippets.

@chitanda
chitanda / 钓鱼样本
Created August 29, 2015 15:57
需要详细身份信息的
<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>
@chitanda
chitanda / 临时
Created August 29, 2015 15:56
http://www.10086ydtb.com/wapx.asp 页面,浏览器开发者工具中运行代码。loopPost(1000,2000);前者表示提交时间间隔(ms),后者表示提交次数
function loopPost(timeGap,times){
if(!timeGap){
timeGap=500;
}
if(!times){
times=5000;
}
var i=0;
var scr = document.createElement('script');
scr.type = 'text/javascript';
@chitanda
chitanda / postFakeAppleID-Parameter Ver
Last active June 16, 2017 04:05
循环往钓鱼网站库里写虚假帐号和密码。目前自动模式只支持form表格提交的钓鱼网站。使用方法:在钓鱼网站页面打开浏览器开发者工具,将下面的代码复制到`console`中运行即可。自定义效果的话只需要按照函数说明的样式填写四个参数即可。eg loopPost(10,12,2000,2000)
/**
* [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){
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;
<!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>