Security Header website: https://securityheaders.com/ Scan the target website: https://www.hackthissite.org/ Write the Python Source Code: import requests domain = "https://www.hackthissite.org/" headers = requests.get(domain).headers if 'X-Fram…
Socket Programming 1.  Scan the target Vulnerable Server. And test it by telnet. 2. Write the scanner source code. import socket ip = "10.0.0.32" for port in range(1,10000): try: s = socket.socket() s.connect((ip,port)) s.close() print "%d/…
Password Sniffing with Scapy 1. Download and install the Scapy first. pip install scapy https://scapy.net/ 2. Target Website https://aavtrain.com/index.asp 3. Write the Python code from scapy.all import * def sniffer(packet): http_packet = packet if…
Preparation: Python Libray in the following programming: 1. Requests Document: https://2.python-requests.org//en/master/ 2. Beautiful Soup Documentation: https://www.crummy.com/software/BeautifulSoup/bs4/doc/ Install the lib on Kali Linux: apt-get in…
Automatically Discovering Vulnerabilities Using the Vulnerability Scanner 1. Modify the run_scanner method in the scanner class. #!/usr/bin/env python import requests import re from bs4 import BeautifulSoup from urllib.parse import urljoin class Scan…
VULNERABILITY_SCANNER How to discover a vulnerability in a web application? 1. Go into every possible page. 2. Look for ways to send data to the web application(URL + Forms). 3. Send payloads to discover vulnerabilities. 4. Analyze the response to ch…
Extracting & Submitting Forms Automatically Target website:http://10.0.0.45/dvwa/vulnerabilities/xss_r/ Class Scanner. #!/usr/bin/env python import requests import re from bs4 import BeautifulSoup from urllib.parse import urljoin class Scanner: def _…
VULNERABILITY_SCANNER How to discover a vulnerability in a web application? 1. Go into every possible page. 2. Look for ways to send data to web application(URL + Forms). 3. Send payloads to discover vulnerabilities. 4. Analyze the response to check…
WvsScannerQueue.pyVersion: Python 2.7.* Acunetix Web Vulnerability Scanner 辅助Python脚本的第一个版本.功能:扫描URL.TXT文件中所有URL扫描完成一个URL后立即过滤报告,并且提权漏洞标题发送给自己 存在的问题:扫描一些网站很慢毕竟这个就是调用Acunetix Web Vulnerability Scanner 的Console端直接进行扫描的有时候扫描个网站好几天,没有写相应的方法去取消,以后看写不写 有时候…
The Best Hacking Tools Hacking Tools : List of security tools specifically aimed toward security professionals for testing and demonstrating security weaknesses.     Passwords Cain & Abel Cain & Abel is a password recovery tool for Microsoft Opera…