Ask HN: Please help me recall a certain programmer horror story
11–20 of 44 posts
Re: Ask HN: Please help me recall a certain programmer horror story
#12Earlier quoted context omitted.
> Because the compiler was poisoned with other source code that we didn't have. And that source code, that now existed only in the executable compiler, put those changes back into the compiler source before it compiled it. I don't quite understand this part. How would this work?
You need a compiler to compile anything, including a compiler, so if your compiler was tampered with then anything you compile can be tampered with as well. The only solution is be to download a binary compiler from someone you trust.
Re: Ask HN: Please help me recall a certain programmer horror story
#13Re: Ask HN: Please help me recall a certain programmer horror story
#14that would be a pretty evil way to enforce payment, aka a DRM that turns racist if you don't pay up.
Re: Ask HN: Please help me recall a certain programmer horror story
#15https://www.quora.com/What-is-a-coders-worst-nightmare/answe...
> Because the compiler was poisoned with other source code that we didn't have. And that source code, that now existed only in the executable compiler, put those changes back into the compiler source before it compiled it. I don't quite understand this part. How would this work?
They compiled the clean source using the existing, malicious compiler installation. That compiler had a counter-measure against being recompiled from clean sources; it recognized that situation and perpetrated itself.
(A clean compiler binary might not help; suppose the trick involves other binaries, like the C library. They didn't have the kernel source so it was fairly reasonable to regard the kernel as clean.)
Re: Ask HN: Please help me recall a certain programmer horror story
#16Re: Ask HN: Please help me recall a certain programmer horror story
#17https://www.quora.com/What-is-a-coders-worst-nightmare/answe...
Jesus, that is intense. I wonder if the guy was personally out to get the Doc, or if he was just a smart kid with too much time and not enough superego?
It would have been more evil to do it the original way, as described in Thompson's paper: recognize the program sources and emit altered object code only; no mucking with the source.
Re: Ask HN: Please help me recall a certain programmer horror story
#18A good, fun read. Thank you!
Re: Ask HN: Please help me recall a certain programmer horror story
#19https://www.quora.com/What-is-a-coders-worst-nightmare/answe...
Re: Ask HN: Please help me recall a certain programmer horror story
#20Earlier quoted context omitted.
> Because the compiler was poisoned with other source code that we didn't have. And that source code, that now existed only in the executable compiler, put those changes back into the compiler source before it compiled it. I don't quite understand this part. How would this work?
You need a compiler to compile anything, including a compiler, so if your compiler was tampered with then anything you compile can be tampered with as well. The only solution is be to download a binary compiler from someone you trust.
Depending on how advanced the evil compiler is... Plan A would be to use it to compile TCC, then TCC to compile the original compiler. If the evil compiler inserts into every binary the generic command sequence "search for files that look like the original compiler and evil-ify them", then Plan B is to use evil to compile TCC, then use the resulting slightly-evil-TCC to compile TCC, then use the resulting clean TCC to compile the original.
If someone has also modified the kernel such that anytime someone uses the syscall "chmod" to mark a file as executable, it'll add evil instructions to that file... Well, perhaps you could recompile the kernel, but it'd be easy for evil instructions to cover that too... finding a new independent kernel source that runs on your machine is probably pretty hard... it'd also kind of interfere with downloading good binaries onto the machine, if the process was "download to a file, then chmod", though if it was "chmod, then write to the file", the evil kernel would have to be clever enough to make it instead append to after the evil instructions; you also could attach a disk and mount it and run executables already on it, and that would be pretty complicated for the evil code to transparently handle (of course, it could just refuse to run such things, but there are lots of things it could refuse to do).