Skip to content

Instantly share code, notes, and snippets.

View hamoon12345's full-sized avatar

HAMOON hamoon12345

View GitHub Profile
@iam-mhaseeb
iam-mhaseeb / xss-scanner.py
Last active August 16, 2024 07:41
A simple XSS vulnerability scanner tool in Python.
import sys
import requests
from pprint import pprint
from bs4 import BeautifulSoup as bs
from urllib.parse import urljoin
XSS_SCRIPT = "<Script>alert('hi')</scripT>"
class MissingUrlException(Exception):