Security Scripts
A collection of useful scripts for automating reconnaissance and testing tasks.
Header Checker
A Python script to check a URL for the presence of important security-related HTTP headers like CSP, HSTS, and X-Frame-Options.
Link Extractor
A simple Bash one-liner using `curl` and `grep` to quickly extract all unique internal and external links from a web page's source code.
Basic Port Scanner
A simple Python script using sockets to scan a target host for a list of common open TCP ports. For educational purposes only.
Traversal Path Generator
Generates a list of common Directory Traversal payloads. Useful for understanding path manipulation vulnerabilities.
XSS Payload Encoder
A script to demonstrate basic HTML and URL encoding for creating reflected XSS payloads. Helps in learning sanitization bypasses.