'Text bomb' is latest Apple bug

7 years ago (bbc.com)

Anyone got any information on how the text rendering bug actually works (not just hand-waving it away as "oh it's UTF-8")?

I can see that the file alternates between segments of:

- Repetitions of the glyph "t̴́̍̒", which is a lowercase t with a combining tilde overlay, an acute accent, a vertical line above, and a turned comma above

- Random-looking ASCII characters with lots of apostrophes (spelled as ' in the HTML)

- Short sequences of spaces, non-breaking spaces, and zero-width joiners

- Occasional emoji

The "t̴́̍̒"s manage to slow down my terminal and glitch its rendering a bit. Is it that they're unexpectedly tall? But we've had zalgo-text for a while and it hasn't actually crashed devices.

  • I find it unexpectedly hilarious that we now have issues that cannot be fully described without running the risk of crashing our machines. Its as if there are certain unholy words that could cause us to faint if we were to utter them.

    • Sounds right out of Gödel, Escher, Bach :

      Achilles: I see the dilemma now. If any record player—say Record Player X—is sufficiently high-fidelity, then when it attempts to play the song "I Cannot Be Played on Record Player X", it will create just those vibrations which cause it to break...So it fails to be Perfect. And yet, the only way to get around that trickery, namely for Record Player X to be of lower fidelity, even more directly ensures that it is not Perfect. It seems that every record player is vulnerable to one or the other of those frailties, and hence all record players are defective. (p77)

      2 replies →

  • This reminds me of the AOL "punters" we used to make back in the day.

    When I was 13 I built a program called "BorG" that did a lot of fun stuff and animations (but the effects didn't freeze people for very long) and chatbots - and I charged $3 as shareware. Or $5 if you really liked it. I got about 100 people mailing me envelopes! And I used to grab some of that money when I wanted to buy pizza or food to hang out. Those were the days.

    I wonder if anyone here used it? :)

  • Okay, I have at least a guess about the type of thing that's going on, after seeing what it did to Firefox (which it at least didn't crash).

    Various GUI elements such as title bars, tooltips, and thumbnails of links to Web pages, will try to fit the text they're given in a certain amount of space. If the text is too wide, it'll show some amount of text followed by "...". (I wonder if they're prepared for the text to be too tall.)

    I saw Firefox rendering the long sequence of t̴́̍̒ characters in the mailto: link. It was being kerned in a way that made it nearly a solid black smear of pixels.

    My guess is that apps are trying to determine how much of this text to show to fit within a certain width (and height?), and this text messes with a kerning algorithm in a way that makes it computationally very difficult to decide. I still don't know what's going on with the rest of the text, and why it can read 20 MB of text without making a final decision.

  • I believe it might have something to do with sizing down/padding of the parent elements that attempt to contain the out of spec characters.

Come to think of it, I believe I've heard of multiple "making the device render this text causes a crash" bugs for Apple devices, but never on any other platforms. Is this type of bug just that much more common on Apple devices, or are there plenty of other cases out there that I just don't know about?

  • > but never on any other platforms

    There have been numerous crash-bugs for the Windows font renderer, and even security exploits using it (especially before windows 10, as earlier than that font rendering was performed in the kernel's space rather than user-land). I wouldn't be surprised to learn of issues (at least of the falling over variety) in common Linux rendering engines and for other OSs too.

  • Not just simple text, it's UTF-8. Rendering these UTF-8 "text bombs" seems to DoS several applications. This particular one crashes the messages app in iOS, crashes the tab in Chrome, and locks up FireFox. It also crashes several text editors which support UTF-8. Opens quickly in notepad, but takes several minutes in wordpad and it very laggy when scrolling.

  • More of a potential problem than an existing one but I know potential issues have shapped how fonts are delivered on Android :

    A recent version of the OS + support lib added the possibility to reference a font in your app in order to have it downloaded (if necessary) and applied to your views.

    IIRC It is restricted to one font delivery system only allowing fonts available on Google fonts. Not because of a power grab, but because fonts are not just graphics but also run a bunch of code.

    So unrestricted access would have been a big security hole.

    If you want more details, the font team talked about it at length during an Android Developer Backstage podcast episode.

  • In the 90s, there was a type of AOL punter (basically DOS attacks for AOL users) that would just IM people tons of html tags (eg <h3><h3><h3>hello</h3></h3></h3> but many more nested tags) and it would freeze aol trying to render it and kick people off the internet. They eventually fixed it.

  • >or are there plenty of other cases out there that I just don't know about?

    Yeah, go on IRC sometime and you’ll probably find out relatively quick.

    Plenty of magic strings that break things on various platforms, hardly just an OS X thing.

  • I suppose because SMS/messages is tightly integrated with the operating system. It goes from the baseband, through the kernel.

Based on a web search, https://bogdanz.me/work/diddu.html might be a working mirror of the proof of concept.

It appears to contain a 10MB long UTF-8 mess in both the og:title meta content and in a mailto: link.

I'd guess it's supposed to crash iOS apps by either posting that link if it displays links in a thumbnail element using og:title or otherwise by pasting the huge mailto link contained in the webpage, or perhaps only the e-mail address.

  • Hah. View-Source takes forever to load (in Vivaldi). Wget says it's a 20 MB file. Opening it in Joe in Cygwin kills the Cygwin process. Neat.

    Also the href attribute inside the <link rel="apple-touch-icon"> points to a HTML URL, but that returns a 404...

  • That site caused Firefox 57 (64bit) to lock up on Windows 10...

    It is an i7, 16 GB total (7 GB free), and an SSD.

    • Same for me, except on Windows 7. CPU spiked to 100% and I warmed up my hands with the extra heat :). Closing the tab and waiting a minute or so (the usual thing I do for cpu/memory intensive pages like this) didn't work. I had to completely restart Firefox to get it back to normal.

    • I have Firefox 58/64bit/Linux and it slowed down Firefox on my i5 with 16GB ram (2GB free) w/ HDD for about 1 second... it didn't lock it up because any action that I did on firefox was slowed down by about 1 second... other programs seemed fine too.

    • It didn't completely lock up on W7 FF 57.

      The lock ups came in waves but was able to close the tab when it was unlocked.

  • This is arguably spam. The "link to fix iMessage if it crashes" just opens up a ton of ads with women in lingerie.

  • Could someone just use some sort of fuzzing software to generate these?

    Just keep trying many until one hits.

    • You can, but the number of possible inputs is huge and fuzzing won't prove that no such input exists.

The linked blog assures people that this can't be used to access data. Once something is crashing an app/OS, can you really say that? I mean, can you be sure there's no one clever enough to capitalize on the underlying software error leading to this state?

  • That would be a general issue with app crashing, and a huge deal worth it’s own series of articles. iOS’ sandboxing makes it so unlikely this exists, it’s not worth mentioning and the sensational writing might be counterproductive to getting the actual issue fixed. To use an analogy, it’d be like mentioning that someone could hack Google in an article about Gmail downtime.

    • I see your point, but I actually think users should be _more_ alarmed when an input makes software crash, for just this reason. They tend to think of it as a harmless annoyance.

      Also, while sandboxing may be designed to prevent this, Messages is probably also designed not to crash on link sharing.

      11 replies →

    • The SMS app is itself "data", and it is probably the most sensitive data on my phone other than my keychain. You don't have to take a step back and say "Google": ignore you have a way to DoS someone's usage of Gmail, you can still note that "this can't be used to access data from Gmail".

    • The sandbox prevents an exploit in one app from accessing data in another. It doesn't stop an exploit from accessing data in the same app, like the Messages app.

  • Don’t know any details about this one, but some bugs are just not exploitable beyond denial of service. If all you can do is provoke an action that makes the OS kill the process immediately, for example. Like a null pointer dereference under the right circumstances.

    • That's kind of what I was thinking, but it sounds like you or I know about as much about the cause of the bug as the person offering assurances.

- Mr Masri said he "always reports bugs" before releasing them.

Well I don't think Apple really reads bug reports.

  • https://support.apple.com/en-us/HT201220 has a section for “Security and privacy researchers”. The process is to send mail to product-security@apple.com, optionally encrypted by Apple Product Security's PGP key. A developer account is not required.

    Since this page is the top search engine hit for several obvious searches (for example “report apple security vulnerability”), hopefully Mr Masri reported it there.

  • If you submit a report on bugreport.apple.com, it will be triaged and (if necessary) passed on to the appropriate team to asses. I fixed several external user reported bugs when I worked at apple. You have to have a developer account to use bugreport. Now that I have retired, I use it. The people triaging do not know I used to be at apple. Not all the issues I report get resolved, just because they are probably low priority. But the important ones are dealt with, usually quite quickly.

Fixed in the latest beta: https://www.macrumors.com/2018/01/17/apple-seeds-ios-11-2-5-...

  • and yet again they don't care about older iOS versions for people who don't want to brick their phones with updates

So a crashing bug in the text rendering framework is now worth an article in major publications?

I stumbled over two or three of them in the last couple of years while debugging crash reports sent in by customers.

Seems that text rendering is hard. Maybe fuzzing CoreText would be a worthwhile target to discover vulnerabilities?

  • Or take text rendering out of the kernel.

    The whole device shouldn't restart due to malformed text, that's just sloppy. If Microsoft can do it with Windows then Apple can do it on iOS.

  • I'm not sure either Y Combinator News nor the linked site are "major publications".

    It is news, because there's a _completely passive_ way to crash a device, and crashes nearly always will allow for unauthorized code execution, given enough resources to work on the problem. You could launch a DOS attack on phones this way, and we all know that Cell Phones are how we're warned about emergencies, etc.

    For what it's worth, Microsoft Edge, my default browser, had no problems with this page.

There was an issue a few years ago where you could send a UTF-8 code to crash whatever app was currently open on an iPhone. I guess this might be the same issue but slightly different?

I've noticed that iOS will only perform requests to links in iMessage if and only if the sender is in your contacts. If an unknown sender iMessages you a URL, iOS will not perform a request.

Not making any sort of comment on this issue or Apple, but I’m sure glad every bug I write isn’t covered in the news.

Considering that this text causes issues on other platforms than just Apple (with differing levels of severity), I would posit that it's unfair to characterize this as an "Apple bug".

Their lock screen crashing bug from iOS 11 that was fixed with 11.1 came back with 11.2 and I want to throw the thing out the window. Every time I hit the power button it crashes and have to type out the pin.

  • I still have the issue where if I access the camera from the lock screen it randomly renders my phone unlockable

Anyone have the clode?

  • a mirror of the page could be found here...

      view-source:https://web.archive.org/web/20180117063656/https://iabem97.github.io/chaiOS/
    

    google chrome browser seems to have disabled the display of the content but other browsers may still be fine with it...

    • if viewed in a hex editor, this same block of patterns repeated over and over again...seemingly to be an effort to overrun the buffer....

        0x00007B90: A5CCBACD 8774CCB4 CD81CC8D CC92CD8C     .....t..........
        0x00007BA0: CD84CC86 CC8FCD8B CD97CD86 CC9BCC8F     ................
        0x00007BB0: CC8ECC95 CC87CC82 CC94CC9B CC92CC92     ................
        0x00007BC0: CC86CD91 CD9BCC86 CC8ECCBD CC84CC8B     ................
        0x00007BD0: CC91CC88 CD9DCC81 CD81CC81 CC84CCBE     ................
        0x00007BE0: CC85CCBE CC86CC84 CD82CC86 CD9DCC89     ................
        0x00007BF0: CC85CC87 CD8CCD9D CC81CC88 CCBFCC9A     ................
        0x00007C00: CC82CC86 CD8CCC90 CD9DCC82 CC9ACC80     ................
        0x00007C10: CC93CC9B CD84CC89 CD82CD8A CCBECD8B     ................
        0x00007C20: CDA0CC83 CC8ACC8E CD98CC89 CD97CC80     ................
        0x00007C30: CD80CC8A CC8FCDA0 CC80CC80 CD84CD80     ................
        0x00007C40: CD8CCD92 CD92CD91 CC90CD98 CC83CC88     ................
        0x00007C50: CD84CD9B CCBDCD9B CC84CC8D CDA0CC8C     ................
        0x00007C60: CC81CD97 CD8BCD86 CD9BCD91 CC8ECCAA     ................
        0x00007C70: CCA7CD87 CD95CCB1 CCA8CCBC CD9CCCA6     ................
        0x00007C80: CCA6CC9D CCAFCCAA CC97CCA0 CC9ECD85     ................
        0x00007C90: CCAACCA4 CCB2CCAB CD8ECCAB CD89CD8D     ................
        0x00007CA0: CCA2CCA8 CCAACC97 CCACCCA3 CCBACD93     ................
        0x00007CB0: CC9ECCA9 CD87CCA8 CD96CCAF CCBACCA7     ................
        0x00007CC0: CCB1CCBB CCA3CCAE CCABCCA7 CD96CCBA     ................
        0x00007CD0: CCAFCCA9 CCA0CCB2 CC96CD95 CCAACCAD     ................
        0x00007CE0: CD9ACCA8 CCB9CCB9 CCB0CCA0 CD88CCBA     ................
        0x00007CF0: CCA9CD9C CCA3CCA1 CCA0CD8D CC98CCA1     ................
        0x00007D00: CCAFCCA1 CC9DCD87 CCA6CC9D CCBACCBA     ................
        0x00007D10: CCAACD9A CCBACD8D CD88CD93 CCB1CCBC     ................
        0x00007D20: CCA1CCB1 CCB3CCA4 CD9ACCB0 CCA9CCB2     ................
        0x00007D30: CC9DCCAC CCADCCB9 CC9ECD89 CD89CD9C     ................
        0x00007D40: CCA5CCA8 CC9DCD89 CCBACCA2 CC9CCC9F     ................
        0x00007D50: CCA5CCBA CD8774CC B4CD81CC 8DCC92CD     ......t.........
      

      The author comment at the top of the page says,

        <!-- hello, this was written by Abraham Masri @cheesecakeufo -->
        <!-- I discovered this bug in like 10 minutes -->
      

      If the entire code in the page was whipped up in 10 minutes, then a large part might well be some repetitive copy-paste of a core part...Not exactly sure what this core part does...but given the obvious lack of printable ascii characters (code is way above '0x7F' ), it looks that it could be some unicode type of thing, which then is a bit reminiscing of an old iOS bug back in 2015, as described at this link,

      https://www.reddit.com/r/iphone/comments/37eaxs/um_can_someo...

      also notice the high frequency of 0xCC and 0xCD throughout the code, which are respectively Breakpoint and INT on x86 architecture -- with its 0xCD's always followed by a single byte whose value is less than 0xA0 -- possibly x86 was used as author's development platform...

      5 replies →

So shipping software has an obscure bug that can cause a crash. Why is this news?