我在本地机器上安装了 Metasploit 社区版,并尝试使用auxiliary/admin/mysql/mysql_sql
模块利用我自己的本地主机。
我还提供了我的 mysql 凭证,当我使用run
辅助时出现超时错误。
msf5 auxiliary(admin/mysql/mysql_sql) > show options
Module options (auxiliary/admin/mysql/mysql_sql):
Name Current Setting Required Description
---- --------------- -------- -----------
PASSWORD password no The password for the specified username
RHOSTS 127.0.0.1 yes The target address range or CIDR identifier
RPORT 3306 yes The target port (TCP)
SQL select version() yes The SQL to execute.
USERNAME developer no The username to authenticate as
msf5 auxiliary(admin/mysql/mysql_sql) > run
[*] Running module against 127.0.0.1
[-] 127.0.0.1:3306 - Connection timedout
[*] Auxiliary module execution completed
msf5 auxiliary(admin/mysql/mysql_sql) >
即使我关闭了防火墙,响应仍然是一样的。
- Metasploit 是否允许利用其自己的主机?
- 如果是的话原因是什么
Connection timed out
?
谢谢!