Python Ethical Hacking - WEB PENETRATION TESTING

Posted 一蓑烟雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python Ethical Hacking - WEB PENETRATION TESTING相关的知识,希望对你有一定的参考价值。

CRAWLING SUMMARY

Our crawler so far can guess:

  • Subdomains.
  • Directories.
  • Files.

 

Advantages:

->Discover "hidden" paths/paths admin does not want us to know.

 

Disadvantages:

-> Will does not discover everything.

 

Solution:

-> Analyse discovered paths to discover more paths.

 

#!/usr/bin/env python

import requests


def request(url):
    try:
        return requests.get("http://" + url)
    except requests.exceptions.ConnectionError:
        pass


target_url = "10.0.0.45/mutillidae/"

response = request(target_url)

print(response.content)

 

以上是关于Python Ethical Hacking - WEB PENETRATION TESTING的主要内容,如果未能解决你的问题,请参考以下文章

Python Ethical Hacking - Malware Packaging

Python Ethical Hacking - Malware Packaging

Python Ethical Hacking - VULNERABILITY SCANNER

Python Ethical Hacking - VULNERABILITY SCANNER

Python Ethical Hacking - VULNERABILITY SCANNER

Python Ethical Hacking - VULNERABILITY SCANNER