Search This Blog

Wednesday, March 17, 2010

Polymorphic in PDF

While files can be polymorph to escape detection, it is also shown that PDF can be easily polymorphed to escape detection by AV. And the best of this doesn't involve complicated mathematics.

This article was based on:
http://blog.didierstevens.com/2008/04/29/pdf-let-me-count-the-ways/

OK, lets start with names. After PDF spec 1.2, basically we can encode all the names (which is followed after the "/") using hexadecimals. For example :

We want to open my blog using the /URI name:

/URI (http://nemesisv.blogspot.com)

But AV may be looking for "/URI", we can encode it into hex by doing this:

/#55#52#49

This is all in hex, but to create more choices, we can have :

/U#52I
/#55R#49

and so on. You get the picture. This will allow us to morph the name a bit.

Secondly, we can also morph the strings values. In this case, its the URL. We have several tricks that can be used here.

Firstly, the "escape new line" method:

/URI (http://nemesisv.blogspot.c\
om)
This can be use to break into new lines (for easy reading maybe). Also, just push this further, we can do this:

/URI (http://nem\
esis\
v.blog\
spot\
.com)

or even more extreme, we can break all the characters. Lets see AV write one rule that can detect that. (I am sure multiple rules can do it, but that's the challenge leave for the AV companies)

How about Hexadecimal? Yes, we can do that too:

/URI (687474703a2f2f6e656d65736973762e626c6f6773706f742e636f6d)

Or yes, even with some space :

/URI (687474 703a2f2f6e656d657369 73762e626c6f6773706f74 2e636f 6d)

Now, that's really going to piss the AV detection off. But hexadecimal is not the only thing we can use for encoding the values. We can use octal decimals as well:

/URI (\150\164\164\160\72\57\57\156\145\155\145\163\151\163\166\56\142\154\157\147\163\160\157\164\56\143\157\155)

To finish this off, PDF even suppose anonymous encryption which the user does not need to know the password to operate the PDF. Now, we are really using the other end of the blade back at the AV. So the whole string will look like some rubbish instead.

Of course, some of the above can be effectively mix and match to morph your PDF payload, but it is very unlikely the encryption can be detected by AV. Unless the AV ban all /URI tags, but until then, PDF is ideal for phishing and other very bad things.

No comments:

Amazon Gift Cards!

Thanks for viewing!

Copyright © 2008 nemesisv.blogspot.com, All rights reserved.