<?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>Php Development &#187; hacking</title>
	<atom:link href="http://www.maheshchari.com/tag/hacking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maheshchari.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 23 May 2010 05:10:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>real ip address</title>
		<link>http://www.maheshchari.com/real-ip-address/</link>
		<comments>http://www.maheshchari.com/real-ip-address/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 13:02:18 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[PHP/mysql]]></category>
		<category><![CDATA[anti spam]]></category>
		<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=226</guid>
		<description><![CDATA[A simple function to find the real IP address of the client with php
As  the internet growing as long as spamming,hacking,fishing,bots also increasing,there by normal user can easly decepted by with them. in many security application we need to find the real ip address to ban or record the ip related activities.here we use [...]]]></description>
			<content:encoded><![CDATA[<h1>A simple function to find the real IP address of the client with php</h1>
<p>As  the internet growing as long as spamming,hacking,fishing,bots also increasing,there by normal user can easly decepted by with them. in many security application we need to find the real <strong>ip address</strong> to ban or record the ip related activities.here we use small function that returns and modify the PHP global r<strong>emote address </strong>variable.</p>
<p>Usually we&#8217;ll use $_SERVER['REMOTE_ADDR'] to get clients IP address. But this doesn&#8217;t return the real IP address all time. Basically when someone using PROXY that valiable returns proxy IP the client using. So here&#8217;s a function you can use to detect real ip address of client. Here are extra Server variable which might be available to determine the exact IP address of the client’s machine in PHP, they are HTTP_CLIENT_IP and HTTP_X_FORWARDED_FOR</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> real_ip<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_X_FORWARDED_FOR'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REMOTE_ADDR'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_X_FORWARDED_FOR'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #b1b100;">elseif</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_X_REAL_IP'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REMOTE_ADDR'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'HTTP_X_REAL_IP'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">return</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REMOTE_ADDR'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=226&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/real-ip-address/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>hack password</title>
		<link>http://www.maheshchari.com/hack-password/</link>
		<comments>http://www.maheshchari.com/hack-password/#comments</comments>
		<pubDate>Wed, 27 May 2009 11:38:41 +0000</pubDate>
		<dc:creator>mahesh chari</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://www.maheshchari.com/?p=128</guid>
		<description><![CDATA[how to hack stored passwords in web browser for websites.
&#160;
Yes ,you can hack any stored password in any browser ,any web site with in five seconds.Even you don&#8217;t know any basic programming language.but it works for only stored passwords in browser only. 
  
hack stored password for Orkut ,Gmail and Google Account 
Open the [...]]]></description>
			<content:encoded><![CDATA[<h1>how to hack stored passwords in web browser for websites.</h1>
<p>&nbsp;</p>
<p>Yes ,you can <strong>hack</strong> any stored <strong>password</strong> in any browser ,any web site with in five seconds.Even you don&#8217;t know any<strong> basic programming language</strong>.but it works for only stored <strong>passwords</strong> in browser only. </p>
<p>  <a href="http://www.maheshchari.com/wp-content/uploads/2009/05/orkut.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/orkut.jpg" alt="Gmail ,Orkut Account before hack" title="Gmail ,Orkut Account before hack" width="150" height="144" class="alignleft size-full wp-image-129" /></a><a href="http://www.maheshchari.com/wp-content/uploads/2009/05/orkut-hacked-password.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/orkut-hacked-password.jpg" alt="Orkut,Gmail forma after hack" title="Orkut,Gmail forma after hack" width="150" height="144" class="alignleft size-full wp-image-130" /></a></p>
<h3>hack stored password for Orkut ,Gmail and Google Account </h3>
<p>Open the login page of the orkut that stored ,then paste the below code in URL bar or Address bar,simple you can see the password</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">javascript<span style="color: #339933;">:</span>document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Passwd'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">type</span><span style="color: #339933;">=</span><span style="color: #3366CC;">'text'</span><span style="color: #339933;">;</span>void<span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h3>hack stored password for Yahoo mail</h3>
<p><a href="http://www.maheshchari.com/wp-content/uploads/2009/05/yahoo.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/yahoo.jpg" alt="yahoo mail hack" title="yahoo mail hack" width="150" height="144" class="alignnone size-full wp-image-132" /></a><a href="http://www.maheshchari.com/wp-content/uploads/2009/05/yahoo-password-hack.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/yahoo-password-hack.jpg" alt="yahoo mail password hack" title="yahoo mail password hack" width="150" height="144" class="alignleft size-full wp-image-133" /></a></p>
<p>Open the login page of the yahoo  that stored ,then paste the below code in URL bar or Address bar,simple you can see the password
</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">javascript<span style="color: #339933;">:</span>document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'passwd'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">type</span><span style="color: #339933;">=</span><span style="color: #3366CC;">'text'</span><span style="color: #339933;">;</span>void<span style="color: #009900;">&#40;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h3>hack any web site password</h3>
<p>Yes ,again it is true you can hack any sites password,simple follow the below steps.<br />
  1.open login page of any web site that stored .<br />
  <div id="attachment_135" class="wp-caption alignleft" style="width: 160px"><a href="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hack.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hack-150x49.jpg" alt="open login page of any site that stored" title="password-hack" width="150" height="49" class="size-thumbnail wp-image-135" /></a><p class="wp-caption-text">open login page of any site that stored</p></div></p>
<p>2.Open context menu by right clicking on the page,then select <strong>view source</strong> from that you can see a new window that has code,search for<br />
  a word <strong>type=&#8221;password&#8221;</strong> ,beside you can find <strong>id</strong> also <a href="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hack-source-code.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hack-source-code-300x13.jpg" alt="password-hack-source-code" title="password-hack-source-code" width="300" height="13" class="alignleft size-medium wp-image-136" /></a><br />
  <br/><br />
  then replace with password with that id<br />
paste it in address bar of the browser,then press enter or return key on your key board. <a href="http://www.maheshchari.com/wp-content/uploads/2009/05/browser-password-hack.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/browser-password-hack-300x17.jpg" alt="browser-password-hack" title="browser-password-hack" width="300" height="17" class="alignleft size-medium wp-image-137" /></a> </p>
<p>3.Its done you can see hidden password <a href="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hacked-any-site.jpg"><img src="http://www.maheshchari.com/wp-content/uploads/2009/05/password-hacked-any-site-300x23.jpg" alt="password-hacked-any-site" title="password-hacked-any-site" width="300" height="23" class="alignleft size-medium wp-image-138" /></a><br />
  <br/>
</p>
<h3>Please note this article is informative purpose only.!!!</h3>
<h3>So don&#8217;t store your passwords on any public computer.</h3>
<img src="http://www.maheshchari.com/?ak_action=api_record_view&id=128&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.maheshchari.com/hack-password/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
