joubin jabbari
  • home
  • blog
  • work
  • reading
  • photography
  • contact
  • resume

Apple SSL gotofail:

Are you worried about the apple SSL issues?

Here is how you can check you're machine to find all the apps that are affected by this issue.

Code:

for i in `find / -name "*.app"`
do
    otool -L $i/Contents/MacOS/* 2>1 | grep 55471 > /dev/null 2>&1
    if [ $? -eq 0 ]
        then
        printf "$i\n\t\tis using /System/Library/Frameworks/Security.framework/Versions/A/Security (compatibility version 1.0.0, current version 55471.0.0)\n"
    fi
done

image


February 24 2014

Joubin Jabbari | Github | Twitter