Skip to content

Instantly share code, notes, and snippets.

@divinity76
Last active June 3, 2025 13:34
Show Gist options
  • Save divinity76/1f7cfa0e75ad164567c7ce0cfcf2a471 to your computer and use it in GitHub Desktop.
Save divinity76/1f7cfa0e75ad164567c7ce0cfcf2a471 to your computer and use it in GitHub Desktop.
libcurl version scanner bash script
#!/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)
@divinity76
Copy link
Author

lazypasta:

curl 'https://gist.githubusercontent.com/divinity76/1f7cfa0e75ad164567c7ce0cfcf2a471/raw/libcurl_version_scanner.sh' | bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment