tech

gotofail.com

goto-fail-fail

goto fail; Das letzte Sicherheitsupdate von Apple behebt einen echten Bug. Im Code befindet sich die doppelte Anweisung goto fail;. Eine prüfende Wenn-Bedingung wird nicht erreicht, was letztlich ausgenutzt werden könnte.

Ob man selbst betroffen ist, testet die Site gotofail.com:

The SSLVerifySignedServerKeyExchange function in libsecurity_ssl/lib/sslKeyExchange.c in the Secure Transport feature in the Data Security component in Apple iOS 6.x before 6.1.6 and 7.x before 7.0.6, Apple TV 6.x before 6.0.2, and Apple OS X 10.9.x before 10.9.2 does not check the signature in a TLS Server Key Exchange message, which allows man-in-the-middle attackers to spoof SSL servers by (1) using an arbitrary private key for the signing step or (2) omitting the signing step.
[ web.nvd.nist.gov ]

Man darf erwarten, dass Apple in Kürze ein Sicherheitsupdate für OS X 10.9 Mavericks herausbringen wird. Systeme vor 10.9 sind nicht betroffen. iOS ist bereits gesichert.

<

hashOut.length = SSL_SHA1_DIGEST_LEN;
if ((err = SSLFreeBuffer(&hashCtx)) != 0)
goto fail;

if ((err = ReadyHash(&SSLHashSHA1, &hashCtx)) != 0)
goto fail;
if ((err = SSLHashSHA1.update(&hashCtx, &clientRandom)) != 0)
goto fail;
if ((err = SSLHashSHA1.update(&hashCtx, &serverRandom)) != 0)
goto fail;
if ((err = SSLHashSHA1.update(&hashCtx, &signedParams)) != 0)
goto fail;
goto fail;
if ((err = SSLHashSHA1.final(&hashCtx, &hashOut)) != 0)
goto fail;

err = sslRawVerify(ctx,
ctx->peerPubKey,
dataToSign, /* plaintext */
dataToSignLen, /* plaintext length */
signature,
signatureLen);
if(err) {
sslErrorLog(„SSLDecodeSignedServerKeyExchange: sslRawVerify “
„returned %d\n“, (int)err);
goto fail;
}

, , , ,

Trackbacks/Pingbacks

  1. 10.9.2-Update mit SSL-Fix » Hightech und Blech - 25. Februar 2014

    […] OS X Mavericks 10.9.2 Update ( 860 Megabyte im Download ) behebt unter anderem den so genannten Goto-Fail-Fehler, durch den die Überprüfung von SSL-Verbindungen auf dem Mac und unter iOS schadhaft ist. iOS 7 […]

  2. Sicherheitsspezialexperten zum SSL-Bug » Hightech und Blech - 27. Februar 2014

    […] wie flüchtig eingefügt wirkendes verdoppeltes goto fail; schaltet die Überprüfung von SSL-Verbindungen aus und öffnet Angriffen Tür und Tor. […]

  3. iOS 7.1 Update » Hightech und Blech - 10. März 2014

    […] die Beta von 7.1 nutzt, sollte das System einmal frisch installieren, denn auch der Goto-fail-SSL-Bug ist […]

Powered by WordPress. Designed by Woo Themes

%d Bloggern gefällt das: