Created
November 25, 2023 15:52
-
-
Save nullenc0de/14989ca1d0f48b6797a9d8df2505638e to your computer and use it in GitHub Desktop.
company finder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -s https://ip-ranges.amazonaws.com/ip-ranges.json | jq -r '.prefixes[] | select(.region | startswith("us")) | .ip_prefix' | sort -u | tlsx -san -cn -silent -nc | awk -F'[][]' '{print $2}' | unfurl format %r.%t |tee aws_company.txt | |
sort ./aws_company.txt | uniq -c | sort -nr | awk '$1 >= 500' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment