]>
git.saurik.com Git - apple/security.git/blob - sslViewer/pingSslSites
3 # run sslViewer on a list of known sites. Arguments to this script are passed on
4 # to sslViewer unmodified.
9 set thisArg
= "$argv[1]"
10 set ARG_LIST
= "$ARG_LIST $thisArg"
13 echo Starting pingSslSites\
; args
: $ARG_LIST
15 # NOTE: using this list generates two errors when run without the 'e r' options.
16 # -- www.xdss.com has an unrecognized root cert.
17 # -- accounts2.keybank.com has an unrecognized cert in SSLv2 mode only
21 # -- store.apple.com only supports SSlv2 (!)
22 # -- www.xdss.com does not support TLSv1
24 set SSL_SITES
= (www.cduniverse.com \
28 accounts2.keybank.com \
35 foreach site
($SSL_SITES);
36 $LOCAL_BUILD_DIR/sslViewer
$site $ARG_LIST;