<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;DEUESHY7fSp7ImA9WhVXFU4.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434</id><updated>2012-04-16T00:30:09.805Z</updated><category term="adpack" /><category term="neosploit" /><category term="tornado" /><category term="mpack" /><category term="quals" /><category term="zeus" /><category term="news" /><category term="armitage" /><category term="history" /><category term="malware" /><category term="fiesta" /><category term="reverse engineering" /><category term="icepack" /><category term="intrusion detection" /><category term="firepack" /><category term="hitb" /><category term="ctf" /><category term="vulnerabilities" /><category term="codegate" /><category term="unique pack" /><title>-=[!]=-</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://dxp2532.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>41</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/dxp" /><feedburner:info uri="dxp" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>dxp</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><entry gd:etag="W/&quot;CEEARHo8fip7ImA9WhZRE0Q.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-5583948081861957528</id><published>2011-04-09T23:38:00.001Z</published><updated>2011-04-09T23:44:05.476Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-04-09T23:44:05.476Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="quals" /><category scheme="http://www.blogger.com/atom/ns#" term="hitb" /><category scheme="http://www.blogger.com/atom/ns#" term="ctf" /><title>HITB 2011 Amsterdam Round Two Quals Binary</title><content type="html">The provided binary is a &lt;b style="color: #45818e;"&gt;&lt;i&gt;ELF&lt;/i&gt;&lt;/b&gt; file designed to be run by &lt;i style="color: #45818e;"&gt;&lt;b&gt;inetd&lt;/b&gt;&lt;/i&gt; and accepts several character based commands followed by their parameters. The main loop reads a character from STDIN (in inetd a socket is duplicated into standard I/O descriptors) and based on the value picks a handler from an array of function pointers. The following commands exist:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;'f' - return meta data for a given file name&lt;/li&gt;
&lt;li&gt;'l' - list filenames from the home directory&lt;/li&gt;
&lt;li&gt;'q' - terminate the process&lt;/li&gt;
&lt;li&gt;'s' - return symbolic link's path name&lt;/li&gt;
&lt;li&gt;'v' - verify input with a key file's data&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
After mapping out all the available handlers and reviewing how they work there were no obvious vulnerabilities (e.g. buffer overflow). The handler functions that expect additional input first allocate some heap-based memory to store this input and care is taken to make sure it's not overflowed. After the handler completes its work the memory is freed. However, there's a design flaw in the way allocated memory is used when the key text is verified. Specifically, the key data is read into a allocated buffer and compared to the string supplied by a user. Once this is done &lt;i style="color: #45818e;"&gt;&lt;b&gt;the memory is simply freed&lt;/b&gt;&lt;/i&gt;, which returns the memory block to the free pool still containing the key data.&lt;br /&gt;
&lt;br /&gt;
As a result, we can use another handler, which allocates memory for its operation and returns the results to the user. One such command is the &lt;i style="color: #45818e;"&gt;&lt;b&gt;'s'&lt;/b&gt;&lt;/i&gt; character, which accepts a symbolic link as a parameter. Additionally, after listing the contents of the home directory using the &lt;i style="color: #45818e;"&gt;&lt;b&gt;'l'&lt;/b&gt;&lt;/i&gt; command we find few symbolic links that can be used for the 's' command. Thus, when requesting to view a symbolic link the real path will be copied to a allocated buffer. Since the buffer will come from the free pool and the &lt;b style="color: #45818e;"&gt;&lt;i&gt;contents were not cleared&lt;/i&gt;&lt;/b&gt; then whatever data was there will also be displayed. If the resulting path is shorter in length than the data size of the &lt;i style="color: #45818e;"&gt;&lt;b&gt;"KeyFile"&lt;/b&gt;&lt;/i&gt; we can disclose part of the secret key string.&lt;br /&gt;
&lt;br /&gt;
Looking at the handler for the &lt;b style="color: #45818e;"&gt;&lt;i&gt;'v'&lt;/i&gt;&lt;/b&gt; command it was identified that a string comparison is performed only on the &lt;b style="color: #45818e;"&gt;&lt;i&gt;last 14 bytes&lt;/i&gt;&lt;/b&gt; of the key file. This tells us how much of the disclosed key file's data we need to grab. Thus, to reproduce we need to submit the &lt;i style="color: #45818e;"&gt;&lt;b&gt;'v'&lt;/b&gt;&lt;/i&gt; command with any key, which stores the key data into a buffer, &lt;b style="color: #45818e;"&gt;&lt;i&gt;but does not clear it after the comparison&lt;/i&gt;&lt;/b&gt;. Then, submit the &lt;b style="color: #45818e;"&gt;&lt;i&gt;'s'&lt;/i&gt;&lt;/b&gt; command to display the path of the &lt;b style="color: #45818e;"&gt;&lt;i&gt;"t1"&lt;/i&gt;&lt;/b&gt; link, which is short enough to disclose more than 14 bytes of the key file. Finally, take the last 14 bytes and submit them via the &lt;b style="color: #45818e;"&gt;&lt;i&gt;'v'&lt;/i&gt;&lt;/b&gt; command again and this time the comparison succeeds and gives us the solution key.&lt;br /&gt;
&lt;br /&gt;
The solution string is (w/o quotes): "&lt;b style="color: #45818e;"&gt;&lt;i&gt;DwightIzK00l&lt;/i&gt;&lt;/b&gt;"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-5583948081861957528?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/b6oNidVsCr8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/5583948081861957528/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=5583948081861957528" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/5583948081861957528?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/5583948081861957528?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/b6oNidVsCr8/hitb-2011-amsterdam-round-two-quals.html" title="HITB 2011 Amsterdam Round Two Quals Binary" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2011/04/hitb-2011-amsterdam-round-two-quals.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUUBQXs7eip7ImA9Wx9aFkQ.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-431541286076656222</id><published>2011-03-07T23:44:00.001Z</published><updated>2011-03-09T17:54:10.502Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-09T17:54:10.502Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="codegate" /><category scheme="http://www.blogger.com/atom/ns#" term="quals" /><category scheme="http://www.blogger.com/atom/ns#" term="ctf" /><title>Codegate 2011 Quals - Binary 300</title><content type="html">The question is:&lt;br /&gt;
&lt;blockquote style="color: #45818e;"&gt;&lt;i&gt;&lt;b&gt;Find a malicious ID!!&lt;/b&gt;&lt;/i&gt;&lt;/blockquote&gt;&lt;br /&gt;
The binary is a Browser Helper Object (BHO) DLL with a static XOR key "&lt;b style="color: #45818e;"&gt;securecodegate&lt;/b&gt;", which is used to decrypt few arrays with statically assigned characters to each index. The "&lt;b style="color: #45818e;"&gt;sub_1000233E&lt;/b&gt;" function is called with the array and a XOR key as input to perform the decryption. This occurs three times within a handler function "&lt;b style="color: #45818e;"&gt;sub_1000270A&lt;/b&gt;".&lt;br /&gt;
&lt;br /&gt;
The first two calls are irrelevant as they result in decryption of "&lt;b style="color: #45818e;"&gt;google_ads_frame&lt;/b&gt;" (key "&lt;b style="color: #45818e;"&gt;secure&lt;/b&gt;") and "&lt;b style="color: #45818e;"&gt;client&lt;/b&gt;" (key "&lt;b style="color: #45818e;"&gt;code&lt;/b&gt;"). However, the third call produces the answer string using the "&lt;b style="color: #45818e;"&gt;gate&lt;/b&gt;" key.&lt;br /&gt;
&lt;br /&gt;
This was identified by looking for various interesting strings in the binary and locating their use references. The XOR decryption routine is fairly simple and can be performed via a IDC script.&lt;br /&gt;
&lt;br /&gt;
We used a lazy/simple option. Register the DLL ("&lt;i style="color: #45818e;"&gt;&lt;b&gt;regsvr32 b300.dll&lt;/b&gt;&lt;/i&gt;"). Launch Internet Explorer, attach a debugger, locate the handler function ("&lt;b style="color: #45818e;"&gt;sub_1000270A&lt;/b&gt;"). Modify EIP to jump to the buffer initialization sequence, which is right before the decryption function call (e.g. @ &lt;b style="color: #45818e;"&gt;0x10002C96&lt;/b&gt; for the "&lt;b style="color: #45818e;"&gt;gate&lt;/b&gt;" key).&lt;br /&gt;
&lt;br /&gt;
The answer is:&lt;br /&gt;
&lt;blockquote style="color: #45818e;"&gt;&lt;b&gt;ca-pub-0123456789012345&lt;/b&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-431541286076656222?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/g2zTdyiL16I" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/431541286076656222/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=431541286076656222" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/431541286076656222?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/431541286076656222?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/g2zTdyiL16I/codegate-2011-quals-binary-300.html" title="Codegate 2011 Quals - Binary 300" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2011/03/codegate-2011-quals-binary-300.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUQCQnoyeyp7ImA9Wx9aFkQ.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-3061490711745575502</id><published>2011-03-07T23:31:00.002Z</published><updated>2011-03-09T17:56:03.493Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-09T17:56:03.493Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="codegate" /><category scheme="http://www.blogger.com/atom/ns#" term="quals" /><category scheme="http://www.blogger.com/atom/ns#" term="ctf" /><title>Codegate 2011 Quals - Binary 200</title><content type="html">The question is:&lt;br /&gt;
&lt;blockquote style="color: #45818e;"&gt;&lt;i&gt;&lt;b&gt;Reverse Me!!&lt;/b&gt;&lt;/i&gt;&lt;/blockquote&gt;&lt;br /&gt;
The binary is a console based PE file. Running the file produces no output due to a certain routine terminating the process before the "&lt;b style="color: #45818e;"&gt;main()&lt;/b&gt;" function starts. Looking around the code the "&lt;b style="color: #45818e;"&gt;sub_401130&lt;/b&gt;" function stands out due to initialization of a local array with various bytes. At the end of this function a decryption routine is called ("&lt;b style="color: #45818e;"&gt;sub_401070&lt;/b&gt;") with the array as input. The decryption loop performs an XOR operation using the string's length as the key.&lt;br /&gt;
&lt;br /&gt;
To obtain the answer a breakpoint was placed @ &lt;b style="color: #45818e;"&gt;0x00401494&lt;/b&gt;, which calls the "&lt;b style="color: #45818e;"&gt;ExitProcess()&lt;/b&gt;" library function prior to "&lt;b style="color: #45818e;"&gt;main()&lt;/b&gt;". Next, modify EIP to point to the start of the array initialization routine and execute until the decryption function is called. Let it do its XOR job and look at a local buffer once complete to get the answer string.&lt;br /&gt;
&lt;br /&gt;
The answer is:&lt;br /&gt;
&lt;blockquote style="color: #45818e;"&gt;&lt;b&gt;http://forensic-proof.com/archives/552&lt;/b&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-3061490711745575502?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/w6d43z2d1A0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/3061490711745575502/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=3061490711745575502" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/3061490711745575502?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/3061490711745575502?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/w6d43z2d1A0/codegate-2011-quals-binary-200.html" title="Codegate 2011 Quals - Binary 200" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2011/03/codegate-2011-quals-binary-200.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUENQHo7fCp7ImA9Wx9aFkQ.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-694726281568974686</id><published>2011-03-07T23:21:00.002Z</published><updated>2011-03-09T18:01:31.404Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-09T18:01:31.404Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="codegate" /><category scheme="http://www.blogger.com/atom/ns#" term="quals" /><category scheme="http://www.blogger.com/atom/ns#" term="ctf" /><title>Codegate 2011 Quals - Forensics 300</title><content type="html">The question is:&lt;br /&gt;
&lt;blockquote style="color: #45818e;"&gt;&lt;i&gt;we are investigating the military secret's leaking. we found traffic with leaking secrets while monitoring the network. Security team was sent to investigate, immediately. But, there was no one present. It was found by forensics team that all the leaked secrets were completely deleted by wiping tool. And the team has found a leaked trace using potable device. Before long, the suspect was detained. But he denies allegations.&lt;br /&gt;
&lt;br /&gt;
Now, the investigation is focused on potable device. The given files are acquired registry files from system. The estimated time of the incident is Mon, 21 February 2011 15:24:28(KST). Find a trace of portable device used for the incident.&lt;br /&gt;
&lt;br /&gt;
The Key : "Vendor name" + "volume name" + "serial number" (please write in capitals)&lt;/i&gt;&lt;/blockquote&gt;&lt;br /&gt;
Enumerate a timeline of USB activity from the backup system hive&lt;br /&gt;
&lt;blockquote&gt;&lt;i&gt;...&lt;br /&gt;
&lt;b style="color: #45818e;"&gt;Disk&lt;/b&gt;&amp;amp;Ven_Corsair&amp;amp;Prod_UFD&amp;amp;Rev_0.00,Thu Feb 17 04:41:02 2011,ddf08fb7a86075&amp;amp;0,Thu Feb 17 04:41:03 2011,Corsair UFD USB Device,&lt;br /&gt;
&lt;b style="color: #45818e;"&gt;Disk&lt;/b&gt;&amp;amp;Ven_FM&amp;amp;Prod_Memorette_Swing&amp;amp;Rev_1.00,Thu Feb 17 06:38:21 2011,2008090256000000000000BE&amp;amp;0,Thu Feb 17 06:38:22 2011,FM Memorette Swing USB Device,&lt;br /&gt;
...&lt;/i&gt;&lt;/blockquote&gt;&lt;br /&gt;
The enumeration shows all of the USB devices ever connected to the system. The registry last modified times are written the first time the device is connected, but are not updated when a device is subsequently connected.&lt;br /&gt;
&lt;br /&gt;
Running a timeline on the registry (via "&lt;b style="color: #45818e;"&gt;regripper&lt;/b&gt;"), we see that only one USB device is connected on Feb 21:&lt;br /&gt;
&lt;blockquote&gt;Mon Feb 21 06:24:21 2011Z HKLM\ControlSet001\Enum\WpdBusEnumRoot\UMB\2&amp;amp;37c186b&amp;amp;0&amp;amp;STORAGE#VOLUME#_??_USBSTOR#DISK&amp;amp;&lt;b style="color: #45818e;"&gt;VEN_CORSAIR&lt;/b&gt;&amp;amp;&lt;b style="color: #45818e;"&gt;PROD_UFD&lt;/b&gt;&amp;amp;REV_0.00#&lt;b style="color: #45818e;"&gt;DDF08FB7A86075&lt;/b&gt;&amp;amp;0#\Properties\{80d81ea6-7473-4b0c-8216-efc11a2c4c8b}&lt;/blockquote&gt;&lt;br /&gt;
From there, we know that the suspect device vendor is "&lt;b style="color: #45818e;"&gt;CORSAIR&lt;/b&gt;" and the serial number of the device is "&lt;b style="color: #45818e;"&gt;DDF08FB7A86075&lt;/b&gt;". Inspection of this registry path reveals that the default name of the device has been changed. The registry key "&lt;b style="color: #45818e;"&gt;FriendlyName&lt;/b&gt;" has a value of "&lt;b style="color: #45818e;"&gt;PR0N33R&lt;/b&gt;", which is the displayed volume name when the device is connected.&lt;br /&gt;
&lt;br /&gt;
The answer is:&lt;br /&gt;
&lt;blockquote style="color: #45818e;"&gt;&lt;b&gt;CORSAIRPR0N33RDDF08FB7A86075&lt;/b&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt;Thanks to our team member &lt;b style="color: #45818e;"&gt;tina&lt;/b&gt; for the solution&lt;/b&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-694726281568974686?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/yaa85q2pbg8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/694726281568974686/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=694726281568974686" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/694726281568974686?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/694726281568974686?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/yaa85q2pbg8/codegate-2011-quals-forensics-300.html" title="Codegate 2011 Quals - Forensics 300" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2011/03/codegate-2011-quals-forensics-300.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUABSXkyeip7ImA9Wx9aFkQ.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-5982788377264304514</id><published>2011-03-07T22:50:00.002Z</published><updated>2011-03-09T18:02:38.792Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-09T18:02:38.792Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="codegate" /><category scheme="http://www.blogger.com/atom/ns#" term="quals" /><category scheme="http://www.blogger.com/atom/ns#" term="ctf" /><title>Codegate 2011 Quals - Network 100</title><content type="html">The question is:&lt;br /&gt;
&lt;blockquote style="color: #45818e;"&gt;&lt;i&gt;This data is related to any attack.&lt;br /&gt;
calculate the md5sum of the intended file.&lt;br /&gt;
&lt;br /&gt;
(calc md5 uppercase)&lt;/i&gt;&lt;/blockquote&gt;&lt;br /&gt;
The provided binary is a PCAP file containing bunch of HTTP traffic and some SMB chatter. The question mentions an attack. Since it's heavy on HTTP usage then it made sense to get a list of all requests. Two strange requests stand out:&lt;br /&gt;
&lt;blockquote&gt;&lt;b&gt;&lt;br /&gt;
&lt;span style="color: #45818e;"&gt;GET /H1A1.html HTTP/1.1&lt;/span&gt;&lt;br style="color: #45818e;" /&gt;&lt;span style="color: #45818e;"&gt; GET /H1A1.exe HTTP/1.1&lt;/span&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/blockquote&gt;&lt;br /&gt;
Carving out (using Wireshark's "&lt;i&gt;Follow TCP Stream&lt;/i&gt;" -&amp;gt; "&lt;i&gt;Save As&lt;/i&gt;") the "&lt;b style="color: #45818e;"&gt;H1A1.exe&lt;/b&gt;" response and removing the HTTP response header we end up with a regular PE file. Next, calculate its MD5 checksum and convert to upper case.&lt;br /&gt;
&lt;br /&gt;
The answer is:&lt;br /&gt;
&lt;blockquote style="color: #45818e;"&gt;&lt;b&gt;7A5807A5144369965223903CB643C60E&lt;/b&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-5982788377264304514?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/xow_xNQzm1k" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/5982788377264304514/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=5982788377264304514" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/5982788377264304514?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/5982788377264304514?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/xow_xNQzm1k/codegate-2011-quals-network-100.html" title="Codegate 2011 Quals - Network 100" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2011/03/codegate-2011-quals-network-100.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU4MQn48fSp7ImA9Wx9aFkQ.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-3081210204359058944</id><published>2010-05-26T20:32:00.004Z</published><updated>2011-03-09T18:06:23.075Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-03-09T18:06:23.075Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="history" /><title>The Manifesto</title><content type="html">&lt;blockquote&gt;&lt;br /&gt;
&lt;div style="color: #45818e;"&gt;+++The Mentor+++&lt;/div&gt;&lt;div style="color: #45818e;"&gt;Written January 8, 1986&lt;/div&gt;&lt;br /&gt;
Another one got caught today, it's all over the papers. "Teenager Arrested in Computer Crime Scandal", "Hacker Arrested after Bank Tampering"...&lt;br /&gt;
&lt;br /&gt;
Damn kids. They're all alike.&lt;br /&gt;
&lt;br /&gt;
But did you, in your three-piece psychology and 1950's technobrain, ever take a look behind the eyes of the hacker? Did you ever wonder what made him tick, what forces shaped him, what may have molded him?&lt;br /&gt;
&lt;br /&gt;
&lt;div style="color: #45818e;"&gt;I am a hacker, enter my world...&lt;/div&gt;&lt;br /&gt;
Mine is a world that begins with school... I'm smarter than most of the other kids, this crap they teach us bores me...&lt;br /&gt;
&lt;br /&gt;
Damn underachiever. They're all alike.&lt;br /&gt;
&lt;br /&gt;
I'm in junior high or high school. I've listened to teachers explain for the fifteenth time how to reduce a fraction. I understand it. "No, Ms. Smith, I didn't show my work. I did it in my head..."&lt;br /&gt;
&lt;br /&gt;
Damn kid. Probably copied it. They're all alike.&lt;br /&gt;
&lt;br /&gt;
I made a discovery today. I found a computer. Wait a second, this is cool. It does what I want it to. If it makes a mistake, it's because I screwed it up. Not because it doesn't like me... Or feels threatened by me.. Or thinks I'm a smart ass.. Or doesn't like teaching and shouldn't be here...&lt;br /&gt;
&lt;br /&gt;
Damn kid. All he does is play games. They're all alike.&lt;br /&gt;
&lt;br /&gt;
And then it happened... a door opened to a world... rushing through the phone line like heroin through an addict's veins, an electronic pulse is sent out, a refuge from the day-to-day incompetencies is sought... a board is found. "This is it... this is where I belong..." I know everyone here... even if I've never met them, never talked to them, may never hear from them again... I know you all...&lt;br /&gt;
&lt;br /&gt;
Damn kid. Tying up the phone line again. They're all alike...&lt;br /&gt;
&lt;br /&gt;
You bet your ass we're all alike... we've been spoon-fed baby food at school when we hungered for steak... the bits of meat that you did let slip through were pre-chewed and tasteless. We've been dominated by sadists, or ignored by the apathetic. The few that had something to teach found us willing pupils, but those few are like drops of water in the desert.&lt;br /&gt;
&lt;br /&gt;
This is our world now... the world of the electron and the switch, the beauty of the baud. We make use of a service already existing without paying for what could be dirt-cheap if it wasn't run by profiteering gluttons, and you call us criminals. We explore... and you call us criminals. We seek after knowledge... and you call us criminals. We exist without skin color, without nationality, without religious bias... and you call us criminals. You build atomic bombs, you wage wars, you murder, cheat, and lie to us and try to make us believe it's for our own good, yet we're the criminals.&lt;br /&gt;
&lt;br /&gt;
Yes, I am a criminal. My crime is that of curiosity. My crime is that of judging people by what they say and think, not what they look like. My crime is that of outsmarting you, something that you will never forgive me for.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #45818e;"&gt;I am a hacker, and this is my manifesto.&lt;/span&gt; You may stop this individual, but you can't stop us all... after all, we're all alike.&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-3081210204359058944?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/NZnjWBlwYEI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/3081210204359058944/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=3081210204359058944" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/3081210204359058944?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/3081210204359058944?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/NZnjWBlwYEI/manifesto.html" title="The Manifesto" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2010/05/manifesto.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEcFQ3Y8cCp7ImA9WxJaFUo.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-784730451152980160</id><published>2009-08-06T15:48:00.002Z</published><updated>2009-08-06T16:26:52.878Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-06T16:26:52.878Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="vulnerabilities" /><category scheme="http://www.blogger.com/atom/ns#" term="intrusion detection" /><title>BIND 9 Dynamic Update DoS</title><content type="html">Vulnerability described in &lt;a href="http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-0696"&gt;CVE-2009-0696&lt;/a&gt; is very easy to exploit and the consequences can be disastrous.&lt;br /&gt;&lt;br /&gt;All it takes is a singled DNS UDP packet with &lt;a href="http://www.ietf.org/rfc/rfc2136.txt"&gt;Dynamic Update&lt;/a&gt; structure specially crafted for any Zone which the target server is Master and the &lt;span style="font-weight:bold;"&gt;named&lt;/span&gt; process will exit.&lt;br /&gt;&lt;br /&gt;As stated by &lt;a href="http://www.isc.org/node/474"&gt;ISC&lt;/a&gt; BIND's update ACLs do not mitigate this vulnerability.  Since this is UDP then source IPs can be spoofed and nearly impossible to track down.  Even DNS infrastructures which are designed to expose only slave servers to the Internet can be vulnerable if any of them have Master Zones for netblocks mentioned in RFCs &lt;a href="http://www.ietf.org/rfc/rfc1912.txt"&gt;1912 Section 4.1&lt;/a&gt; and &lt;a href="http://www.ietf.org/rfc/rfc1918.txt"&gt;1918 Section 3&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Anyone who wishes to audit their environment can utilize the following &lt;a href="http://www.dxp2532.info/tools/bind9-update-dos.py"&gt;Python script&lt;/a&gt;.  &lt;span style="font-weight:bold;"&gt;Make sure you have permission to test your targets!.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Given the criticality of this vulnerability several IDS vendors have released detection signatures.  However, as of this writing the above script evades  the following signatures: &lt;a href="http://www.sourcefire.com/products/snort/rules/advisories/sa072909.html"&gt;Sourcefire&lt;/a&gt; and &lt;a href="http://doc.emergingthreats.net/2009701"&gt;Emerging Threats&lt;/a&gt;.  Both groups will be notified with necessary information.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-784730451152980160?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/6vwlT7O1D5E" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/784730451152980160/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=784730451152980160" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/784730451152980160?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/784730451152980160?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/6vwlT7O1D5E/bind-9-dynamic-update-dos.html" title="BIND 9 Dynamic Update DoS" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2009/08/bind-9-dynamic-update-dos.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck8ERXc8fip7ImA9WxBTGUg.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-7394418595622017298</id><published>2009-07-08T16:00:00.003Z</published><updated>2009-12-16T08:06:44.976Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-16T08:06:44.976Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="news" /><title>milw0rm is gone</title><content type="html">This was on the site before it went down:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;Well, this is my goodbye header for milw0rm. I wish I had the time I did in the past to post exploits, I just don’t :(. For the past 3 months I have actually done a pretty crappy job of getting peoples work out fast enough to be proud of, 0 to 72 hours (taking off weekends) isn’t fair to the authors on this site. I appreciate and thank everyone for their support in the past.&lt;br /&gt;Be safe, /str0ke&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;PS: I'm keeping their link here for historical reasons.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-7394418595622017298?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/QJasO7_8390" height="1" width="1"/&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/7394418595622017298?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/7394418595622017298?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/QJasO7_8390/milw0rm-is-gone.html" title="milw0rm is gone" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><feedburner:origLink>http://dxp2532.blogspot.com/2009/07/milw0rm-is-gone.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0MCQXkyeSp7ImA9WxJQFkw.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-8926523585834538499</id><published>2009-05-29T04:41:00.007Z</published><updated>2009-05-29T16:44:20.791Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-05-29T16:44:20.791Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="tornado" /><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><title>Tornado exploit pack</title><content type="html">Like most other exploit packs it's written in PHP with a MySQL backend.  Control panel supports configuration options for several users (attackers).&lt;br /&gt;&lt;br /&gt;Has the ability to control incoming traffic. It can either:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;- Ignore&lt;br /&gt;- Redirect&lt;br /&gt;- Display custom page&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;based on several criteria such as:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;- Country of origin&lt;br /&gt;- Visitor uniqueness&lt;br /&gt;- Vulnerable client&lt;br /&gt;- Not vulnerable client&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ZNYfmKAdUSo/Sh9q0KNnoNI/AAAAAAAAAs8/YWhLjVW21lk/s1600-h/tor_summary.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 172px;" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/Sh9q0KNnoNI/AAAAAAAAAs8/YWhLjVW21lk/s200/tor_summary.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5341105127411917010" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Displays several different statistics based on:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;- Victim's Country&lt;br /&gt;- Originating web site (referer)&lt;br /&gt;- Exploits used&lt;br /&gt;- Detailed Log (IP, time, browser, exploit used, infected (yes/no), and referer)&lt;br /&gt;- Overall Summary - OS and Browser breakd down of traffic and exploit effectiveness&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Exploit is delivered in the form of obfuscated javascript.  Obfuscated ASCII encoded code and decryption function are delivered to the client as a single long line.  This content is unique on every visit except certain parts of the decryption routine.  Upon successful exploitation another request will be made to the exploit server to a different script which will deliver the binary to execute.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ZNYfmKAdUSo/Sh9uH1Iim7I/AAAAAAAAAtE/JTEsKdneuG0/s1600-h/tor_exploits.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 172px;" src="http://3.bp.blogspot.com/_ZNYfmKAdUSo/Sh9uH1Iim7I/AAAAAAAAAtE/JTEsKdneuG0/s320/tor_exploits.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5341108763885738930" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The following is a list of exploits available to the attacker, which can be individually selected to target:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;&lt;br /&gt;- MDAC (RDS)&lt;br /&gt;- WebViewFolderIcon.SetSlice&lt;br /&gt;- VML&lt;br /&gt;- MS06-044&lt;br /&gt;- WMF Firefox&lt;br /&gt;- WMF Opera 7&lt;br /&gt;- QuickTime&lt;br /&gt;- WinZip&lt;br /&gt;- Zenturi&lt;br /&gt;- Yahoo Webcam&lt;br /&gt;- Opera 9 - 9.20&lt;br /&gt;- XML Core Services&lt;br /&gt;- Java bytecode&lt;br /&gt;- ANI&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Default script for exploit delivery is &lt;span style="font-weight:bold;"&gt;"count.php"&lt;/span&gt;, while individual exploit modules are located in the &lt;span style="font-weight:bold;"&gt;"exploits/"&lt;/span&gt; directory with the following naming convention: &lt;span style="font-weight:bold;"&gt;"x#.php"&lt;/span&gt; where &lt;span style="font-weight:bold;"&gt;&lt;span style="font-style:italic;"&gt;#&lt;/span&gt;&lt;/span&gt; is the numeric value starting with one (1).&lt;br /&gt;&lt;br /&gt;Upon successful exploitation another request will be made to retrieve a binary for execution on victim's computer.  By default the requested script will be &lt;span style="font-weight:bold;"&gt;"getexe.exe"&lt;/span&gt; with the following parameters:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;?o=&lt;/span&gt;   integer value to identify attacker&lt;br /&gt;&lt;span style="font-style:italic;"&gt;&amp;t=&lt;/span&gt;   integer value represents time the exploit was generated&lt;br /&gt;&lt;span style="font-style:italic;"&gt;&amp;i=&lt;/span&gt;   integer value represent IP address of victim&lt;br /&gt;&lt;span style="font-style:italic;"&gt;&amp;e=&lt;/span&gt;   integer value represents exploit number used&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Following is the schema of the database:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;CREATE TABLE `stats1`&lt;/span&gt; &lt;span style="font-style:italic;"&gt;(&lt;/span&gt;&lt;br /&gt;  `ip` int(10) unsigned default NULL,&lt;br /&gt;  `time` int(10) unsigned default NULL,&lt;br /&gt;  `country` tinyint(3) unsigned default NULL,&lt;br /&gt;  `browser` tinyint(4) default NULL,&lt;br /&gt;  `version` varchar(8) default NULL,&lt;br /&gt;  `os` tinyint(4) default NULL,&lt;br /&gt;  `refdom` varchar(32) default NULL,&lt;br /&gt;  `status` tinyint(4) default NULL,&lt;br /&gt;  `loader` tinyint(4) default NULL,&lt;br /&gt;  `expl` tinyint(4) default NULL&lt;br /&gt;&lt;span style="font-style:italic;"&gt;)&lt;/span&gt; &lt;span style="font-weight:bold;"&gt;ENGINE=MyISAM DEFAULT CHARSET=cp1251;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;CREATE TABLE `users`&lt;/span&gt; &lt;span style="font-style:italic;"&gt;(&lt;/span&gt;&lt;br /&gt;  `id` smallint(5) unsigned NOT NULL auto_increment,&lt;br /&gt;  `user` varchar(16) default NULL,&lt;br /&gt;  `pass` varchar(32) default NULL,&lt;br /&gt;  `premis` tinytext,&lt;br /&gt;  `options` tinytext,&lt;br /&gt;  `lasttime` int(10) unsigned default NULL,&lt;br /&gt;  PRIMARY KEY  (`id`)&lt;br /&gt;&lt;span style="font-style:italic;"&gt;)&lt;/span&gt; &lt;span style="font-weight:bold;"&gt;ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=1;&lt;/span&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-8926523585834538499?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/nXnTJWocgI0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/8926523585834538499/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=8926523585834538499" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/8926523585834538499?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/8926523585834538499?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/nXnTJWocgI0/tornado-exploit-pack.html" title="Tornado exploit pack" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_ZNYfmKAdUSo/Sh9q0KNnoNI/AAAAAAAAAs8/YWhLjVW21lk/s72-c/tor_summary.jpg" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2009/05/tornado-exploit-pack.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU4ER384cSp7ImA9WxJQEEk.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-5038301287995704596</id><published>2009-05-23T01:47:00.006Z</published><updated>2009-05-23T01:58:26.139Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-05-23T01:58:26.139Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="zeus" /><title>Improvements to Zeus</title><content type="html">Zeus's development is active these days.  Below is a table of release dates for each version:&lt;br /&gt;&lt;blockquote&gt;&lt;span style="font-style:italic;"&gt;&lt;br /&gt;2008/12/20 - 1.2.0.0&lt;br /&gt;2008/12/30 - 1.2.1.0&lt;br /&gt;2009/03/11 - 1.2.2.0&lt;br /&gt;2009/03/28 - 1.2.3.0&lt;br /&gt;2009/04/02 - 1.2.4.0&lt;br /&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ZNYfmKAdUSo/ShdW7aKut5I/AAAAAAAAAs0/AnAgPxbM6ho/s1600-h/Screenshot.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 300px; height: 60px;" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/ShdW7aKut5I/AAAAAAAAAs0/AnAgPxbM6ho/s200/Screenshot.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5338831461907609490" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This change log entry states that during HTTP communication of the Trojan with the C&amp;C server the User-Agent used will be that of system's Internet Explorer.  Before, it was a constant string embedded in the binary, which could have raised suspicion or blocked by ISPs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-5038301287995704596?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/LKEvLTHY--Q" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/5038301287995704596/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=5038301287995704596" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/5038301287995704596?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/5038301287995704596?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/LKEvLTHY--Q/improvements-to-zeus.html" title="Improvements to Zeus" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_ZNYfmKAdUSo/ShdW7aKut5I/AAAAAAAAAs0/AnAgPxbM6ho/s72-c/Screenshot.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2009/05/improvements-to-zeus.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUIBRX84eyp7ImA9WxJTF0s.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-2764176288065789239</id><published>2009-04-26T16:28:00.005Z</published><updated>2009-04-26T17:39:14.133Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-26T17:39:14.133Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="zeus" /><title>Zeus / Zbot / Prg / Ntos / Wsnpoem</title><content type="html">Real name of the trojan package is Zeus.  It comes with a PHP based control panel and a Windows executable to build the trojan.  Builder's job is to parse a text based config file, encrypt it, and embed some options into the trojan.  The builder can also remove the infection from the system.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ZNYfmKAdUSo/SfSPNtvGJ3I/AAAAAAAAArs/s9TDWxHcgI0/s1600-h/zcp.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 200px; height: 177px;" src="http://3.bp.blogspot.com/_ZNYfmKAdUSo/SfSPNtvGJ3I/AAAAAAAAArs/s9TDWxHcgI0/s200/zcp.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5329041724864341874" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Main scripts of the control panel are:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"in.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;Script which controls authentication to the admin panel as well as all reporting and configuration options of the botnet.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"s.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;This is the script which accepts all communication from the bot client on a compromised computer.  Depending on configured options it will either insert the data into a MySQL database, or store inside a seperate directory, or both.&lt;br /&gt;&lt;br /&gt;It's responsable for decrypting the POST data and parsing individual stolen records.  Basically, this is the main C&amp;C script of the botnet.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ZNYfmKAdUSo/SfSSFw6s7fI/AAAAAAAAAr0/Go4W3TYoL9k/s1600-h/zcfg.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 200px; height: 152px;" src="http://2.bp.blogspot.com/_ZNYfmKAdUSo/SfSSFw6s7fI/AAAAAAAAAr0/Go4W3TYoL9k/s200/zcfg.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5329044886814256626" /&gt;&lt;/a&gt;&lt;br /&gt;Keep in mind that these filenames are not hardcoded anywhere but are only the defaults.  If the filename is changed on the server then the bot client must be updated with a new configuration file, which it periodically polls off the server.  Typical configuration file will have entries similar to the ones on this screenshot.&lt;br /&gt;&lt;br /&gt;Currently, Zeus' build tree is &lt;span style="font-style:italic;"&gt;1.2.x.x&lt;/span&gt; which, depending on subversions, will utilize either RC4 encryption or a simpler form of it.  Otherwise, the record and configuration structures remain the same between different &lt;span style="font-style:italic;"&gt;1.2.x.x&lt;/span&gt; builds.  Older versions, prior to &lt;span style="font-style:italic;"&gt;1.2.x.x&lt;/span&gt; used a completely different structure and obfuscation method.  They contained a unique field in the HTTP headers during C&amp;C communication and thus were easily detected via IDS signatures from &lt;a href="http://www.emergingthreats.net/"&gt;Emerging Threats&lt;/a&gt; (&lt;span style="font-style:italic;"&gt;2003182, 2003183, 2007688, 2008100, 2008326&lt;/span&gt;)&lt;br /&gt;&lt;br /&gt;So, what can this bot/trojan do?&lt;br /&gt;It has the following abilities:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;Credential stealing of FTP and POP3 on any TCP port.&lt;br /&gt;&lt;br /&gt;Via a custom build can capture any data.&lt;br /&gt;&lt;br /&gt;Capture of HTTP and HTTPS traffic.&lt;br /&gt;&lt;br /&gt;Proxy server via Socks 4/4a/5, even if compromised device is behind a NAT.&lt;br /&gt;&lt;br /&gt;Screenshot capture of the desktop.&lt;br /&gt;&lt;br /&gt;Theft of "&lt;span style="font-style:italic;"&gt;Protected Storage&lt;/span&gt;" data.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ZNYfmKAdUSo/SfScFSvZswI/AAAAAAAAAr8/68b2j1hr_YM/s1600-h/zcap.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 200px; height: 136px;" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/SfScFSvZswI/AAAAAAAAAr8/68b2j1hr_YM/s200/zcap.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5329055873830073090" /&gt;&lt;/a&gt;&lt;br /&gt;Here's an example how a communication flow between bot/trojan and C&amp;C server will look like.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-2764176288065789239?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/WByfBn0s2Ms" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/2764176288065789239/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=2764176288065789239" title="8 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/2764176288065789239?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/2764176288065789239?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/WByfBn0s2Ms/zeus-zbot-prg-ntos-wsnpoem.html" title="Zeus / Zbot / Prg / Ntos / Wsnpoem" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_ZNYfmKAdUSo/SfSPNtvGJ3I/AAAAAAAAArs/s9TDWxHcgI0/s72-c/zcp.jpg" height="72" width="72" /><thr:total>8</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2009/04/zeus-zbot-prg-ntos-wsnpoem.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUABRH89eSp7ImA9WxJTF0s.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-5490926688083310750</id><published>2009-02-28T14:31:00.005Z</published><updated>2009-04-26T17:42:35.161Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-04-26T17:42:35.161Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="unique pack" /><title>Unique Pack</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ZNYfmKAdUSo/SalLD_JnRFI/AAAAAAAAAqo/q47Ipf1g1nk/s1600-h/up.jpg"&gt;&lt;img style="float:center; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 200px; height: 177px;" src="http://2.bp.blogspot.com/_ZNYfmKAdUSo/SalLD_JnRFI/AAAAAAAAAqo/q47Ipf1g1nk/s320/up.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5307856167696286802" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Exploits for Opera9, Firefox, Internet Explorer 4, 5, 6, and 7.  Seperate module to exploit Adobe Reader util.printf() (CVE-2008-2992) vulnerability.  Also, includes a module to deliver binaries via social engineering the visitor into accepting the download, similar to Fake AV.&lt;br /&gt;&lt;br /&gt;So, what's so unique about it?  Nothing really.  Perhaps the fact that it obfuscates its PHP code which contains exploits, which isn't difficult to take off.  Also, maybe because it doesn't use any parameter passing to scripts via URL, as most other packs do.  Here's a summary of some scripts:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"cfg/config.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Defines variables for loader and exploit URLs, database credentials, and control panel credentials.&lt;br /&gt;&lt;br /&gt;URLs are defined for loader script ("load.php") and Adobe PDF exploit ("pdf.php").&lt;br /&gt;&lt;br /&gt;Filename of binary which will be dropped ("1.exe").&lt;br /&gt;&lt;br /&gt;Database host, name, credentials.  Default DB name is "spl".&lt;br /&gt;&lt;br /&gt;Control Panel's script name ("admcp.php"), username, and password (double MD5 hash of real pass).  Default user is "root".&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"cfg/options.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Defines functions and text for 404 page.  Functions to identify browser, operating system, country (based on GeoIP), and encoding function to Unicode for Javascript (eg: "%u9090").&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"cfg/mod_vparivatel.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Configuration variables for social engineering module to convince the user to download the binary, similar to the idea used in RogueAV schemes.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"install.php" or "_install.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Database creation script.  Will connect to the database with configured credentials and create necessary table.&lt;br /&gt;&lt;br /&gt; CREATE TABLE `statistic` (&lt;br /&gt; `id` int(10) NOT NULL auto_increment,&lt;br /&gt;   `ip` varchar(15) default NULL,&lt;br /&gt;   `os` varchar(30) default NULL,&lt;br /&gt;   `br` varchar(30) default NULL,&lt;br /&gt;   `country` varchar(2) default '--',&lt;br /&gt;   `good` int(1) NOT NULL default '0',&lt;br /&gt; `mv` int(1) NOT NULL default '0',&lt;br /&gt;   `refer` varchar(300) NOT NULL,&lt;br /&gt;   `date` datetime default '2008-10-01 00:00:00',&lt;br /&gt;   PRIMARY KEY  (`id`)&lt;br /&gt; ) ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=1;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"index.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Checks for presence of "install.php" and executes it.  If visitor's IP was already logged then aborts with HTTP 200 status but shows a 404 page as defined in the variable of the "cfg/options.php" file.&lt;br /&gt;&lt;br /&gt;Identifies country, browser, operating system, referer, IP address and updates the database.  Includes "sploit.php" file for exploit generation.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"sploits.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Checks if "Unique" name is defined and aborts with 404 message from predefined variable if not defined. Determines the browser and loads appropriate exploit script:&lt;br /&gt; "sploit/op9.php" - Opera&lt;br /&gt; "sploit/ff.php" - Firefox&lt;br /&gt; "sploit/ie7.php" - Internet Explorer 7&lt;br /&gt; "sploit/ie.php" - Internet Explorer 4, 5, or 6.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"load.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Reads the executable which was defined in config file and serves it to the user.  Updates database column "good" for this connection's IP address.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"pdf.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Contains the exploit for Adobe Reader ; CVE-2008-2992 ; util.printf().  Interestingly, the file contains obfuscated PHP script to generate the exploit.  It has some protection against people attempting to modify the code and print out the exploit.  It reads itself and looks for calls to "print | sprint | echo" and aborts if found.  This prevents people from simply modifying the "eval" statement to see the real exploit code.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"vparivatel.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Delivers an executable file using social engineering technique similar to RogueAV by convincing the user of a threat or some required update.  Messages can be customized per browser, operating system, and country.&lt;br /&gt;&lt;br /&gt;Checks if visiting IP was already given a binary using this method and aborts if found.&lt;br /&gt;&lt;br /&gt;If GET parameter "?a" is set then delivers the binary otherwise displays a convincing message and redirects back to itself with proper parameter.&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-5490926688083310750?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/JD9NJO7Ztmw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/5490926688083310750/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=5490926688083310750" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/5490926688083310750?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/5490926688083310750?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/JD9NJO7Ztmw/unique-pack.html" title="Unique Pack" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_ZNYfmKAdUSo/SalLD_JnRFI/AAAAAAAAAqo/q47Ipf1g1nk/s72-c/up.jpg" height="72" width="72" /><thr:total>3</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2009/02/unique-pack.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0ENRn84eyp7ImA9WxVSF04.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-6507706506322747518</id><published>2009-01-12T03:11:00.002Z</published><updated>2009-01-12T03:41:37.133Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-12T03:41:37.133Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="armitage" /><title>Armitage 1.0</title><content type="html">This is a rather old version dated back to November 2007 but perhaps someone will find this info useful.&lt;br /&gt;&lt;br /&gt;On the server side it's driven by PHP with MySQL as the backend.  File structure is similar to other packs.  One noticable difference in the way statistics are tracked, as all packs track visitors and these numbers are used in marketing of packs.&lt;br /&gt;&lt;br /&gt;Armitage has an additional section to calculate how many visitors were actually compromised.  Typically this is done by recording how many people request a download of a loader (trojan binary) which means the exploit worked.  However, this does not account for the fact that loader may have been blocked on the client due to various defenses.  Any pack's job is to deliver an exploit and load some binary and many packs are satisfied with just recording such requests.  In Armitage's case it is accomplished by recording an additional request which must be made by this loader.  This statistic will represent how many devices have been compromised and have gotten the loader to fully execute and check-in.  It is unclear why this decision was made for a generic pack since loaders will now have to be specifically written to perform this check-in function.  Such loader was not distributed with the pack itself so it is possible that this was not written for general public.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"config.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Contains password variables for admin and guest.&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"db.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Defines variables needed to establish database connection (host, schema, user, and password).&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"install.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Establishes a database connection and creates the necessary tables.  Once complete shows a link to admin page and required credentials.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"admin.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Defines two valid accounts admin and guest.  Shows traffic and loads statistics as well as has the ability to upload a new trojan and change passwords.&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"index.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Defines various functions which identify the visitor based on UAS.&lt;br /&gt;&lt;br /&gt;Creates the URL for loader "exe.php" and if GET contains "?ex=" integer then this value will be passed to "exe.php?ex=".&lt;br /&gt;&lt;br /&gt;Checks visitor's IP address for previous visits and aborts if one is found.  String "^_~" is returned upon abort.&lt;br /&gt;&lt;br /&gt;Identifies the browser, the following list is used: Opera, Konqueror, Lynx, Links, Internet Explorer, Netscape, Firefox, Mozilla, Other.&lt;br /&gt;&lt;br /&gt;Identifies the OS with the following list: Windows (95, NT 4, 98, ME, 2000, XP, 2003, Vista), Linux, Mac OS, Other.&lt;br /&gt;&lt;br /&gt;Identifes the Country based on GeoIP library from visitor's IP address.  Geoip files are borrowed from Icepack.&lt;br /&gt;&lt;br /&gt;Updates statistics for HTTP Referrer, domain only.  Sanitizes the referrer domain to avoid SQL injection.&lt;br /&gt;&lt;br /&gt;Updates statistics for Browser, OS, and Country.  Inserts visitor's IP address and time of visit.&lt;br /&gt;&lt;br /&gt;Exploit is served for Internet Explorer from "e.php", for Opera from "opera.php", and Firefox from "ff.php".&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"exe.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Second stage of the exploit sequence, which serves the binary file.  By default it is "./load/file.exe", but if GET "?ex=" integer was set then file with that value is delivered (eg: "./load/file20.exe").  Identifies the visitor (Browser, OS, Country) and updates "loads" statistics table.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"lds.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Identifies the Country based on Geoip of the connection and updates the "ots" (otstuk) statistics table.  This is the place where loader's check-in stats are kept.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"e.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Serves the MDAC exploit slightly obfuscated.  CVE-2006-0003 ; MS06-014 ; MDAC (BD96C556-65A3-11D0-983A-00C04FC29E36).  If this fails then will load "bof.php".&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"bof.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Contains the shellcode for buffer overflow exploits.&lt;br /&gt;&lt;br /&gt;Serves the WFI exploit.  CVE-2006-3730 ; MS06-057 ; "WebViewFolderIcon.WebViewFolderIcon.1.setSlice()".&lt;br /&gt;&lt;br /&gt;At the end display the 404 Not Found page which is fake since real HTTP Status code is still 200 OK.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"ff.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Serves exploits for Firefox browsers&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"opera.php"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Serves exploits for Opera browsers&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-6507706506322747518?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/0Uf9e-8mcMQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/6507706506322747518/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=6507706506322747518" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/6507706506322747518?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/6507706506322747518?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/0Uf9e-8mcMQ/armitage-10.html" title="Armitage 1.0" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2009/01/armitage-10.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU4DRXk-eSp7ImA9WxVSEEU.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-677647904618409840</id><published>2009-01-04T15:19:00.003Z</published><updated>2009-01-04T15:46:14.751Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-04T15:46:14.751Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="reverse engineering" /><category scheme="http://www.blogger.com/atom/ns#" term="intrusion detection" /><title>PE offsets within malware</title><content type="html">Building on work mentioned in the previous post couple of more interesting facts were identified.  Realizing that implementing the Snort's SO rule may not be feasible in some infrastructures, depending on the design and configuration of the sensors, it would be beneficial to identify most common offsets used by malware and how they compare to legitimate executables.&lt;br /&gt;&lt;br /&gt;After reviewing offsets found in an installation of Windows XP SP2 system utilizing 8000 samples, both executable and DLL files, and then comparing with offsets found in malware collected over the last year and a half (450 samples) there were several unique offset identified which were solely used by malware.&lt;br /&gt;&lt;br /&gt;As a result of this several regular Snort signatures can be written which will alert on download of binaries which should raise suspicion.&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;alert tcp $EXTERNAL_NET any -&gt; $HOME_NET any (msg:"LOCAL Suspicious Executable (PE under 128)"; flow:established,from_server; content:"MZ"; rawbytes; byte_test:4,&lt;,128,58,relative,little; content:"PE|00 00|"; rawbytes; within:130; sid:62; rev:1;)&lt;br /&gt;&lt;br /&gt;alert tcp $EXTERNAL_NET any -&gt; $HOME_NET any (msg:"LOCAL Suspicious Executable (PE offset 12)"; flow:established,from_server; content:"MZ"; rawbytes; byte_test:4,=,12,58,relative,little; content:"PE|00 00|"; rawbytes; within:14; sid:53; rev:1;)&lt;br /&gt;&lt;br /&gt;alert tcp $EXTERNAL_NET any -&gt; $HOME_NET any (msg:"LOCAL Suspicious Executable (PE offset 16)"; flow:established,from_server; content:"MZ"; rawbytes; byte_test:4,=,16,58,relative,little; content:"PE|00 00|"; rawbytes; within:18; sid:54; rev:1;)&lt;br /&gt;&lt;br /&gt;alert tcp $EXTERNAL_NET any -&gt; $HOME_NET any (msg:"LOCAL Suspicious Executable (PE offset 64)"; flow:established,from_server; content:"MZ"; rawbytes; byte_test:4,=,64,58,relative,little; content:"PE|00 00|"; rawbytes; within:66; sid:55; rev:1;)&lt;br /&gt;&lt;br /&gt;alert tcp $EXTERNAL_NET any -&gt; $HOME_NET any (msg:"LOCAL Suspicious Executable (PE offset 96)"; flow:established,from_server; content:"MZ"; rawbytes; byte_test:4,=,96,58,relative,little; content:"PE|00 00|"; rawbytes; within:98; sid:56; rev:1;)&lt;br /&gt;&lt;br /&gt;alert tcp $EXTERNAL_NET any -&gt; $HOME_NET any (msg:"LOCAL Suspicious Executable (PE offset 124)"; flow:established,from_server; content:"MZ"; rawbytes; byte_test:4,=,124,58,relative,little; content:"PE|00 00|"; rawbytes; within:128; sid:57; rev:1;)&lt;br /&gt;&lt;br /&gt;alert tcp $EXTERNAL_NET any -&gt; $HOME_NET any (msg:"LOCAL Suspicious Executable (PE offset 144)"; flow:established,from_server; content:"MZ"; rawbytes; byte_test:4,=,144,58,relative,little; content:"PE|00 00|"; rawbytes; within:146; sid:58; rev:1;)&lt;br /&gt;&lt;br /&gt;alert tcp $EXTERNAL_NET any -&gt; $HOME_NET any (msg:"LOCAL Suspicious Executable (PE offset 152)"; flow:established,from_server; content:"MZ"; rawbytes; byte_test:4,=,152,58,relative,little; content:"PE|00 00|"; rawbytes; within:154; sid:59; rev:1;)&lt;br /&gt;&lt;br /&gt;alert tcp $EXTERNAL_NET any -&gt; $HOME_NET any (msg:"LOCAL Suspicious Executable (PE offset 160)"; flow:established,from_server; content:"MZ"; rawbytes; byte_test:4,=,160,58,relative,little; content:"PE|00 00|"; rawbytes; within:162; sid:60; rev:1;)&lt;br /&gt;&lt;br /&gt;alert tcp $EXTERNAL_NET any -&gt; $HOME_NET any (msg:"LOCAL Suspicious Executable (PE offset 512)"; flow:established,from_server; content:"MZ"; rawbytes; byte_test:4,=,512,58,relative,little; content:"PE|00 00|"; rawbytes; within:514; sid:61; rev:1;)&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Couple of interesting and important notes.  There was not a single legitimate binary which contained a PE offset under 128 bytes.  The offsets in malware which did not match those of legitimate files occured in %25 of malicious samples.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;All offsets found:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Suspicious PE offsets (malware of 467 samples):&lt;br /&gt;-----------------------------------------------&lt;br /&gt;12, 16, 64, 96, 124, 144, 152, 160, 512&lt;br /&gt;&lt;br /&gt;Legitimate PE offsets (XP Sp2 8582 samples):&lt;br /&gt;--------------------------------------------&lt;br /&gt;128, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 256, 264, 272, 280, 288, 296, 304, 312, 320, 336, 344, 392, 584, 592, 600, 608, 616, 624, 632, 1024, 7680&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-677647904618409840?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/4s1LytzFPes" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/677647904618409840/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=677647904618409840" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/677647904618409840?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/677647904618409840?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/4s1LytzFPes/pe-offsets-within-malware.html" title="PE offsets within malware" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>1</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2009/01/pe-offsets-within-malware.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0EAQH07fyp7ImA9WxBVEko.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-2373095494642931206</id><published>2008-11-16T03:17:00.005Z</published><updated>2010-02-15T22:07:21.307Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-15T22:07:21.307Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="intrusion detection" /><title>Detecting packed/crypted executables with Snort</title><content type="html">As a result of some research into various trojans it was identified that majority of them rely on packers, crypters, and anti debugging tricks.  Nothing new here.  However, what was interesting is that some of them were completely missed by Snort.  Rulebase included default signatures that come with base installation, community rules, and &lt;a href="http://www.emergingthreats.net/"&gt;Emerging Threats (ET)&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;It turns out that analyzed trojans modified the executable's header which did not fall within signature's patterns.  This can be partly fixed by creating a signature to detect the PE header's magic value within a certain distance from the start of the DOS header.  However, the trick here is to pick a distance which will not produce false negatives.  If it's too short then it's doomed to miss lots of stuff.  Higher values may produce false positives, more research into this is needed.&lt;br /&gt;&lt;br /&gt;It's best to detect executables by reading their structure.  PE/COFF format states that the offset to start of PE header is found 0x3C bytes from start of DOS header.  I was not able to achieve desired results using the regular Snort rule syntax but using the dynamic rules feature worked perfectly.  It's written C and must be compiled.  Download it &lt;a href="http://www.dxp2532.info/tools/snort_so_pe.tar.gz"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-2373095494642931206?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/5RUvRjdaJ50" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/2373095494642931206/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=2373095494642931206" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/2373095494642931206?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/2373095494642931206?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/5RUvRjdaJ50/detecting-packedcrypted-executables.html" title="Detecting packed/crypted executables with Snort" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2008/11/detecting-packedcrypted-executables.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D04NQHs4fip7ImA9WxRWEEk.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-8373501990115937824</id><published>2008-10-26T17:59:00.003Z</published><updated>2008-10-26T18:33:11.536Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-26T18:33:11.536Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="news" /><category scheme="http://www.blogger.com/atom/ns#" term="intrusion detection" /><title>Importance of verifying vendor's protection claims</title><content type="html">One of my favorite fundamental security principles is perfectly summarized by this blog post: &lt;a href="http://taosecurity.blogspot.com/2007/10/are-you-secure-prove-it.html"&gt;"Are you Secure? Prove it.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This is true for any situation more so for high severity issues like the &lt;a href="http://www.microsoft.com/technet/security/Bulletin/MS08-067.mspx"&gt;MS08-067&lt;/a&gt; vulnerability.  So, one of the big names in enterprise security products came out with couple of signatures in their end user protection product.  I won't name which one since it doesn't really matter in this context.&lt;br /&gt;&lt;br /&gt;Taking into account that not all organizations can patch immediately, in large enterprises there are many factors which can contribute to the delay, the last resort to protect users is to rely on security software on their workstations.  Antivirus can only go so far and it's largely useless these days.  However, some HIPS signatures can limit the exposure.&lt;br /&gt;&lt;br /&gt;So, this HIPS product rolled out signatures to supposedly detect and prevent the attack.  After testing their claims it turned out that it only blocks exploit attempts from the workstation which has this HIPS installed.  Any attacks against this workstation will be successful.  It is beyond me why this decision was made.  It'll stop the worm from spreding but it won't protect the client from being infected by the trojan which can easily be downloaded by the shellcode.&lt;br /&gt;&lt;br /&gt;Interestingly, the response from the vendor was that they created detection for the most common exploit vector.  I understand that it's not always possible to create signatures for the vulnerability, product has its limitations, thus only specific exploit vectors are detected.&lt;br /&gt;&lt;br /&gt;But in this case it wasn't event the most common vector.  My tests used the code which was published on &lt;a href="http://www.milw0rm.com/exploits/6824"&gt;milw0rm&lt;/a&gt; by &lt;a href="http://www.dontstuffbeansupyournose.com/?page_id=2"&gt;stephenl&lt;/a&gt; and at that time had just over 10,000 views, currently at over 16,000.  I would think that the vector used in that PoC would be the most common since it's quickly copied by many other hacking sites.&lt;br /&gt;&lt;br /&gt;Thus, if organizations rely on their security vendor's claims and don't have in-house expertise to verify those claims then they're at a high risk of having a false sense of security.  Considering that this product is from a rather large security vendor then the list of those organizations is rather large.&lt;br /&gt;&lt;br /&gt;On the upside, vendor was notified and is currently working on updating their detection.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-8373501990115937824?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/2J5Z568LZ-s" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/8373501990115937824/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=8373501990115937824" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/8373501990115937824?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/8373501990115937824?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/2J5Z568LZ-s/importance-of-verifying-vendors.html" title="Importance of verifying vendor's protection claims" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2008/10/importance-of-verifying-vendors.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkYASXk_cCp7ImA9WxdaGEw.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-274411143483339464</id><published>2008-08-27T04:35:00.003Z</published><updated>2008-08-27T05:15:48.748Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-27T05:15:48.748Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="neosploit" /><title>Neosploit devel/updates retired! However...</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ZNYfmKAdUSo/SLTa8pGV1UI/AAAAAAAAAgY/1qlCty3pvYg/s1600-h/neo_farewell.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_ZNYfmKAdUSo/SLTa8pGV1UI/AAAAAAAAAgY/1qlCty3pvYg/s320/neo_farewell.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5239053001898186050" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It seems that development of this exploit pack has ended.  The message basically states that efforts which are put into development are not returning enough income and supported is ending.&lt;br /&gt;&lt;br /&gt;However, this does not mean that you will no longer see exploits delivered via this framework.  There are many installations of it out there and it's still one of the best exploit packs, although it was expensive.  Also, the Neo folks have released instructions/script on how to move the CGI program from one server to another.  Previously, this had to be done with the help of Neosploit Support, as the binary was compiled for specific server.  If source code is leaked out or released then it's highly likely that more malware will be delivered through it.&lt;br /&gt;&lt;br /&gt;Now, that background info behind us, we have seen something interesting which leaves more questions then answers.  We have identified a site which utilizes this pack to drop a binary which seems to be associated with the recent fake Antivirus malware.&lt;br /&gt;&lt;br /&gt;What is of most interest is the fact that the obfuscated script, mainly the deobfuscation function has some modifications to its code.  Several key statements were rearranged in such a way that logic isn't changed.&lt;br /&gt;&lt;br /&gt;Why make such a change?  Is it a change or some older build which had a short life span and wasn't updated since?  We've been keeping an eye on Neosploit's progress for many months now and have never seen this code sequence.  We have observed similar minor changes before, during active development, but now since it's supposedly retired the update does stand out.  Is it possible that source code was leaked? or did someone just modify the binary in place, and for what purpose, evade detection?&lt;br /&gt;&lt;br /&gt;More research is needed to confirm if this change occurs elsewhere, on other domains hosting Neosploit.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-274411143483339464?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/5zFJNiPhJdM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/274411143483339464/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=274411143483339464" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/274411143483339464?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/274411143483339464?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/5zFJNiPhJdM/neosploit-develupdates-retired-however.html" title="Neosploit devel/updates retired! However..." /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_ZNYfmKAdUSo/SLTa8pGV1UI/AAAAAAAAAgY/1qlCty3pvYg/s72-c/neo_farewell.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2008/08/neosploit-develupdates-retired-however.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUQFQX4yfSp7ImA9WxdaFEo.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-2734100078553708073</id><published>2008-08-23T06:07:00.002Z</published><updated>2008-08-23T06:35:10.095Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-23T06:35:10.095Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="fiesta" /><title>le fiesta - another exploit pack</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ZNYfmKAdUSo/SK-pkzJuCVI/AAAAAAAAAgQ/uluV3s2lee0/s1600-h/fiesta_stats.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_ZNYfmKAdUSo/SK-pkzJuCVI/AAAAAAAAAgQ/uluV3s2lee0/s200/fiesta_stats.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5237591341326534994" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This is yet another web based exploit pack which utilizes PHP and SQL.  Overall, it's similar to the other PHP based packs except here the file structure is much more compact, not that it really matters, and it's less smart about serving out exploits (not loaders) to already visited victims.&lt;br /&gt;&lt;br /&gt;Uses two layers of encryption/obfuscation via Javascript with random function and variable names upon each visit.  Here's a rough list of included exploits:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;COM objects&lt;br /&gt;&lt;blockquote&gt;(see metasploit)&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;"?spl=com"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;EC444CB6-3E7E-4865-B1C3-0DE72EF39B3F CreateControlRange&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;"?spl=vml2"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;DirectAnimation.PathControl&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;"?spl=wfi"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;WebViewFolderIcon.WebViewFolderIcon.1 setSlice()&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;"?spl=zango1"&lt;/span&gt; &lt;br /&gt;&lt;blockquote&gt;8C875948-9C60-4381-9248-0DF180542D53 DownloadAndExec()&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;"?spl=zango2"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;BFC08CFF-C737-4433-BD5A-0EE7EFCFEE54 DownloadAndExec()&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;"?spl=myspace"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;48DD0448-9209-4F81-9F6D-D83562940134&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;"?spl=ymj"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;5F810AFC-BB5F-4416-BE63-E01DD117BD6C AddImage()&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;"?spl=buddy"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;Sb.SuperBuddy.1 LinkSBIcons()&lt;/blockquote&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;The &lt;span style="font-style:italic;"&gt;?spl=&lt;/span&gt; parameter will be passed to &lt;span style="font-style:italic;"&gt;"load.php"&lt;/span&gt; which will update statistics of each exploit.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-2734100078553708073?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/iBfdnpgcL0o" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/2734100078553708073/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=2734100078553708073" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/2734100078553708073?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/2734100078553708073?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/iBfdnpgcL0o/le-fiesta-another-exploit-pack.html" title="le fiesta - another exploit pack" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_ZNYfmKAdUSo/SK-pkzJuCVI/AAAAAAAAAgQ/uluV3s2lee0/s72-c/fiesta_stats.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2008/08/le-fiesta-another-exploit-pack.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0YCRHYyeip7ImA9WxdaE0o.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-409541364837495646</id><published>2008-08-22T02:50:00.003Z</published><updated>2008-08-22T03:19:25.892Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-22T03:19:25.892Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="news" /><title>"Army cyber ops"...</title><content type="html">In a &lt;a href="http://www.gcn.com/online/vol1_no1/46946-1.html"&gt;Government Computer News article&lt;/a&gt; there was an interesting fact mentioned which hints at Army's cyber command centers ability to handle contigency issues.&lt;br /&gt;&lt;br /&gt;It was stated that many of their links utilize undersea cables but some also use land based fiber.  One of such land links was severed by a garbage truck, disabling service to their northern and southern continental CC for several hours.&lt;br /&gt;&lt;br /&gt;Now, I know how difficult it can be to design and run a full contigency operation but one would think that with the budget and resources of a government such a goal should not pose too much of a problem.  Apparently, this is not so for Army's cyber ops.&lt;br /&gt;&lt;br /&gt;To be honest, it's a big surprise to me.  I've seen companies not lose a single tcp connection upon core router/switch failures, cable cuts in server racks, and power outages in data centers and they don't have the same resources as the government can afford.&lt;br /&gt;&lt;br /&gt;This isn't a good sign especially in light of more and more talk regarding large scale cyber warefare.  Hopefuly, that garbage truck incident served as a lesson.  On a bright side, at least the guys at the monitoring consoles got a decent break :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-409541364837495646?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/RUGX5OZuwMs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/409541364837495646/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=409541364837495646" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/409541364837495646?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/409541364837495646?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/RUGX5OZuwMs/army-cyber-ops.html" title="&quot;Army cyber ops&quot;..." /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2008/08/army-cyber-ops.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEMGR3kzeyp7ImA9WxdbGEs.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-7819879066589331872</id><published>2008-08-16T04:41:00.003Z</published><updated>2008-08-16T04:53:46.783Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-16T04:53:46.783Z</app:edited><title>Why I love cons...</title><content type="html">Some great talks, interesting presentations and new ideas.  Also, you get to meet very interesting people and get to pick their brains or just hang out and enjoy their strange and wonderful personalities.&lt;br /&gt;&lt;br /&gt;However, the best is when you discover people who are true hackers.  By that I mean people with a certain state of mind who take a creative approach to solve problems.  &lt;br /&gt;&lt;br /&gt;Here's an example which proves that a real hacker does not need a computer but only his brain:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ZNYfmKAdUSo/SKZcvwLH7OI/AAAAAAAAAe4/5uVTwSi1NJo/s1600-h/IMG.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_ZNYfmKAdUSo/SKZcvwLH7OI/AAAAAAAAAe4/5uVTwSi1NJo/s320/IMG.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5234973592319945954" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;And yes, this guy was hacking away at deciphering some message.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-7819879066589331872?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/Wv-BDv99Gcg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/7819879066589331872/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=7819879066589331872" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/7819879066589331872?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/7819879066589331872?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/Wv-BDv99Gcg/why-i-love-cons.html" title="Why I love cons..." /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_ZNYfmKAdUSo/SKZcvwLH7OI/AAAAAAAAAe4/5uVTwSi1NJo/s72-c/IMG.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2008/08/why-i-love-cons.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkIFSHw7fCp7ImA9WxdSF0o.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-7808038327858386742</id><published>2008-05-24T03:32:00.007Z</published><updated>2008-05-26T04:01:59.204Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-05-26T04:01:59.204Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="neosploit" /><title>Analysis of the Adobe exploit within Neosploit</title><content type="html">It appears that currently the toolkit is under active development.  Adobe vulnerability which is exploited is one from &lt;span style="font-style:italic;"&gt;CVE-2007-5659&lt;/span&gt; disclosure.&lt;br /&gt;&lt;br /&gt;We have seen some old exploit being added, removed, then added again.  This was the &lt;span style="font-style:italic;"&gt;MS06-067 DirectAnimation.PathControl.KeyFrame()&lt;/span&gt; vulnerability.  More on this one later.&lt;br /&gt;&lt;br /&gt;The function which exploits Adobe vulnerability (&lt;span style="font-style:italic;"&gt;CVE-2007-5659&lt;/span&gt;) will try to load ActiveX controls in the following order:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;1. AcroPDF.PDF&lt;br /&gt;2. PDF.PdfCtrl&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;If successful then it'll identify the version in use and will continue only if it's below &lt;span style="font-style:italic;"&gt;8.1.2&lt;/span&gt;, which makes sense since Adobe realeased an unpdate with this version that fixed the issue.  Then, the version is inserted into an already embedded URL string to download the actual PDF file.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ZNYfmKAdUSo/SDea-Tc1awI/AAAAAAAAATY/sHotAt58xjA/s1600-h/html_js.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_ZNYfmKAdUSo/SDea-Tc1awI/AAAAAAAAATY/sHotAt58xjA/s200/html_js.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5203798289613679362" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Returned PDF file is around 10K in size and contains Zlib compressed obfuscated Javascript.  Thus, any IDS detection which looks for the vulnerable code will not pick this one up.  Obfuscation method is the same as for all other pages.  After peeling this layer off one finds the familiar heap spray function to populate memory with the shellcode.  Then, once again a version check is performed.  Finally, a long string is created (~ 44K) and used as an argument to &lt;span style="font-style:italic;"&gt;Collab.collectEmailInfo()&lt;/span&gt; method.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ZNYfmKAdUSo/SDedHTc1ayI/AAAAAAAAATo/FpQkMeFFZYs/s1600-h/pdf_js.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_ZNYfmKAdUSo/SDedHTc1ayI/AAAAAAAAATo/FpQkMeFFZYs/s200/pdf_js.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5203800643255757602" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If the overflow works, then the shellcode will GET a URL which is the same as the one before except for one changed byte (&lt;span style="font-style:italic;"&gt;from 01 -&gt; 02&lt;/span&gt;), perhaps to track which stage is requested.  That file is an Executable which will be saved in the user's Temp directory as &lt;span style="font-style:italic;"&gt;"sxoC.exe"&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;For those who rely on &lt;span style="font-style:italic;"&gt;HIDS/HIPS, AV, nIDS/nIPS&lt;/span&gt; chances are nothing will be seen, unless the dropped binary gets picked up by AV (right!).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-7808038327858386742?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/Pkd9LJPwbdc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/7808038327858386742/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=7808038327858386742" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/7808038327858386742?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/7808038327858386742?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/Pkd9LJPwbdc/analysis-of-adobe-exploit-within.html" title="Analysis of the Adobe exploit within Neosploit" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_ZNYfmKAdUSo/SDea-Tc1awI/AAAAAAAAATY/sHotAt58xjA/s72-c/html_js.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2008/05/analysis-of-adobe-exploit-within.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEMGSXs6fCp7ImA9WxdSE0w.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-516213154683177179</id><published>2008-05-20T19:26:00.002Z</published><updated>2008-05-20T19:40:28.514Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-05-20T19:40:28.514Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="neosploit" /><title>Neosploit development update</title><content type="html">For the past month or so we have been observing more activity in Neosploit's development.  Exploits are being removed then added and new ones introduced.  To be fair in relation to the previous post we can now confirm that Adobe exploit IS being used by this toolkit.&lt;br /&gt;&lt;br /&gt;Another interesting change is less obvious and not so important to Incident Responders but more so for Intrusion Detection folks.  The main Javascript deobfuscation function has seen some changes recently.  So, those of you who depend on IDS to detect the script should probably review their traffic, honeypots, hids, etc... for new changes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-516213154683177179?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/fUR8z_Nnxh8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/516213154683177179/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=516213154683177179" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/516213154683177179?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/516213154683177179?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/fUR8z_Nnxh8/neosploit-development-update.html" title="Neosploit development update" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2008/05/neosploit-development-update.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0EASXYzeSp7ImA9WxdTFkg.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-4551741957487005100</id><published>2008-05-13T04:23:00.004Z</published><updated>2008-05-13T05:14:08.881Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-05-13T05:14:08.881Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="neosploit" /><title>Neosploit update and changes</title><content type="html">Some interesting changes we have observed:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt; - URL scheme changed&lt;br /&gt; - Javascript deobfuscation updated&lt;br /&gt; - Vulnerabilities exploited changed&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;Javascript deobfuscation code has changed a bit.  Previously, to get to the actual exploit code one had to go through two decryption stages, this time an additional stage is added to the very first layer.  This additional layer does not make a request out to the server.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;Basically, upon first visit to the Neosploit site a browser gets one big obfuscated Javascript page.  It executes the decryption function which results in another obfuscated javascript layer.  This second layer decrypts itself and then runs real javascript of the first stage.  This stage adds some encoded parameters to the URL for the second stage.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;URL scheme for requests to exploits and binaries has been updated.  It appears that a full structure is passed as a parameter to the main script.  This struct is hex encoded as a string and uses various flags and variables to track victims and statistics.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;Javascript decryption function utilizes the "arguments.callee" trick to convert itself into an uppercase string and use offsets within this string to decrypt the payload.  This is the main deobfuscation characteristic of Neosploit.  Several changes have been made previously which break down the methods into seperate variables instead of using them directly.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;An interesting addition has been included recently, which appends Neosploit's web address to the decoding offset string.  Thus, to successfully decrypt the payload the original full address of the script must be known.  Also, at the exploit stage there's a function which sets a unique cookie ("ID") with a specific value for a given exploit.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;span style="font-style:italic;"&gt;Stage 1&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;First stage is the initial visit (iframe, redirect, ...) to Neosploit page.  At this point a structure is created based on public variables such as the User Agent string and IP address.  Then the server returns obfuscated Javascript page, which is dynamically generated with random variables, and contains the first part of the URL for the next stage.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;span style="font-style:italic;"&gt;Stage 2&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;This stage is obfuscated with two layers and then attempts to identify the victim's Service Pack level, and system's language then builds a request string with these parameters to get the second stage.  This request URL has a specific argument to the main script.  First part is added by the server upon initial visit and consists of various hashed parameters then SP level and language string is appended.&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;span style="font-style:italic;"&gt;Stage 3&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;Deobfuscation yields the exploit code for the following vulnerabilities (in exploit order):&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt; - &lt;span style="font-weight:bold;"&gt;CVE-2006-0003&lt;/span&gt; ; MS06-014 ; MDAC (BD96C556-65A3-11D0-983A-00C04FC29E36)&lt;br /&gt; - &lt;span style="font-weight:bold;"&gt;CVE-2006-5820&lt;/span&gt; ; "Sb.SuperBuddy.LinkSBIcons()" ; Cookie ID = 9&lt;br /&gt; - &lt;span style="font-weight:bold;"&gt;CVE-2007-5779&lt;/span&gt; ; "GomWebCtrl.GomManager.1.OpenURL()" ; Cookie ID = 13&lt;br /&gt; - &lt;span style="font-weight:bold;"&gt;CVE-2008-1472&lt;/span&gt; ; CA BrightStor ArcServe Backup AddColumn() (BF6EFFF3-4558-4C4C-ADAF-A87891C5F3A3) ; Cookie ID = 21&lt;br /&gt; - &lt;span style="font-weight:bold;"&gt;CVE-????-????&lt;/span&gt; ; "QuickTime.QuickTime.4" ; Cookie ID = 6&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;PS: &lt;a href="https://forums.symantec.com/syment/blog/article?message.uid=320843"&gt;Symantec&lt;/a&gt; stated that recent Adobe vulnerability was being exploited by this toolkit, however the instance which was analyzed for this post did not include any Adobe exploits.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-4551741957487005100?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/XnLDZwustQA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/4551741957487005100/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=4551741957487005100" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/4551741957487005100?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/4551741957487005100?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/XnLDZwustQA/neosploit-update-and-changes.html" title="Neosploit update and changes" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2008/05/neosploit-update-and-changes.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkYFQnwzeSp7ImA9WxdTFkk.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-7055752480836205525</id><published>2008-03-15T02:43:00.013Z</published><updated>2008-05-13T02:01:53.281Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-05-13T02:01:53.281Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="neosploit" /><title>Neosploit update</title><content type="html">For a while now we have been observing version 2.0.15 used by many malicious sites.  However, it seems that recently there's been an update to the toolkit.&lt;br /&gt;&lt;br /&gt;There were two exploits added, initially reported by &lt;a href="http://explabs.blogspot.com/2008/02/new-neo-now.html"&gt;Exploit Prevention Labs&lt;/a&gt;, and some slight changes in the decryption function of the obfuscated Javascript.  Also, minor changes in the URL scheme used to track statistics on visitors and victims.&lt;br /&gt;&lt;br /&gt;Here are the vulnerabilities exploited as of today:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"Internet Explorer"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt; &lt;span style="font-weight:bold;"&gt;(3)&lt;/span&gt; - &lt;span style="font-style:italic;"&gt;cve-2007-0018&lt;/span&gt; "NCTAudioFile2" ActiveX control "SetFormatLikeSample()" method (77829F14-D911-40FF-A2F0-D11DB8D6D0BC)&lt;br /&gt; &lt;span style="font-weight:bold;"&gt;(7)&lt;/span&gt; - &lt;span style="font-style:italic;"&gt;cve-2006-4777&lt;/span&gt; "DirectAnimatioin.PathControl" ActiveX control "KeyFrame()" method (D7A7D7C3-D47F-11D0-89D3-00A0C90833E6)&lt;br /&gt; &lt;span style="font-weight:bold;"&gt;(9)&lt;/span&gt; - &lt;span style="font-style:italic;"&gt;cve-2006-5820&lt;/span&gt; "Sb.SuperBuddy.LinkSBIcons()"&lt;br /&gt; &lt;span style="font-weight:bold;"&gt;(12)&lt;/span&gt; - &lt;span style="font-style:italic;"&gt;cve-2006-3730&lt;/span&gt; "WebViewFolderIcon.WebViewFolderIcon.1.setSlice()"&lt;br /&gt; &lt;span style="font-weight:bold;"&gt;(13)&lt;/span&gt; - &lt;span style="font-style:italic;"&gt;cve-2007-5779&lt;/span&gt; "GomWebCtrl.GomManager.1.OpenURL()"&lt;br /&gt; &lt;span style="font-weight:bold;"&gt;(19)&lt;/span&gt; - &lt;span style="font-style:italic;"&gt;cve-2008-0624&lt;/span&gt; Yahoo! Music Jukebox DataGrid ActiveX control AddButton() method (5F810AFC-BB5F-4416-BE63-E01DD117BD6C)&lt;br /&gt; &lt;span style="font-weight:bold;"&gt;(20)&lt;/span&gt; - &lt;span style="font-style:italic;"&gt;cve-2007-2222&lt;/span&gt; MS07-033 Microsoft Speech API ActiveVoice control (EEE78591-FE22-11D0-8BEF-0060081841DE)&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"Firefox"&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;&lt;span style="font-weight:bold;"&gt;cve-2006-0005&lt;/span&gt;&lt;/span&gt; Windows Media Player Plugin MS06-006&lt;br /&gt;&lt;span style="font-style:italic;"&gt;&lt;span style="font-weight:bold;"&gt;cve-2007-0015&lt;/span&gt;&lt;/span&gt; QuickTime RTSP Response Header Content-Type&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-7055752480836205525?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/pMt1Yb69MoA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/7055752480836205525/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=7055752480836205525" title="4 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/7055752480836205525?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/7055752480836205525?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/pMt1Yb69MoA/neosploit-update.html" title="Neosploit update" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><thr:total>4</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2008/03/neosploit-update.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak8DR3w-fip7ImA9WxZXGUk.&quot;"><id>tag:blogger.com,1999:blog-7283008945264267434.post-8384557169981869530</id><published>2008-03-08T03:50:00.005Z</published><updated>2008-03-08T04:01:16.256Z</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-03-08T04:01:16.256Z</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="malware" /><category scheme="http://www.blogger.com/atom/ns#" term="adpack" /><title>Adpack analysis</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ZNYfmKAdUSo/R9INqalZQKI/AAAAAAAAAOQ/erVHbVZ6erQ/s1600-h/a.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_ZNYfmKAdUSo/R9INqalZQKI/AAAAAAAAAOQ/erVHbVZ6erQ/s320/a.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5175213944143954082" /&gt;&lt;/a&gt;&lt;br /&gt;Adpack stands for "Advanced Pack" and was written in PHP on the server side along with SQL backend for tracking and statistics.&lt;br /&gt;Analysis was performed on a toolkit which had file timestamps of September 2007.&lt;br /&gt;The pack attempts to exploit the following vulnerabilities:&lt;br /&gt; - MS06-014 (MDAC)&lt;br /&gt; - Java ByteVerify&lt;br /&gt; - Opera 9 (?)&lt;br /&gt;&lt;br /&gt;URLs as seen by the victim:&lt;blockquote&gt;&lt;br /&gt; &lt;span style="font-weight:bold;"&gt;"index.php"&lt;/span&gt; - collects statistics and serves the obfuscated Javascript.&lt;br /&gt; &lt;span style="font-weight:bold;"&gt;"index.php?java"&lt;/span&gt; - returns HTML page to load Java applet.&lt;br /&gt; &lt;span style="font-weight:bold;"&gt;"java.php"&lt;/span&gt; - returns a JAR archive for the Java exploit.&lt;br /&gt; &lt;span style="font-weight:bold;"&gt;"load.php"&lt;/span&gt; - returns an Executable file (default: "load.exe").&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Details on server side execution of PHP:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"load.php"&lt;/span&gt;&lt;br /&gt; &lt;blockquote&gt;Inserts victim's IP address into the database under the compormised table ("ips2").&lt;br /&gt; If unable to INSERT then returns plain text string: "ai siktir vee?".&lt;br /&gt; Increment the "loads" count.&lt;br /&gt; Return an executable file ("load.exe") with MIME type: "application/octet-stream".&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"index.php"&lt;/span&gt;&lt;br /&gt; &lt;blockquote&gt;Check if configured to serve the Java exploit and URL parameter contains a request for it, and&lt;br /&gt; IP address already visited this script (to get the redirect), and IP address has not been exploited,&lt;br /&gt; only then serve the &amp;ltapplet&gt; tag.&lt;br /&gt; &lt;br /&gt; Insert IP address into the database under visitors table ("ips").  If IP address already exists the update will fail.&lt;br /&gt; Failure to INSERT will abort the script and return the same string as for "load.php".&lt;br /&gt; &lt;br /&gt; Increment statistical counts for Browser, Operating System, and Country.&lt;br /&gt; The following browser strings are tracked:&lt;br /&gt;  "MSIE 7", "MSIE", "Nav", "Lynx", "Bot", "Firefox", "Mozilla".&lt;br /&gt; Following is a list of Operating System strings which is tracked:&lt;br /&gt;  "Windows 95", "Windows NT 4", "Win 9x 4.9", "Windows 98", "Windows NT 5.0", "Linux",&lt;br /&gt;  "SV1" (as WinXPsp2), "Windows NT 5.1", "Windows NT 5.2", "FreeBSD", "Gentoo", "Ubuntu"&lt;br /&gt; &lt;br /&gt; Uses the GeoIP library to identify visitor's country.&lt;br /&gt; Stores the Referer's FQDN field and increments its count.&lt;br /&gt; &lt;br /&gt; Passes control (include) to "exploits.php" which serves the Javascript.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"exploits.php"&lt;/span&gt;&lt;br /&gt; &lt;blockquote&gt;Defines the Javascript's obfuscation code and the URL used to obtain the Executable file.&lt;br /&gt; By default URL resides in the same directory as the "index.php" script and will be called&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"load.php"&lt;/span&gt;&lt;br /&gt; &lt;blockquote&gt;Javascript obfuscation function is a simple static single byte XOR routine.&lt;br /&gt; &lt;br /&gt; If Java exploit was requested then serve the HTML applet tag with JAR archive as "java.php",&lt;br /&gt; class to run "BaaaaBaa.class" and a single parameter "url" with value of the URL for the Executable.&lt;br /&gt; &lt;br /&gt; OR, if browser is "MSIE" then return the obfuscated HTML page.&lt;br /&gt; HEAD will contain a 3 second redirection timeout to the Java exploit URL ("index.php?java").&lt;br /&gt; Rest is Javascript code for the MDAC (MS06-014) exploit.&lt;br /&gt; &lt;br /&gt; OR, if browser is "Opera" serve an Opera exploit which will reconfigure a preference for the&lt;br /&gt; TN3270 handler to execute the downloaded Executable file.&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"mysql.php"&lt;/span&gt;&lt;br /&gt; &lt;blockquote&gt;Connects to the database as defined in "config.php".&lt;br /&gt; Contains definitions for various functions which are used by the toolkit.&lt;br /&gt; :) - contains a blind SQL Injection vulnerability.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"install.php"&lt;/span&gt;&lt;br /&gt; &lt;blockquote&gt;Creates the necessary tables in the database.  If tables already exists they will be dropped.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"config.php"&lt;/span&gt;&lt;br /&gt; &lt;blockquote&gt;Contains the Database configuration and credentials, pack's admin credentials, name of the Executable file.&lt;br /&gt; Boolean toggle for Java exploit.&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;"admin.php"&lt;/span&gt;&lt;br /&gt; &lt;blockquote&gt;Admin page which displays various statistics and allows to reset statistics.&lt;br /&gt; Requires authentication.&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7283008945264267434-8384557169981869530?l=dxp2532.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/dxp/~4/gbDejeUOOc8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://dxp2532.blogspot.com/feeds/8384557169981869530/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=7283008945264267434&amp;postID=8384557169981869530" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/8384557169981869530?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7283008945264267434/posts/default/8384557169981869530?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/dxp/~3/gbDejeUOOc8/adpack-analysis.html" title="Adpack analysis" /><author><name>-=[ dxp ]=-</name><uri>http://www.blogger.com/profile/12269886678074883395</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://1.bp.blogspot.com/_ZNYfmKAdUSo/TAqPHaIPw_I/AAAAAAAAA2o/mWIN6WXn-0w/S220/avatar3.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_ZNYfmKAdUSo/R9INqalZQKI/AAAAAAAAAOQ/erVHbVZ6erQ/s72-c/a.png" height="72" width="72" /><thr:total>2</thr:total><feedburner:origLink>http://dxp2532.blogspot.com/2008/03/adpack-analysis.html</feedburner:origLink></entry></feed>

