Recent articles – page 2 newer »

Mira mi solución de backup hehehehe

En mi pobreza, y teniendo que respaldar 130 GB de datos, no puedo comprarme aún otro disco duro para hacer el respaldo (y cualquiera que sugiera que me compre DVDs para respaldar 130 GB de datos queda cordialmente invitado a hacer de cambiadiscos en mi casa por todo un día).

¿Qué toca?

Read the rest »

Closed Source and the naked Emperor

For the past 8 years, I’ve read countless articles on Open Source and Closed Source security. I’ve endured bickering that asymptotically approaches infinite. I’ve tried to understand every possible argument, perspective and angle. And, today, I’ve come to a definitive conclusion.

The Emperor is butt naked. And the majority of the people can’t see it.

Read the rest »

Informática post-2007: lo que nos depara el futuro cercano

La gran mayoría de personas está familiarizada con las computadoras personales como herramientas de productividad, comunicaciones y entretenimiento. Cientos de millones de personas gozan de los servicios que la Internet presta, muchas veces gratuitamente.

Read the rest »

Belated musings regarding the microkernel vs. monolithic kernel debate

What’s the latest discussion topic on the kernel development sphere? It’s a new rehash of a (fairly old) discussion. The famous microkernel vs. monolithic kernel debate.

Read the rest »

Computer stability explained: why your computer crashes, and what you can do about it

Does your computer crash? Do you want to know why? Here’s a guide which will help you understand why this happens, and (hopefully) lead you on to a better computing experience.

Read the rest »

Hardening a Linux server in 10 minutes

Did you know that a freshly installed Linux server can be hardened in less than 10 minutes? Here’s how!

Read the rest »

The truth about the Windows WMF exploit

Once upon a time, talking to an old friend, which happens to be a known hacker in my country, he told me that Windows had a backdoor, designed to be used only by people at Microsoft.

I never believed him.

Silly me.

As it turns out, he was right, not only once but several times, about Windows having intentional backdoors, hidden by Microsoft itself. Here’s the latest Windows backdoor coming out of Redmond: the WMF exploit. This is a discovery by Steve Gibson, a real, true, genius hacker who’s been around the scene for several years now (some say more than a decade).

And, as Steve says, there’s simply no way this particular WMF exploit was accidental. The way it works, it has to be intentionally put there. He’s right.

Quoting from the transcript of the interview with Steve:

As I said before, each record in a metafile begins with a four-byte length, followed by a two-byte function number. So in other words, each metafile record has six bytes minimum that it can possibly be in size. Oh, and since the size is in words, the smallest possible size for a metafile record would be three words long, or six bytes. Look, the reason I had problems making this exploit happen initially is I was setting the length correctly. It turns out that the only way to get Windows to misbehave in this bizarre fashion is to set the length to one, which is an impossible value. I tried setting it to zero. It didn’t trigger the exploit. I tried setting it to two, no effect. Three, no effect. Nothing, not even the correct length. Only one.

So what I found was that, when I deliberately lied about the size of this record and set the size to one and no other value, and I gave this particular byte sequence that makes no sense for a metafile, then Windows created a thread and jumped into my code, began executing my code. Okay, Leo? This was not a mistake. This is not buggy code. This was put into Windows by someone. We are never going to know who. We’re never going to know - well, actually I’m going to find out when because we’re going to know when this appeared because this appeared - I’m guessing this is not in older versions of Windows, which is why this function - or if it is in older versions of Windows, it’s done slightly differently. I’m still on the hunt.

Steve: No. No. I mean, you know, again, this is as much a surprise to me, Leo, as it is to, you know, anyone who hears this. I did not expect to see this. I expected to find, for example, that the way this exploit worked was that the SETABORTPROC was working correctly, and that I would give it a pointer to my own code a few bytes lower, then I would do something to force the metafile to abort, and then the metafile processing would use the pointer, the legitimate SETABORTPROC pointer, and then basically run the code that was located right there in the metafile. That’s what I thought I was going to encounter, something that sort of made sense, like we were originally led to believe. Or actually I think, you know, Microsoft didn’t say anything at all. So we just all kind of presumed this was another one of those coding errors that Microsoft now famously makes and corrects on the second Tuesday of every month. This wasn’t a programming error. And, you know, so it’s like, whoa. When I give it the magic key on the size of the metafile record, then it jumps directly into my code.