Last active
December 28, 2015 01:19
-
-
Save sylvainfilteau/7419838 to your computer and use it in GitHub Desktop.
Getting all IP addresses related to APT source host
This file contains 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
grep -shri "^deb" /etc/apt | cut -d " " -f 2 | sort -u | sed -e 's;https\?://;;' | sed -e 's;/.*$;;' | xargs dig +short | sort -u |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment