Hey OP, since you're here: I find this pretty hard to follow. Would you be open to writing a longform version of this aimed at the tutorial level? Reading between the lines, I would guess you're trying to demonstrate that you really know what you're doing. Maybe as a proof of concept for possible employment opportunities. If so, that's great! Good luck. But if I were interested in reverse engineering some other app,…
Obviously not the OP but I think that a longform version of this would be an entire book/college level course. I wish I could learn how to reverse state of the art obfuscation in a single, long post but that's just not how it works.
Reverse Engineering Snapchat (Part II): Debofuscating the Undeobfuscatable
21–30 of 63 posts
Re: Reverse Engineering Snapchat (Part II): Debofuscating the Undeobfuscatable
#22This level of API obfuscation reminds me of forever ago when MSN Messenger figured out AOL's AIM API, so MSN Messenger could send AIM messages, which annoyed AOL. AOL would make API changes to break MSN, but MSN would update the client and stay ahead. Eventually to make the API uncloneable, AOL changed their payload to exploit a buffer overrun in their own AIM clients that wouldn't be in the MSN clients. https://nplu…
Very interesting. I think this would likely lead to lawsuits today, under a complaint violating DMCA.
Re: Reverse Engineering Snapchat (Part II): Debofuscating the Undeobfuscatable
#23Earlier quoted context omitted.
Very interesting. I think this would likely lead to lawsuits today, under a complaint violating DMCA.
Is there legal precedent for copyrighting APIs?
Re: Reverse Engineering Snapchat (Part II): Debofuscating the Undeobfuscatable
#24“Debofuscating”???
Maybe you don't understand Latin root words as prefixes and suffixes, in which case I highly recommend doing a bit of research into it. It really makes the English language more understandable when you can parse words based on their roots rather than on rote memorization.
Re: Reverse Engineering Snapchat (Part II): Debofuscating the Undeobfuscatable
#25Re: Reverse Engineering Snapchat (Part II): Debofuscating the Undeobfuscatable
#26Earlier quoted context omitted.
Is there legal precedent for copyrighting APIs?
That's actually the central issue behind the Supreme Court case battle between Oracle and Google right now: whether or not you can copyright apis
Re: Reverse Engineering Snapchat (Part II): Debofuscating the Undeobfuscatable
#27Re: Reverse Engineering Snapchat (Part II): Debofuscating the Undeobfuscatable
#28Earlier quoted context omitted.
Is there legal precedent for copyrighting APIs?
That's actually the central issue behind the Supreme Court case battle between Oracle and Google right now: whether or not you can copyright apis
Microsoft has filed an amibus brief for the "not copyrightable side," as has the EFF, IBM, Red Hat, and a team of 83 computer scientists.
You should probably note the folks on the "yes, copyrightable" side for future reference as well, including Dolby, the Motion Picture Alliance, SAS, the DoJ, the Recording Industry Association of America, and also 4 CS professors (Dr Spafford of Purdue, Dr. Ding of UC Davis, Dr Hollaar at Utah H, and Dr. Porter at maryland U).
Re: Reverse Engineering Snapchat (Part II): Debofuscating the Undeobfuscatable
#29This level of API obfuscation reminds me of forever ago when MSN Messenger figured out AOL's AIM API, so MSN Messenger could send AIM messages, which annoyed AOL. AOL would make API changes to break MSN, but MSN would update the client and stay ahead. Eventually to make the API uncloneable, AOL changed their payload to exploit a buffer overrun in their own AIM clients that wouldn't be in the MSN clients. https://nplu…
As the article says, the client also responded with some code. What I think was happening: the client was responding with portions of its own executable memory, which could be checked by AOL servers.
That way for MSN to emulate that behavior, it would need to have the AIM client's executable code inside itself, which would be an easy win in a copyright lawsuit.
Re: Reverse Engineering Snapchat (Part II): Debofuscating the Undeobfuscatable
#30Shouldn’t you be able to find any code that scans for breakpoints easily and patch it to be blind?
So usually there is nothing to patch.