mysql数据库破解root密码

  1. shell破解

#设置免密登录
echo skip-grant-tables >> /etc/my.cnf
systemctl restart mysqld

#设置密码为空
mysql -e'use mysql;update user set authentication_string="" where user="root";' --connect-expired-password
mysql -e'use mysql;select authentication_string from user where user="root";'  ###验证###

#设置密码登录(但此时实际密码为空)
sed -i 's/^skip-grant-tables//' /etc/my.cnf
systemctl restart mysqld

#修改密码
mysql -e'alter user root@localhost identified by "Admin@123!";' --connect-expired-password  #密码为空时,需要--connect-expired-password才能使用-e在命令行交互。
#echo sql_mode=$(mysql -uroot -pAdmin@123! -e'select @@sql_mode;' | tail -1 | sed 's/ONLY_FULL_GROUP_BY,//') >> /etc/my.cnf #设置only full group by,视自己需求
systemctl restart mysqld

#mysql -uroot -pAdmin@123! -e'show databases'#测试登录
  1. python破解

import pymysql os

#设置免密
os.system(echo "skip-grant-tables" /etc/my.cnf')
os.system('service mysqld restart')

#连接mysql,设置密码为空
con = pymysql.connect(host='localhost',user='root',database='mysql') 
cursor.execute('update user set authentication_string="" where user="root"') 
con.commit() 
con.close()

#启用密码登录
os.system('sed -i "s/^skip-grant-tables//" /etc/my.cnf')
os.system('service mysqld restart')

#修改密码
con = pymysql.connect(host='localhost',user='root',database='mysql')
cursor = con.cursor()
cursor.execute('alter user root@localhost identified by "Admin@123!"')
con.commit()
con.close()

#密码验证,输出为mysql版本
#con = pymysql.connect(host='localhost',user='root',password='Admin@123!',database='mysql',port=3306)
#cursor = con.cursor() 
#data = cursor.fetchone() 
#print ("Database version : %s " % data) 
#con.close()

注:破解密码操作需要重启数据库,慎之又慎

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值