<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Vinzenz Feenstra's WebLog</title>
	<link>http://blog.evilissimo.net</link>
	<description></description>
	<pubDate>Wed, 26 Mar 2008 22:38:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.3</generator>
	<language>en</language>
			<item>
		<title>C++ 0x Variadic Templates sooo nice :))</title>
		<link>http://blog.evilissimo.net/2008/03/27/c-0x-variadic-templates-sooo-nice/</link>
		<comments>http://blog.evilissimo.net/2008/03/27/c-0x-variadic-templates-sooo-nice/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 22:38:06 +0000</pubDate>
		<dc:creator>Vinzenz Feenstra</dc:creator>
		
	<category>News</category>
		<guid isPermaLink="false">http://blog.evilissimo.net/2008/03/27/c-0x-variadic-templates-sooo-nice/</guid>
		<description><![CDATA[C++0x feature is so nice   Here an example what can be done with it!  #include &#60;iostream&#62; #include &#60;iterator&#62; #include &#60;algorithm&#62;
 template&#60;typename&#160;IterT&#62; void&#160;fill_args(IterT it, IterT end) {}
 template&#60;typename&#160;IterT, typename&#160;T, typename&#160;&#8230;Args&#62;  void&#160;fill_args(IterT it, IterT end, T const&#160;&#38; value, Args const&#160;&#38; &#8230;args) { &#160;&#160;if(it != end) &#160;&#160;{ &#160;&#160;&#160;&#160;*it = value;  &#160;&#160;&#160;&#160;fill_args(++it, end, args&#8230;); [...]]]></description>
			<content:encoded><![CDATA[<p>C++0x feature is so nice <img src='http://blog.evilissimo.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Here an example what can be done with it! <br /><font face="monospace"> <font color="#a020f0">#include </font><font color="#ff00ff">&lt;iostream&gt;</font><br /> <font color="#a020f0">#include </font><font color="#ff00ff">&lt;iterator&gt;</font><br /> <font color="#a020f0">#include </font><font color="#ff00ff">&lt;algorithm&gt;</font></p>
<p> <font color="#0000ff">template</font>&lt;<font color="#0000ff">typename</font>&nbsp;IterT&gt;<br /> <font color="#0000ff">void</font>&nbsp;fill_args(IterT it, IterT end)<br /> {}</p>
<p> <font color="#0000ff">template</font>&lt;<font color="#0000ff">typename</font>&nbsp;IterT, <font color="#0000ff">typename</font>&nbsp;T, <font color="#0000ff">typename</font>&nbsp;&#8230;Args&gt;<br />  <font color="#0000ff">void</font>&nbsp;fill_args(IterT it, IterT end, T <font color="#0000ff">const</font>&nbsp;&amp; value, Args <font color="#0000ff">const</font>&nbsp;&amp; &#8230;args)<br /> {<br /> &nbsp;&nbsp;<font color="#a52a2a">if</font>(it != end)<br /> &nbsp;&nbsp;{<br /> &nbsp;&nbsp;&nbsp;&nbsp;*it = value;<br />  &nbsp;&nbsp;&nbsp;&nbsp;fill_args(++it, end, args&#8230;);<br /> &nbsp;&nbsp;}<br /> }</p>
<p> <font color="#0000ff">template</font>&lt; <font color="#0000ff">typename</font>&nbsp;T, <font color="#0000ff">size_t</font>&nbsp;N &gt;<br /> <font color="#0000ff">struct</font>&nbsp;fixed_vector <font color="#ff0000">//aka array</font><br />  {<br /> &nbsp;&nbsp;<font color="#0000ff">typedef</font>&nbsp;T *&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; iterator;<br /> &nbsp;&nbsp;<font color="#0000ff">typedef</font>&nbsp;T <font color="#0000ff">const</font>&nbsp;*&nbsp;&nbsp; const_iterator;<br /> &nbsp;&nbsp;<font color="#0000ff">typedef</font>&nbsp;T &amp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; reference;<br />  &nbsp;&nbsp;<font color="#0000ff">typedef</font>&nbsp;T <font color="#0000ff">const</font>&nbsp;&amp;&nbsp;&nbsp; const_reference;</p>
<p> &nbsp;&nbsp;<font color="#0000ff">template</font>&lt;<font color="#0000ff">typename</font>&nbsp;&#8230;Args&gt;<br /> &nbsp;&nbsp;fixed_vector(Args <font color="#0000ff">const</font>&nbsp;&amp; &#8230;args)<br /> &nbsp;&nbsp;{<br />  &nbsp;&nbsp;&nbsp;&nbsp;fill_args(begin(), end(), args&#8230;);<br /> &nbsp;&nbsp;}</p>
<p> &nbsp;&nbsp;reference <font color="#a52a2a">operator</font>[](<font color="#0000ff">size_t</font>&nbsp;idx)<br /> &nbsp;&nbsp;{<br /> &nbsp;&nbsp;&nbsp;&nbsp;<font color="#a52a2a">return</font>&nbsp;arr[idx];<br /> &nbsp;&nbsp;}</p>
<p> &nbsp;&nbsp;const_reference <font color="#a52a2a">operator</font>[](<font color="#0000ff">size_t</font>&nbsp;idx) <font color="#0000ff">const</font><br /> &nbsp;&nbsp;{<br /> &nbsp;&nbsp;&nbsp;&nbsp;<font color="#a52a2a">return</font>&nbsp;arr[idx];<br /> &nbsp;&nbsp;}</p>
<p> &nbsp;&nbsp;iterator begin()<br />  &nbsp;&nbsp;{ <br /> &nbsp;&nbsp;&nbsp;&nbsp;<font color="#a52a2a">return</font>&nbsp;arr + <font color="#ff00ff">0</font>; <br /> &nbsp;&nbsp;}</p>
<p> &nbsp;&nbsp;const_iterator begin() <font color="#0000ff">const</font><br /> &nbsp;&nbsp;{ <br /> &nbsp;&nbsp;&nbsp;&nbsp;<font color="#a52a2a">return</font>&nbsp;arr + <font color="#ff00ff">0</font>;<br />  &nbsp;&nbsp;}</p>
<p> &nbsp;&nbsp;iterator end()<br /> &nbsp;&nbsp;{<br /> &nbsp;&nbsp;&nbsp;&nbsp;<font color="#a52a2a">return</font>&nbsp;arr + N;<br /> &nbsp;&nbsp;}</p>
<p> &nbsp;&nbsp;const_iterator end() <font color="#0000ff">const</font><br /> &nbsp;&nbsp;{<br />  &nbsp;&nbsp;&nbsp;&nbsp;<font color="#a52a2a">return</font>&nbsp;arr + N;<br /> &nbsp;&nbsp;}</p>
<p> &nbsp;&nbsp;<font color="#0000ff">size_t</font>&nbsp;size() <font color="#0000ff">const</font><br /> &nbsp;&nbsp;{<br /> &nbsp;&nbsp;&nbsp;&nbsp;<font color="#a52a2a">return</font>&nbsp;N;<br /> &nbsp;&nbsp;}<br />  &nbsp;&nbsp;<br /> <font color="#a52a2a">private</font>:<br /> &nbsp;&nbsp;T arr[N];<br /> };</p>
<p> <font color="#0000ff">int</font>&nbsp;main()<br /> {<br /> &nbsp;&nbsp;fixed_vector&lt;<font color="#0000ff">int</font>, <font color="#ff00ff">4</font>&gt; v(<font color="#ff00ff">1</font>,<font color="#ff00ff">2</font>,<font color="#ff00ff">3</font>,<font color="#ff00ff">4</font>);<br />  &nbsp;&nbsp;std::copy(v.begin(), v.end(), std::ostream_iterator&lt;<font color="#0000ff">int</font>&gt;(std::cout, <font color="#ff00ff">&quot;, &quot;</font>));<br /> }</p>
<p> </font>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.evilissimo.net/2008/03/27/c-0x-variadic-templates-sooo-nice/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>After all that years&#8230;</title>
		<link>http://blog.evilissimo.net/2008/02/19/after-all-that-years/</link>
		<comments>http://blog.evilissimo.net/2008/02/19/after-all-that-years/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 19:05:32 +0000</pubDate>
		<dc:creator>Vinzenz Feenstra</dc:creator>
		
	<category>News</category>
		<guid isPermaLink="false">http://blog.evilissimo.net/2008/02/19/after-all-that-years/</guid>
		<description><![CDATA[I am really wondering how many users are using Visual Studio + GTKmm since there is still no real template for it. At least until today there was none. 
I finally wrote today a Visual C++ Wizard for GTKmm projects which utilizes the property pages supplied with the Development Environment of GTKmm for Windows.
You can [...]]]></description>
			<content:encoded><![CDATA[<p>I am really wondering how many users are using Visual Studio + GTKmm since there is still no real template for it. <br />At least until today there was none. </p>
<p>I finally wrote today a Visual C++ Wizard for GTKmm projects which utilizes the property pages supplied with the Development Environment of GTKmm for Windows.</p>
<p>You can find the Download for the Installer for this Template <a href="http://blog.evilissimo.net/files/downloads/VCTemplateInstaller.exe">here</a></p>
<p>It will work with Visual Studio 2005 and 2008 (tested on my machines)</p>
<p>Enjoy!</p>
<p>Regards,<br />Vinzenz <img src='http://blog.evilissimo.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.evilissimo.net/2008/02/19/after-all-that-years/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>AVG Anti-Spyware 7.5.1.43 released!</title>
		<link>http://blog.evilissimo.net/2007/06/14/avg-anti-spyware-75143-released/</link>
		<comments>http://blog.evilissimo.net/2007/06/14/avg-anti-spyware-75143-released/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 13:40:49 +0000</pubDate>
		<dc:creator>Vinzenz Feenstra</dc:creator>
		
	<category>News</category>
		<guid isPermaLink="false">http://blog.evilissimo.net/2007/06/14/avg-anti-spyware-75143-released/</guid>
		<description><![CDATA[Release Notes: 
 - Fixed inability to run in safe mode  - Fixed endless loop in full system scan on Vista  - Fixed premature ending of trial on Vista  - Fixed partial failure of report generation  - Fixed wrong behavior of tray icon for free users 
 The setup for 7.5.1.43 [...]]]></description>
			<content:encoded><![CDATA[<p>Release Notes: </p>
<p> - Fixed inability to run in safe mode <br /> - Fixed endless loop in full system scan on Vista <br /> - Fixed premature ending of trial on Vista <br /> - Fixed partial failure of report generation <br /> - Fixed wrong behavior of tray icon for free users </p>
<p> The setup for 7.5.1.43 will be available for download within in a few minutes. </p>
<p> Upgrading via program update is enabled for 7.5.1.36 users only at the moment and will be enabled for 7.5.0.50 in a few days. </p>
<p> Regards, <br /> Vinzenz
</p>
]]></content:encoded>
			<wfw:commentRSS>http://blog.evilissimo.net/2007/06/14/avg-anti-spyware-75143-released/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>AVG Anti-Spyware 7.5.1.36 released!</title>
		<link>http://blog.evilissimo.net/2007/06/05/avg-anti-spyware-75136-released/</link>
		<comments>http://blog.evilissimo.net/2007/06/05/avg-anti-spyware-75136-released/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 08:01:32 +0000</pubDate>
		<dc:creator>Vinzenz Feenstra</dc:creator>
		
	<category>News</category>
	<category>Security</category>
		<guid isPermaLink="false">http://blog.evilissimo.net/2007/06/05/avg-anti-spyware-75136-released/</guid>
		<description><![CDATA[Hi all there,
after a long silent period without any news I am proud to announce the new version of the AVG Anti-Spyware 7.5.1.36
Here a short overview about the changes in the new release:
- Windows Vista support - Support for 64-Bit editions of Windows (Windows XP 64-bit &#38; Windows Vista 64-Bit) - Better reliability + speed [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all there,</p>
<p>after a long silent period without any news I am proud to announce the new version of the AVG Anti-Spyware 7.5.1.36</p>
<p>Here a short overview about the changes in the new release:</p>
<p>- Windows Vista support <br />- Support for 64-Bit editions of Windows (Windows XP 64-bit &amp; Windows Vista 64-Bit) <br />- Better reliability + speed of updates <br />- Higher priority for paying users on update servers <br />- Fixes for many bugs (including high CPU usage + scheduler bugs) </p>
<p><font color="#ff0000"><strong>The problem with the slow/unreliable updates will not be fixed at once, it will take some time until the vast majority of the user base has switched to the new version. </strong></font></p>
<p><font color="#333399">The new version will also be released via online-update in the next days. You can either wait for the update or manually download it from: </font></p>
<p><a href="http://downloads.grisoft.cz/softw/70/filedir/inst/avgas-setup-7.5.1.36.exe">http://downloads.grisoft.cz/softw/70/filedir/inst/avgas-setup-7.5.1.36.exe</a></p>
<p><strong><font color="#339966">In any case, a system reboot is required.</font></strong></p>
<p>Regards,</p>
<p>Vinzenz Feenstra</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/Anti-Rootkit" title="See the Technorati tag page for 'Anti-Rootkit'." rel="tag">Anti-Rootkit</a>, <a href="http://technorati.com/tag/Rootkits" title="See the Technorati tag page for 'Rootkits'." rel="tag">Rootkits</a>, <a href="http://technorati.com/tag/Threats" title="See the Technorati tag page for 'Threats'." rel="tag">Threats</a>, <a href="http://technorati.com/tag/Malware" title="See the Technorati tag page for 'Malware'." rel="tag">Malware</a>, <a href="http://technorati.com/tag/Removal" title="See the Technorati tag page for 'Removal'." rel="tag">Removal</a>, <a href="http://technorati.com/tag/Anti-Spyware" title="See the Technorati tag page for 'Anti-Spyware'." rel="tag">Anti-Spyware</a>, <a href="http://technorati.com/tag/Download" title="See the Technorati tag page for 'Download'." rel="tag">Download</a>, <a href="http://technorati.com/tag/Screenshot" title="See the Technorati tag page for 'Screenshot'." rel="tag">Screenshot</a>, <a href="http://technorati.com/tag/Images" title="See the Technorati tag page for 'Images'." rel="tag">Images</a>, <a href="http://technorati.com/tag/Security" title="See the Technorati tag page for 'Security'." rel="tag">Security</a>, <a href="http://technorati.com/tag/Windows" title="See the Technorati tag page for 'Windows'." rel="tag">Windows</a>, <a href="http://technorati.com/tag/Microsoft" title="See the Technorati tag page for 'Microsoft'." rel="tag">Microsoft</a>, <a href="http://technorati.com/tag/AVG" title="See the Technorati tag page for 'AVG'." rel="tag">AVG</a>, <a href="http://technorati.com/tag/Grisoft" title="See the Technorati tag page for 'Grisoft'." rel="tag">Grisoft</a></p>]]></content:encoded>
			<wfw:commentRSS>http://blog.evilissimo.net/2007/06/05/avg-anti-spyware-75136-released/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>AVG Anti-spyware 7.5.0.47 replaces ewido anti-spyware 4.0.0.172</title>
		<link>http://blog.evilissimo.net/2006/10/02/avg-anti-spyware-75047-replaces-ewido-anti-spyware-400172/</link>
		<comments>http://blog.evilissimo.net/2006/10/02/avg-anti-spyware-75047-replaces-ewido-anti-spyware-400172/#comments</comments>
		<pubDate>Mon, 02 Oct 2006 16:00:40 +0000</pubDate>
		<dc:creator>Vinzenz Feenstra</dc:creator>
		
	<category>News</category>
		<guid isPermaLink="false">http://blog.evilissimo.net/2006/10/02/avg-anti-spyware-75047-replaces-ewido-anti-spyware-400172/</guid>
		<description><![CDATA[AVG Anti-Spyware 7.5.0.47
[quote from ewido.net:]
ewido anti-spyware 4.0 will now continue under the new product name AVG Anti-Spyware 7.5. 
AVG Anti-Spyware 7.5 contains the same ewido technology, but with some further enhanced features:
  Highly improved cleaning  Lower resource usage  Additional languages supported
[/quote]
The following languages are now supported: English, German, Czech, French, Italian, Spanish, [...]]]></description>
			<content:encoded><![CDATA[<p><font size="4"><em><strong>AVG Anti-Spyware 7.5.0.47<br /></strong></em></font></p>
<p>[quote from ewido.net:]</p>
<p>ewido anti-spyware 4.0 will now continue under the new product name <strong>AVG Anti-Spyware 7.5</strong>. </p>
<p>AVG Anti-Spyware 7.5 contains the same ewido technology, but with some further enhanced features:</p>
<p> <img vspace="1" hspace="2" src="http://www.ewido.net/images/dot.gif" alt="" /> Highly improved cleaning<br /> <img vspace="1" hspace="2" src="http://www.ewido.net/images/dot.gif" alt="" /> Lower resource usage<br /> <img vspace="1" hspace="2" src="http://www.ewido.net/images/dot.gif" alt="" /> Additional languages supported</p>
<p>[/quote]</p>
<p>The following languages are now supported: English, German, Czech, French, Italian, Spanish, Slovak, Portuguese (More languages will follow)</p>
<p>There are many bugs removed in this new version. It is highly recommended for every ewido antispyware user, to switch to the version.</p>
<p>A Screenshot of the new version:</p>
<p><img width="760" height="550" alt="AVG Anti-Spyware 7.5.0.47 Screenshot" src="/Image/avgas75047_1.png" /></p>
<p>Regards,</p>
<p>Vinzenz Feenstra
</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/Threats" title="See the Technorati tag page for 'Threats'." rel="tag">Threats</a>, <a href="http://technorati.com/tag/Malware" title="See the Technorati tag page for 'Malware'." rel="tag">Malware</a>, <a href="http://technorati.com/tag/Removal" title="See the Technorati tag page for 'Removal'." rel="tag">Removal</a>, <a href="http://technorati.com/tag/Anti-Spyware" title="See the Technorati tag page for 'Anti-Spyware'." rel="tag">Anti-Spyware</a>, <a href="http://technorati.com/tag/Download" title="See the Technorati tag page for 'Download'." rel="tag">Download</a>, <a href="http://technorati.com/tag/Screenshot" title="See the Technorati tag page for 'Screenshot'." rel="tag">Screenshot</a>, <a href="http://technorati.com/tag/Images" title="See the Technorati tag page for 'Images'." rel="tag">Images</a>, <a href="http://technorati.com/tag/Security" title="See the Technorati tag page for 'Security'." rel="tag">Security</a>, <a href="http://technorati.com/tag/Windows" title="See the Technorati tag page for 'Windows'." rel="tag">Windows</a>, <a href="http://technorati.com/tag/Microsoft" title="See the Technorati tag page for 'Microsoft'." rel="tag">Microsoft</a>, <a href="http://technorati.com/tag/AVG" title="See the Technorati tag page for 'AVG'." rel="tag">AVG</a>, <a href="http://technorati.com/tag/Grisoft" title="See the Technorati tag page for 'Grisoft'." rel="tag">Grisoft</a></p>]]></content:encoded>
			<wfw:commentRSS>http://blog.evilissimo.net/2006/10/02/avg-anti-spyware-75047-replaces-ewido-anti-spyware-400172/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>German HipHop youngster released his first Music video</title>
		<link>http://blog.evilissimo.net/2006/08/10/german-hiphop-youngster-released-his-first-music-video/</link>
		<comments>http://blog.evilissimo.net/2006/08/10/german-hiphop-youngster-released-his-first-music-video/#comments</comments>
		<pubDate>Thu, 10 Aug 2006 15:57:44 +0000</pubDate>
		<dc:creator>Vinzenz Feenstra</dc:creator>
		
	<category>News</category>
	<category>HipHop</category>
		<guid isPermaLink="false">http://blog.evilissimo.net/2006/08/10/german-hiphop-youngster-released-his-first-music-video/</guid>
		<description><![CDATA[Yesterday the 16 years old german hiphop youngster &#8216;F.R.&#8217; has released his first video &#8216;Sport&#8217;.
Feel free to download it from here and don&#8217;t forget to visit his website.
Low Quality Video (28 MB, WMV)
High Quality Video (119 MB, MPEG)
Don&#8217;t forget to buy his album &#8216;Mittelweg&#8217; which is really tight! I have it since 16th June 2006.Check [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday the 16 years old german hiphop youngster &#8216;F.R.&#8217; has released his first video &#8216;Sport&#8217;.</p>
<p>Feel free to download it from here and don&#8217;t forget to visit his website.</p>
<p><a href="http://snip-a-lot.de/downloads/files/videos/FR/FR_Sport.wmv">Low Quality Video</a> (28 MB, WMV)</p>
<p><a href="http://snip-a-lot.de/downloads/files/videos/FR/FR_Sport.mpa">High Quality Video</a> (119 MB, MPEG)</p>
<p>Don&#8217;t forget to buy his album &#8216;Mittelweg&#8217; which is really tight! I have it since 16th June 2006.<br />Check out the free tracks on his Website <a href="http://www.eff-arr.de">www.eff-arr.de</a></p>
<p>Enjoy the video!</p>
<p><embed width="428" height="350" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://www.youtube.com/v/NFZzBOfNFL4" play="true" loop="true" menu="true"></embed></p>
<p>Regards,<br />Vinzenz</p>
<p><a href="http://www.eff-arr.de"><img src="http://img143.imageshack.us/img143/3945/thems2by.jpg" alt="Homepage of F.R." /></a>
</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/F.R." title="See the Technorati tag page for 'F.R.'." rel="tag">F.R.</a>, <a href="http://technorati.com/tag/HipHop" title="See the Technorati tag page for 'HipHop'." rel="tag">HipHop</a>, <a href="http://technorati.com/tag/German" title="See the Technorati tag page for 'German'." rel="tag">German</a>, <a href="http://technorati.com/tag/Music" title="See the Technorati tag page for 'Music'." rel="tag">Music</a>, <a href="http://technorati.com/tag/Video" title="See the Technorati tag page for 'Video'." rel="tag">Video</a>, <a href="http://technorati.com/tag/MusicVideo" title="See the Technorati tag page for 'MusicVideo'." rel="tag">MusicVideo</a>, <a href="http://technorati.com/tag/Sport" title="See the Technorati tag page for 'Sport'." rel="tag">Sport</a></p>]]></content:encoded>
			<wfw:commentRSS>http://blog.evilissimo.net/2006/08/10/german-hiphop-youngster-released-his-first-music-video/feed/</wfw:commentRSS>
<enclosure url='http://snip-a-lot.de/downloads/files/videos/FR/FR_Sport.wmv' length='28424676' type='video/x-ms-wmv'/>
		</item>
		<item>
		<title>How to remove Trojan.Downloader.uj</title>
		<link>http://blog.evilissimo.net/2006/08/07/how-to-remove-trojandownloaderuj/</link>
		<comments>http://blog.evilissimo.net/2006/08/07/how-to-remove-trojandownloaderuj/#comments</comments>
		<pubDate>Mon, 07 Aug 2006 13:23:42 +0000</pubDate>
		<dc:creator>Vinzenz Feenstra</dc:creator>
		
	<category>News</category>
	<category>Downloads</category>
	<category>Articles</category>
	<category>Security</category>
	<category>Tutorials</category>
		<guid isPermaLink="false">http://blog.evilissimo.net/2006/08/07/how-to-remove-trojandownloaderuj/</guid>
		<description><![CDATA[I have previous posted about the Windows threat &#8216;Trojan.downloader.uj&#8217; and that I have build a removal help tool for it.
I think it would be best for all if I post here some removal steps for this special threat which is really tricky, since it is a trojan but uses userland rootkit techniques.
Here are the steps:

Download [...]]]></description>
			<content:encoded><![CDATA[<p>I have previous posted about the Windows threat &#8216;Trojan.downloader.uj&#8217; and that I have build a removal help tool for it.</p>
<p>I think it would be best for all if I post here some removal steps for this special threat which is really tricky, since it is a trojan but uses userland rootkit techniques.</p>
<p><u><em><strong>Here are the steps:</strong></em></u></p>
<ol>
<li>Download the file &quot;rmdlagentuj.exe&quot; from following location: <a target="_blank" href="http://fileserver.ewido.net/public.cgi?id=20845">http://fileserver.ewido.net/public.cgi?id=20845</a></li>
<li>Execute the file &quot;rmdlagentuj.exe&quot; if it was successful you will get a message dialog where you will be asked to reboot</li>
<li>Reboot your computer (Important!)</li>
<li>Execute a complete system scan with ewido anti-spyware 4.0 ( <a href="http://www.ewido.net">http://www.ewido.net</a> )</li>
</ol>
<p>Or you can try <a href="http://blog.evilissimo.net/2006/08/01/grisoft-avg-anti-rootkit-beta/">Grisoft AVG Anti-Rootkit Beta 1.0.0.13</a>, but be careful it is a beta! <br /> Thats&#8217;s all the threat should be removed now.</p>
<hr width="100%" size="2" />
<p><u><em><strong>Aliases for this threat are:</strong></em></u></p>
<table width="613" height="590" cellspacing="0" cellpadding="0" border="2" align="" summary="">
<thead>
<tr>
<td><font size="3"><em><strong>Antivirus</strong></em></font></td>
<td><font size="3"><em><strong>Alias</strong></em></font></td>
</tr>
</thead>
<tbody>
<tr>
<td>AntiVir</td>
<td class="positivo">TR/Dldr.Agent.uj.1</td>
</tr>
<tr>
<td>Authentium</td>
<td class="positivo">W32/Downloader.LTB</td>
</tr>
<tr>
<td>Avast</td>
<td class="positivo">Win32:Agent-IU</td>
</tr>
<tr>
<td>AVG</td>
<td class="positivo">Downloader.Agent.BAH</td>
</tr>
<tr>
<td>BitDefender</td>
<td class="positivo">Trojan.Downloader.FFZ</td>
</tr>
<tr>
<td>CAT-QuickHeal</td>
<td class="positivo">TrojanDownloader.Agent.uj</td>
</tr>
<tr>
<td>ClamAV</td>
<td class="positivo">Trojan.Downloader.Agent-262</td>
</tr>
<tr>
<td>DrWeb</td>
<td class="positivo">Trojan.DownLoader.4316</td>
</tr>
<tr>
<td>eTrust-InoculateIT</td>
<td class="positivo">Win32/SillyDL.51200!Trojan</td>
</tr>
<tr>
<td>eTrust-Vet</td>
<td class="positivo">Win32/Alureon.Y</td>
</tr>
<tr>
<td>Ewido</td>
<td class="positivo">Downloader.Agent.uj</td>
</tr>
<tr>
<td>Fortinet</td>
<td class="positivo">RuinDl.G!tr</td>
</tr>
<tr>
<td>F-Prot</td>
<td class="positivo">security risk named W32/Downloader.LTB</td>
</tr>
<tr>
<td>F-Prot4</td>
<td class="positivo">W32/Downloader.LTB</td>
</tr>
<tr>
<td>Ikarus</td>
<td class="positivo">Trojan-Downloader.Win32.Agent.uj</td>
</tr>
<tr>
<td>Kaspersky</td>
<td class="positivo">Trojan-Downloader.Win32.Agent.uj</td>
</tr>
<tr>
<td>McAfee</td>
<td class="positivo">Downloader-ASI</td>
</tr>
<tr>
<td>Microsoft</td>
<td class="positivo">TrojanDownloader:Win32/Agent.RR</td>
</tr>
<tr>
<td>NOD32v2</td>
<td class="positivo">a variant of Win32/Small.FB</td>
</tr>
<tr>
<td>Norman</td>
<td class="positivo">W32/DLoader.NNL</td>
</tr>
<tr>
<td>Panda</td>
<td class="positivo">Trj/Ruins.MB</td>
</tr>
<tr>
<td>Sophos</td>
<td class="positivo">Troj/RuinDl-G</td>
</tr>
<tr>
<td>Symantec</td>
<td class="positivo">Downloader</td>
</tr>
<tr>
<td>TheHacker</td>
<td class="positivo">Trojan/Downloader.Agent.uj</td>
</tr>
<tr>
<td>UNA</td>
<td class="positivo">TrojanDownloader.Win32.Agent.68D6</td>
</tr>
<tr>
<td>VBA32</td>
<td class="positivo">Trojan.DownLoader.4316</td>
</tr>
</tbody>
</table>
<p>I hope this is helpful.</p>
<p>Regards,</p>
<p>Vinzenz Feenstra
</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/Removal" title="See the Technorati tag page for 'Removal'." rel="tag">Removal</a>, <a href="http://technorati.com/tag/Steps" title="See the Technorati tag page for 'Steps'." rel="tag">Steps</a>, <a href="http://technorati.com/tag/Security" title="See the Technorati tag page for 'Security'." rel="tag">Security</a>, <a href="http://technorati.com/tag/Windows" title="See the Technorati tag page for 'Windows'." rel="tag">Windows</a>, <a href="http://technorati.com/tag/Userland" title="See the Technorati tag page for 'Userland'." rel="tag">Userland</a>, <a href="http://technorati.com/tag/Rootkit" title="See the Technorati tag page for 'Rootkit'." rel="tag">Rootkit</a>, <a href="http://technorati.com/tag/Rootkits" title="See the Technorati tag page for 'Rootkits'." rel="tag">Rootkits</a>, <a href="http://technorati.com/tag/Tutorial" title="See the Technorati tag page for 'Tutorial'." rel="tag">Tutorial</a></p>]]></content:encoded>
			<wfw:commentRSS>http://blog.evilissimo.net/2006/08/07/how-to-remove-trojandownloaderuj/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Should we be scared about future rootkits?</title>
		<link>http://blog.evilissimo.net/2006/08/05/should-we-be-scared-about-future-rootkits/</link>
		<comments>http://blog.evilissimo.net/2006/08/05/should-we-be-scared-about-future-rootkits/#comments</comments>
		<pubDate>Sat, 05 Aug 2006 09:36:54 +0000</pubDate>
		<dc:creator>Vinzenz Feenstra</dc:creator>
		
	<category>News</category>
	<category>Articles</category>
	<category>Security</category>
		<guid isPermaLink="false">http://blog.evilissimo.net/2006/08/05/should-we-be-scared-about-future-rootkits/</guid>
		<description><![CDATA[I was reading&#160; blog entry of Joanna Rutkowska, a really smart and good looking (*fg*) expert in security and rootkits from Poland, and I was really asking myself, should we be scared about rootkits in the future? To give you a short answer: Yes we should!
Ok of course such rootkit can maybe be blocked before [...]]]></description>
			<content:encoded><![CDATA[<p>I was reading&nbsp; blog entry of <a href="http://theinvisiblethings.blogspot.com/">Joanna Rutkowska</a>, a really smart and good looking (*fg*) expert in security and rootkits from Poland, and I was really asking myself, should we be scared about rootkits in the future? To give you a short answer: Yes we should!</p>
<p>Ok of course such rootkit can maybe be blocked before they&#8217;re installed or while it tries to installs itself or any other malware tries to install it. I am reading about the technology and the evolution of the knowledge in this area for a while and I need to say that it is really scary how fast the evolution moves forward.</p>
<p>Last year I was reading something about DKOM (Direct Kernel Object Manipulation), after thinking about the concept I was sure something like this is comparative easy to detect. Also hooking SSDT, IAT, EAT or using Inline Hooks (Detours) is almost harmless if you know how to get rid of it (see my previous post Trojan.Downloader.uj which is about an userland rootkit)</p>
<p>Anyway this year, only about 6 months later I read something which really scared me. joanna Rutkowska held some presentations about rootkits again and there she demonstrated a rootkit she is calling &#8216;deepdoor&#8217;. After taking a look at what she can do with this threat I was really asking myself how should you detect something like this. Ok there will be some smart guy who will be abled to detect (I am sure there will be one!). But now (ok it was already in June, but it doesn&#8217;t matter) she is writing about &#8216;Blue Pill&#8217;. Think about this: You are running VMWare on your computer and host another windows in there. This no great deal, that&#8217;s right but what would you say if somebody tells you that you&#8217;re hosting VMWare already in a virtual environment? </p>
<p>Huh? That&#8217;s really scary. And I must admit that using the name &#8216;Blue Pill&#8217; is a really good choosen name. </p>
<p>I am right in the beginning in understanding how malware works and how it can be detected and removed but if I read something like this I am really asking myself how should we prevent ourselves from such threats?</p>
<p>I hope that we will be abled to have an idea how to get a &#8216;Red Pill&#8217; for such threats and are abled to remove or at least to warn the users about such a threat.</p>
<p>Further reading about this subject you can find at:</p>
<ul>
<li><a href="http://invisiblethings.org/papers.html">http://invisiblethings.org/papers.html</a> - Rootkit Hunting vs. Compromise Detection      (<em>AKA</em> Rootkits vs. Stealth by Design Malware) - January 2006</li>
<li><a href="http://theinvisiblethings.blogspot.com/">http://theinvisiblethings.blogspot.com/</a> - There you will find the blog entry about &#8216;Blue Pill&#8217;</li>
<li><a href="http://www.eweek.com/article2/0,1895,1983037,00.asp">And an article in eWeek</a></li>
</ul>
<p>Edit: (8th August 2006) I found another really interesting blog entry about this at <a href="http://www.ryanpmanning.com/?p=56">http://www.ryanpmanning.com/?p=56</a></p>
<p>Be aware! Be scared!<br />Regards,<br />Vinzenz Feenstra
</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/Rootkits" title="See the Technorati tag page for 'Rootkits'." rel="tag">Rootkits</a>, <a href="http://technorati.com/tag/Malware" title="See the Technorati tag page for 'Malware'." rel="tag">Malware</a>, <a href="http://technorati.com/tag/Security" title="See the Technorati tag page for 'Security'." rel="tag">Security</a>, <a href="http://technorati.com/tag/Microsoft" title="See the Technorati tag page for 'Microsoft'." rel="tag">Microsoft</a>, <a href="http://technorati.com/tag/AMD" title="See the Technorati tag page for 'AMD'." rel="tag">AMD</a>, <a href="http://technorati.com/tag/Windows" title="See the Technorati tag page for 'Windows'." rel="tag">Windows</a>, <a href="http://technorati.com/tag/Detection" title="See the Technorati tag page for 'Detection'." rel="tag">Detection</a></p>]]></content:encoded>
			<wfw:commentRSS>http://blog.evilissimo.net/2006/08/05/should-we-be-scared-about-future-rootkits/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>&#8220;Extended Security Links&#8221;</title>
		<link>http://blog.evilissimo.net/2006/08/04/extended-security-links/</link>
		<comments>http://blog.evilissimo.net/2006/08/04/extended-security-links/#comments</comments>
		<pubDate>Fri, 04 Aug 2006 19:48:34 +0000</pubDate>
		<dc:creator>Vinzenz Feenstra</dc:creator>
		
	<category>News</category>
		<guid isPermaLink="false">http://blog.evilissimo.net/2006/08/04/extended-security-links/</guid>
		<description><![CDATA[Hi,
I have created a new page with a list of security links. Please find the page at 
http://blog.evilissimo.net/extended-security-links/
I would appreciate comments on it and it would be great if you have links which can be added there. I will update this page from time to time so that it will stay up-to-date. 
Regards,
Vinzenz  

Tags: [...]]]></description>
			<content:encoded><![CDATA[<p><font size="2">Hi,</p>
<p>I have created a new page with a list of security links. Please find the page at </p>
<p><a href="http://blog.evilissimo.net/extended-security-links/">http://blog.evilissimo.net/extended-security-links/</a></p>
<p>I would appreciate comments on it and it would be great if you have links which can be added there. <br />I will update this page from time to time so that it will stay up-to-date. </p>
<p>Regards,</p>
<p>Vinzenz <img src='http://blog.evilissimo.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br /></font>
</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/Security" title="See the Technorati tag page for 'Security'." rel="tag">Security</a>, <a href="http://technorati.com/tag/Links" title="See the Technorati tag page for 'Links'." rel="tag">Links</a>, <a href="http://technorati.com/tag/Communities" title="See the Technorati tag page for 'Communities'." rel="tag">Communities</a>, <a href="http://technorati.com/tag/Anti-Virus" title="See the Technorati tag page for 'Anti-Virus'." rel="tag">Anti-Virus</a>, <a href="http://technorati.com/tag/Anti-Malware" title="See the Technorati tag page for 'Anti-Malware'." rel="tag">Anti-Malware</a>, <a href="http://technorati.com/tag/Anti-Spyware" title="See the Technorati tag page for 'Anti-Spyware'." rel="tag">Anti-Spyware</a>, <a href="http://technorati.com/tag/Removal" title="See the Technorati tag page for 'Removal'." rel="tag">Removal</a>, <a href="http://technorati.com/tag/Boards" title="See the Technorati tag page for 'Boards'." rel="tag">Boards</a>, <a href="http://technorati.com/tag/Forums" title="See the Technorati tag page for 'Forums'." rel="tag">Forums</a></p>]]></content:encoded>
			<wfw:commentRSS>http://blog.evilissimo.net/2006/08/04/extended-security-links/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Grisoft AVG Anti-Rootkit Beta</title>
		<link>http://blog.evilissimo.net/2006/08/01/grisoft-avg-anti-rootkit-beta/</link>
		<comments>http://blog.evilissimo.net/2006/08/01/grisoft-avg-anti-rootkit-beta/#comments</comments>
		<pubDate>Tue, 01 Aug 2006 09:56:50 +0000</pubDate>
		<dc:creator>Vinzenz Feenstra</dc:creator>
		
	<category>News</category>
	<category>Security</category>
		<guid isPermaLink="false">http://blog.evilissimo.net/2006/08/03/grisoft-avg-anti-rootkit-beta/</guid>
		<description><![CDATA[Grisoft AVG Anti-Rootkit 1.0.0.13 Beta released
I am proud to announce that Grisoft has released the AVG Anti-Rookit Beta available at http://beta.grisoft.cz after a registration (which is for free) 
It is abled to detect and to remove a lot of rootkits. How good it is you will really know if you have a rootkit on your [...]]]></description>
			<content:encoded><![CDATA[<h3>Grisoft AVG Anti-Rootkit 1.0.0.13 Beta released</h3>
<p><em><strong>I am proud to announce that Grisoft has released the AVG Anti-Rookit Beta available at <a href="http://beta.grisoft.cz">http://beta.grisoft.cz</a> after a registration (which is for free) </p>
<p>It is abled to detect and to remove a lot of rootkits. How good it is you will really know if you have a rootkit on your system <img src='http://blog.evilissimo.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  The Screenshots below are showing the tests in a VMWare Session where I have installed the Vanquish rootkit which is available at <a href="http://rootkit.com">rootkit.com</a> </p>
<p><font color="#ff0000">I really&nbsp; warn everyone this is a&nbsp; beta software it may work but you should be careful!</font><br /></strong></em></p>
<h5 align="center"><strong>While scanning:</strong><br /></h5>
<p><span class="Title"></span><span class="Title"></span><span class="Title"><a href="http://blog.evilissimo.net/Image/avgar2.png"><img width="494" height="308" alt="" src="http://blog.evilissimo.net/Image/avgar2.png" /></a></p>
<p></span></p>
<h5 align="center">After a scan:<br /></h5>
<p><span class="Title"></span><span class="Title"></span><span class="Title"></span><span class="Title"></span><span class="Title"></span><a href="http://blog.evilissimo.net/Image/avgar4.png"><span class="Title"><img width="498" height="310" alt="" src="http://blog.evilissimo.net/Image/avgar4.png" /></span></a><span class="Title"></span><span class="Title"></span><span class="Title"></span><span class="Title"></p>
<p></span><span class="Title"></span></p>
<p><strong>Please report your test results and your opinion about it.</strong></p>
<p></p>
<p>&nbsp;</p>
<p>Regards,</p>
<p>Vinzenz </p>
<p><span class="Title"></span><span class="Title"></span>
</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/Security" title="See the Technorati tag page for 'Security'." rel="tag">Security</a>, <a href="http://technorati.com/tag/rootkit" title="See the Technorati tag page for 'rootkit'." rel="tag">rootkit</a>, <a href="http://technorati.com/tag/anti-rootkit" title="See the Technorati tag page for 'anti-rootkit'." rel="tag">anti-rootkit</a>, <a href="http://technorati.com/tag/anti-malware" title="See the Technorati tag page for 'anti-malware'." rel="tag">anti-malware</a>, <a href="http://technorati.com/tag/anti-spyware" title="See the Technorati tag page for 'anti-spyware'." rel="tag">anti-spyware</a>, <a href="http://technorati.com/tag/rootkits" title="See the Technorati tag page for 'rootkits'." rel="tag">rootkits</a>, <a href="http://technorati.com/tag/trojans" title="See the Technorati tag page for 'trojans'." rel="tag">trojans</a>, <a href="http://technorati.com/tag/" title="See the Technorati tag page for ''." rel="tag"></a></p>]]></content:encoded>
			<wfw:commentRSS>http://blog.evilissimo.net/2006/08/01/grisoft-avg-anti-rootkit-beta/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
