Skip to content

Instantly share code, notes, and snippets.

@tamjid0x01
Created March 13, 2021 18:02
Show Gist options
  • Save tamjid0x01/beca7c9569c5a285796c8b0df9cc8569 to your computer and use it in GitHub Desktop.
Save tamjid0x01/beca7c9569c5a285796c8b0df9cc8569 to your computer and use it in GitHub Desktop.
waffind()
{
for ip in $(cat $1) # iterate through each line in file
do
org=$(curl -s https://ipinfo.io/$ip | jq -r '.org' ) # Get Org from IPInfo
title=$(timeout 2 curl -s -k -H "Host: $2" https://$ip/ | pup 'title text{}') # Get title
echo "IP: $ip Title: $title Org: $org" # Print results
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment