Fading Coder

One Final Commit for the Last Sprint

Efficient Linux Commands for Security Reconnaissance and Parallel Processing

Extracting Endpoints from JavaScript Files cat script.js | grep -Eo '"/[a-zA-Z0-9_/?=&]*"' | sed 's/^"//;s/"$//' | sort -u Retrieving CIDR and Organization Information for a Host List for target in $(cat targets.txt); do for ip_addr in $(dig a $target +short); do whois $ip_ad...

Essential Linux Commands for File and System Management

1. Basic Navigation 1.1 cd: Change Directory # Change to an absolute path cd /study/files # Change to a relative path cd test/ # Special directory shortcuts cd . # Current directory cd .. # Parent directory cd / # Root directory cd ~ # Home directory 1.2 ls: List Directory Contents # Basic listing l...