Skip to content

Instantly share code, notes, and snippets.

View Batuhanaydn's full-sized avatar
👊
Focusing

Muhammed Batuhan Aydın Batuhanaydn

👊
Focusing
View GitHub Profile
@ndavison
ndavison / hbh-header-abuse-test.py
Last active June 16, 2025 15:30
Attempts to find hop-by-hop header abuse potential against the provided URL.
# github.com/ndavison
import requests
import random
import string
from argparse import ArgumentParser
parser = ArgumentParser(description="Attempts to find hop-by-hop header abuse potential against the provided URL.")
parser.add_argument("-u", "--url", help="URL to target (without query string)")
@willurd
willurd / web-servers.md
Last active October 21, 2025 14:30
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000