Techbypass always tries to help you to learn about recent vulnerabilities and exploitations.

Learn and share your security findings and help others to secure their digital assets.

Need any help mail to [email protected]

0 votes

Hi, using this following bash script you can check mass URT from a list,

#!/bin/bash

echo "#Mass HTTP Header Status Checker";

echo "# usage: check.sh target.txt";

file=$1

while IFS= read bulk

do

  curl -o /dev/null --max-time 10 --silent --head --write-out "%{http_code} - $bulk\n" "$bulk"

done < "$file"

exit 0

by (169 points)

Please log in or register to answer this question.

...