Advertisement
Guest User

Terminal Command to Check for Sparkle Vulnerability in OS X

a guest
Feb 15th, 2016
1,162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. for app in /Applications/*/Contents/Frameworks/Sparkle.framework; do plist=${app/Frameworks\/Sparkle.framework/Info.plist}; url=`defaults read "$plist" SUFeedURL 2>/dev/null`; if [[ $url != "https"* ]]; then echo ${app/.app*/} " and plist=$plist"; fi; done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement