set infoFilePath to "/Contents/info.plist"
set theApps to do shell script "mdfind -onlyin /Applications " & quote & "kMDItemFSName == '*.app'" & quote
set theApps to paragraphs of theApps
set sparkleAppsList to {}
tell application "System Events"
repeat with anApp in theApps
set anApp to anApp as text
if exists disk item (anApp & "/Contents/Frameworks/Sparkle.framework") then
try
set thePlist to contents of property list file (anApp & infoFilePath)
set theValue to value of thePlist
try
set thisSUFeedURL to SUFeedURL of theValue as text
if thisSUFeedURL contains "http:" then
set end of sparkleAppsList to "Application : " & anApp & " : " & thisSUFeedURL & linefeed & linefeed
end if
end try
end try
end if
end repeat
end tell
display dialog "The following apps do not use secure https connections for the Sparkle updater:
" & sparkleAppsList buttons "OK" default button "OK" with title "Sparkle Framework Vulnerability Check"
#EOF
Yvan KOENIG running El Capitan 10.11.3 in French (VALLAURIS, France) mercredi 10 février 2016 22:24:46