Last active
June 3, 2025 13:34
-
-
Save divinity76/1f7cfa0e75ad164567c7ce0cfcf2a471 to your computer and use it in GitHub Desktop.
libcurl version scanner bash script
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
#!/bin/bash | |
while IFS= read -r -d '' sofile; do | |
echo "$sofile" | |
strings "$sofile" | grep -E '[0-9]+\.[0-9]+\.[0-9]+' | |
done < <(find / -type f -iname "*curl.so*" -print0 2>/dev/null) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
lazypasta: