<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Freak out your Friends Using a Zip Bomb</title>
	<atom:link href="http://www.hungry-hackers.com/2009/06/freak-out-your-friends-using-a-zip-bomb.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.hungry-hackers.com/2009/06/freak-out-your-friends-using-a-zip-bomb.html</link>
	<description>Hacking is fun, If you are a &#34;Hacker&#34;!</description>
	<lastBuildDate>Tue, 30 Aug 2011 21:34:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Lance</title>
		<link>http://www.hungry-hackers.com/2009/06/freak-out-your-friends-using-a-zip-bomb.html/comment-page-1#comment-13263</link>
		<dc:creator>Lance</dc:creator>
		<pubDate>Thu, 28 Apr 2011 08:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.hungry-hackers.com/?p=710#comment-13263</guid>
		<description>Ok, I&#039;m totally new to this but, heck, i really want to learn to understand and perform stuff like this. Any tips on how to get started?</description>
		<content:encoded><![CDATA[<p>Ok, I&#8217;m totally new to this but, heck, i really want to learn to understand and perform stuff like this. Any tips on how to get started?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Crocodile</title>
		<link>http://www.hungry-hackers.com/2009/06/freak-out-your-friends-using-a-zip-bomb.html/comment-page-1#comment-12042</link>
		<dc:creator>Crocodile</dc:creator>
		<pubDate>Fri, 31 Dec 2010 05:44:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.hungry-hackers.com/?p=710#comment-12042</guid>
		<description>Just to let you know, Alt+255 does NOT (and should not) give a NULL character. Null character is 0x00 (0) and not 0xFF (255)

For 0x00 you can use a hex editor and then do all those copying steps (in Notepad++ since it displays null characters as &#039;NUL&#039;) or just open an EXE using Notepad++ and copy a NUL byte from it and Ctrl+V into an empty text file until you obtain a suitable length.</description>
		<content:encoded><![CDATA[<p>Just to let you know, Alt+255 does NOT (and should not) give a NULL character. Null character is 0&#215;00 (0) and not 0xFF (255)</p>
<p>For 0&#215;00 you can use a hex editor and then do all those copying steps (in Notepad++ since it displays null characters as &#8216;NUL&#8217;) or just open an EXE using Notepad++ and copy a NUL byte from it and Ctrl+V into an empty text file until you obtain a suitable length.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: artist</title>
		<link>http://www.hungry-hackers.com/2009/06/freak-out-your-friends-using-a-zip-bomb.html/comment-page-1#comment-9576</link>
		<dc:creator>artist</dc:creator>
		<pubDate>Sat, 16 Oct 2010 19:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.hungry-hackers.com/?p=710#comment-9576</guid>
		<description>in above example:

include iostream.h and fstream.h as header files.</description>
		<content:encoded><![CDATA[<p>in above example:</p>
<p>include iostream.h and fstream.h as header files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: artist</title>
		<link>http://www.hungry-hackers.com/2009/06/freak-out-your-friends-using-a-zip-bomb.html/comment-page-1#comment-9575</link>
		<dc:creator>artist</dc:creator>
		<pubDate>Sat, 16 Oct 2010 19:46:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.hungry-hackers.com/?p=710#comment-9575</guid>
		<description>nice post!!!
for automation and ease u can use following c++ code for creating as many text files as u want with random names  
note : for loop of 50000 will not create 50,000 files it will only create 5-6 thousand files or it may depend upon ur processor speed
feel free 2 inc. the number from 50,000 to anything,
may take 20-25 min


//////////////////copy from here////////////////////////////
#include
#include
using namespace std;
int main()
{	
	char CharValue=char(0);
	// For creating the text file names a.txt
	ofstream a_file(&quot;a.txt&quot;,ios::app);
	for( int i=0;i&lt;1000;i++)
	{
 		a_file&lt;&lt;CharValue;
	}
	a_file.close();	
	//Copy a.txt into 100 new file whose name is generated by   //random number  
	cout&lt;&lt;&quot;Creating bomb :&quot;&lt;&lt;&quot;\n&quot;;
	for(long j=0;j&lt;500000;j++)
	{
	std::system(&quot;copy a.txt %random%.txt&quot;);		
	cout&lt;&lt;&quot;file no : &quot;&lt;&lt;j;	
	}	
	cin.get();
	return 0;
}

///////created by 9religion4indian@gmail.com////////////</description>
		<content:encoded><![CDATA[<p>nice post!!!<br />
for automation and ease u can use following c++ code for creating as many text files as u want with random names<br />
note : for loop of 50000 will not create 50,000 files it will only create 5-6 thousand files or it may depend upon ur processor speed<br />
feel free 2 inc. the number from 50,000 to anything,<br />
may take 20-25 min</p>
<p>//////////////////copy from here////////////////////////////<br />
#include<br />
#include<br />
using namespace std;<br />
int main()<br />
{<br />
	char CharValue=char(0);<br />
	// For creating the text file names a.txt<br />
	ofstream a_file(&#8220;a.txt&#8221;,ios::app);<br />
	for( int i=0;i&lt;1000;i++)<br />
	{<br />
 		a_file&lt;&lt;CharValue;<br />
	}<br />
	a_file.close();<br />
	//Copy a.txt into 100 new file whose name is generated by   //random number<br />
	cout&lt;&lt;&quot;Creating bomb :&quot;&lt;&lt;&quot;\n&quot;;<br />
	for(long j=0;j&lt;500000;j++)<br />
	{<br />
	std::system(&quot;copy a.txt %random%.txt&quot;);<br />
	cout&lt;&lt;&quot;file no : &quot;&lt;&lt;j;<br />
	}<br />
	cin.get();<br />
	return 0;<br />
}</p>
<p>///////created by <a href="mailto:9religion4indian@gmail.com">9religion4indian@gmail.com</a>////////////</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fred</title>
		<link>http://www.hungry-hackers.com/2009/06/freak-out-your-friends-using-a-zip-bomb.html/comment-page-1#comment-8606</link>
		<dc:creator>fred</dc:creator>
		<pubDate>Thu, 22 Jul 2010 23:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.hungry-hackers.com/?p=710#comment-8606</guid>
		<description>nice 

 am a fresher and want to be a good hacker. pls will you guide me as a mentor into the world of hackers. pls   
num+2347064464016</description>
		<content:encoded><![CDATA[<p>nice </p>
<p> am a fresher and want to be a good hacker. pls will you guide me as a mentor into the world of hackers. pls<br />
num+2347064464016</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allstarx</title>
		<link>http://www.hungry-hackers.com/2009/06/freak-out-your-friends-using-a-zip-bomb.html/comment-page-1#comment-8216</link>
		<dc:creator>Allstarx</dc:creator>
		<pubDate>Sun, 20 Jun 2010 11:47:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.hungry-hackers.com/?p=710#comment-8216</guid>
		<description>if u know to operate cmd then only u can make it....</description>
		<content:encoded><![CDATA[<p>if u know to operate cmd then only u can make it&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bamchi</title>
		<link>http://www.hungry-hackers.com/2009/06/freak-out-your-friends-using-a-zip-bomb.html/comment-page-1#comment-7200</link>
		<dc:creator>Bamchi</dc:creator>
		<pubDate>Sat, 13 Feb 2010 13:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.hungry-hackers.com/?p=710#comment-7200</guid>
		<description>you need to hold down the Alt key and type 255.... an invisible character will be pasted.... copy and paste this character many times.... then close the document... duplicate that document so you have a.txt and b.text and then open dos promt and type

 &quot;copy a.txt+b.txt &quot;

regards</description>
		<content:encoded><![CDATA[<p>you need to hold down the Alt key and type 255&#8230;. an invisible character will be pasted&#8230;. copy and paste this character many times&#8230;. then close the document&#8230; duplicate that document so you have a.txt and b.text and then open dos promt and type</p>
<p> &#8220;copy a.txt+b.txt &#8221;</p>
<p>regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lokesh</title>
		<link>http://www.hungry-hackers.com/2009/06/freak-out-your-friends-using-a-zip-bomb.html/comment-page-1#comment-4268</link>
		<dc:creator>lokesh</dc:creator>
		<pubDate>Sun, 21 Jun 2009 15:20:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.hungry-hackers.com/?p=710#comment-4268</guid>
		<description>hiii..
# Open and type the null character (alt + 255) in it.
# Now press Ctrl + A then Ctrl + V a couple times to make some null bytes.

nothing is happening while typing alt+255
and by second step too.

and while typing this in command prompt:copy /b *.txt b.txt
where is a.txt in this.

and malware is showing in the given 42kb txt file.</description>
		<content:encoded><![CDATA[<p>hiii..<br />
# Open and type the null character (alt + 255) in it.<br />
# Now press Ctrl + A then Ctrl + V a couple times to make some null bytes.</p>
<p>nothing is happening while typing alt+255<br />
and by second step too.</p>
<p>and while typing this in command prompt:copy /b *.txt b.txt<br />
where is a.txt in this.</p>
<p>and malware is showing in the given 42kb txt file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mamad</title>
		<link>http://www.hungry-hackers.com/2009/06/freak-out-your-friends-using-a-zip-bomb.html/comment-page-1#comment-4260</link>
		<dc:creator>mamad</dc:creator>
		<pubDate>Sun, 21 Jun 2009 03:28:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.hungry-hackers.com/?p=710#comment-4260</guid>
		<description>thank you my friend...</description>
		<content:encoded><![CDATA[<p>thank you my friend&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>


<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 483/502 objects using disk: basic

Served from: hungry-hackers.com @ 2012-02-13 02:04:40 -->
