Posts

Showing posts from January, 2010

***How To Download Locked Photos From Orkut?***

Image
How To Download Locked Photos From Orkut? Yes it’s still possible to copy / download the photos from Orkut. Here’s a step-by-step procedure to copy the photo. 1. Login into your Orkut Account. 2. Goto your friend’s album and open the photo that you need to copy. 3. Once the photo is loaded to it’s full size just place the mouse cursor on the photo. 4. Press the left click button and drag and drop the photo onto the ADDRESS BAR (works in firefox 3.0+). Other trick can be just DRAG and DROP the PHOTO onto the current/new TAB (If you have IE 7). That’s it . 5. Now the photo gets displayed separately on your browser. 6. You can Right-Click and select the Save As option to save the photo onto your PC. The browser also displays the direct link to the photo. This link can be used to share the Orkut photos with your friends without the need to login to your Orkut account to access photos. If you want to share your photos with your friends but are afraid of getting misused on orkut, bette...

***How To Hack The Password To The Admin On Your PC***

***Hack Protect your Orkut Account***

Image
Most of the people ask me “How to hack an Orkut account” which I have already discussed in my previous post Hacking Orkut. But here I am giving you a detailed information about how to protect your Orkut accounts. As we all know most of the Google services are still in BETA. So,websites like Orkut, powered by Google is not totally secure!Several people feel proud in hacking other user’s account. You do a foolish thing, and next day your account is hacked. This is very sad indeed, but hackers are adding names to their victims list till now. How can a hacker hack my Orkut account? The answer to this question is already discussed in my previous post How to Hack Orkut. But this post is meant for providing some safety measures to prevent your Orkut account from being hacked. There is not much you have to take care of. Just follow the simple steps and never get your orkut account hacked in your life. 1. Never try to login/access your Orkut account from sites other than Orkut.com. 2. Never cli...

***Email Password Hacking***

Image
Most of the people ask me to teach the easiest way of email password hacking. In fact the most widely asked question on hacking is some or the other way related to email password hacking. Even if you have the similar question in your mind here’s the answer. First of all don’t get fooled by the so called the “easiest way to hack an email password” given on many scam sites. Here’s the scam procedure. This method is of hacking password never works. —– —— >>STEP 1- Log in to your account (yahoo,hotmail,gmail etc.) >>STEP 2- Click on Compose >>STEP 3- In the subject type exactly as follows Password Retrieval >>STEP 4- In the to address exactly type the following email address retrieve_mypass@yahoo.com (for yahoo) send_mypass@hotmail.com(for hotmail) googlepass_reset@gmail.com(for gmail) >>STEP 4- Body of the mail In the first line type your own email address and in the next line your password. NOTE: This step is the most important,so do it exactly as instructed...

***How to Trace Any IP Address***

Once you obtain this IP address it is necessary to trace it back to it’s source. So in this post I will show you how to trace any IP address back to it’s source. In fact tracing an IP address is very simple and easy than we think. There exists many websites through which you can trace any IP address back to it’s source. One of my favorite site is ip2location.com. Just go to http://www.ip2location.com/demo.aspx and enter the IP address that you want to trace in the dialog box and click on “Find Location”‘. With just a click of a button you can find the following information for any given IP address. 1. Country in which the IP is located 2. Region 3. City 4. Latitude/Longitude 5. Zip Code 6. Time Zone 7. Name of the ISP 8. Internet Speed 9. Weather Station 10. Area Code and 11. Domain name associated with the IP address.

***What are IP Addresses***

Image
An IP address (Internet Protocol address) is a unique address that certain electronic devices currently use in order to identify and communicate with each other on a computer network utilizing the Internet Protocol standard (IP)—in simpler terms, a computer address. Any participating network device—including routers, switches, computers, infrastructure servers (e.g., NTP, DNS, DHCP, SNMP, etc.), printers, Internet fax machines, and some telephones—can have its own address that is unique within the scope of the specific network. Some IP addresses are intended to be unique within the scope of the global Internet, while others need to be unique only within the scope of an enterprise. The IP address acts as a locator for one IP device to find another and interact with it. It is not intended, however, to act as an identifier that always uniquely identifies a particular device. In current practice, an IP address is less likely to be an identifier, due to technologies such as Dynamic assignme...

***Get a Call from your own Cell Phone number***

Image
Here is a trick to get a call to your cell phone from your own number. Do you think I am crazy? No, I am not……. Just try the following steps and you’ll get a call to your cell phone from your own number. 1. Just give a missed call to this number. You’ll not be charged! +41445804650 2. Wait for a few seconds and you’ll get a call to your cell phone from your own number 3. Receive the call.You’ll hear a lady voice asking for a PIN number. Just enter some rubbish number. 4. She say’s- Your PIN cannot be processed and the call disconnects.. ANOTHER TRICK Instead of giving a missed call, just continue calling. The call will not be received and will get disconnected just after a while. But now do you know what happen’s? You will get a call from the number +501 Reason behind this trick God Knows!! Just try and pass your comments. Tell me whether the second trick worked or not!!

***How to Compile C Programs***

Image
In many of my previous posts especially in the VIRUS CREATION section, I have used C as the programming language. If you’re new to C programming and find it difficult to compile the C source codes then this post is for you. Here is a step-by-step procedure to install Borland C++ compiler 5.5 and compile C programs. How to install Borland C++ compiler 1. Download Borland C++ compiler 5.5 (for Windows platform) from the following link. http://www.codegear.com/downloads/free/cppbuilder 2. After you download, run freecommandlinetools.exe. The default installation path would be C:\Borland\BCC55 How to configure Borland C++ compiler 1. After you install Borland C++ compier, create two new Text Documents 2. Open the first New Text Document.txt file and add the following two lines into it -I”c:\Borland\Bcc55\include” -L”c:\Borland\Bcc55\lib” Save changes and close the file. Now rename the file from New Text Document.txt to bcc32.cfg. 3. Open the second New Text Document (2).txt file and add th...

***A Virus Program to Disable USB Ports***

Image
In this post I will show how to create a simple virus that disables/blocks the USB ports on the computer (PC). As usual I use my favorite C programming language to create this virus. Anyone with a basic knowledge of C language should be able to understand the working of this virus program. Once this virus is executed it will immediately disable all the USB ports on the computer. As a result the you’ll will not be able to use your pen drive or any other USB peripheral on the computer. The source code for this virus is available for download. You can test this virus on your own computer without any worries since I have also given a program to re-enable all the USB ports. 1. Download the USB_Block.rar file on to your computer. 2. It contains the following 4 files. block_usb.c (source code) unblock_usb.c (source code) 3. You need to compile them before you can run it. A step-by-step procedure to compile C programs is given in my post - How to Compile C Programs. 3. Upon compilation of bloc...

***12 Tips to Maintain a Virus Free Computer***

Image
Is your computer infected with virus? Do you often get mysterious error messages? Well this is a common problem faced by almost all the computer users across the globe. There are many viruses and worms out there that could infect your computer. Some are harmless, but, they do have the capacity to do any number of nasty things, up to and including, erasing all data from your computer. However there are ways to keep viruses away from your PC. Here are the 12 tips to maintain a virus free computer. 1. Email is one of the common ways by which your computer can catch a virus. So it is always recommended to stay away from SPAM. Open only those emails that has it’s origin from a trusted source such as those which comes from your contact list. If you are using your own private email host (other than gmail, yahoo, hotmail etc.) then it is highly recommended that you use a good anti-spam software. And finally NEVER click on any links in the emails that comes from untrusted sources. 2. USB thumb/...

***How to Make Invisible Password Protected Folder***

Image
Do you want to password protect your folder? Do you want to make it invisible so that it remains unnoticed by the normal users? Well here is a way to do that. In this post I will show you how to make a password protected folder in Windows without using any additional software. Here is is step by step procedure to create a password protected folder. How to create a Password Protected Folder Step-1: Create a new folder (Right-click -> New -> Folder) and give it any name of your choice. For instance I name it as ABC. Step-2: Now in this folder place all the important files, documents or any folders that you want to password protect. Step-3: Now Right-click on this folder (ABC) and select the option Send To -> Compressed (zipped) Folder. Step-4: Now a new compressed zipped folder gets created next this folder (ABC) with the same name. Step-5: Double-click on this compressed zipped folder and you should see your original folder (ABC) here. Step-6: Now goto the File menu and select...

***How to use Google for Hacking***

Image
Google serves almost 80 percent of all search queries on the Internet, proving itself as the most popular search engine. However Google makes it possible to reach not only the publicly available information resources, but also gives access to some of the most confidential information that should never have been revealed. In this post I will show how to use Google for exploiting security vulnerabilities within websites. The following are some of the hacks that can be accomplished using Google. 1. Hacking Security Cameras There exists many security cameras used for monitoring places like parking lots, college campus, road traffic etc. which can be hacked using Google so that you can view the images captured by those cameras in real time. All you have to do is use the following search query in Google. Type in Google search box exactly as follows and hit enter inurl:”viewerframe?mode=motion” Click on any of the search results (Top 5 recommended) and you will gain access to the live camera ...

HACK: SHUTDOWN YOUR COMPUTER WITH A CELL PHONE

"HACK THE HACKER"

*** THE ETHICAL HACKER***

Image
-: The Ethical Hacker :- Most people think that hackers are computer criminals. They fail to recognise the fact that criminals and hackers are two totally different things. Media is responsible for this. Hackers in reality are actually good and extremely intelligent people who by using their knowledge in a constructive manner help organisations, companies, goverment, etc. to secure documents and secret information on the internet.

***HOW HACKERS HACK***

Image
With the click of a mouse on one computer, the screen of the laptop a few feet away flashes wildly as a flood of data flies silently across a private network cable connecting the two machines. Within a minute the laptop's file sharing password is compromised. "The computer is having a bad day," says a reporter as he watches the effect of the attack on his machine. "Packets are coming at it so fast, the firewall doesn't know what to do." Some hackers claim they can teach a monkey how to hack in a couple of hours. We asked two hackers, Syke and Optyx (at their request, we are using their hacking pseudonyms rather than their real names), to give us non-simian reporters a demonstration. What we got was a sometimes-frightening view of how easily nearly anyone's computer--at home or at work, protected or not--can be cracked by a determined hacker. But we also found out that computer users can make a hacker's job much harder by avoiding a few common mistak...

***WHAT IS HACKER/HACKING***

What Is a Hacker? The Jargon File contains a bunch of definitions of the term ‘hacker’, most having to do with technical adeptness and a delight in solving problems and overcoming limits. If you want to know how to become a hacker, though, only two are really relevant. There is a community, a shared culture, of expert programmers and networking wizards that traces its history back through decades to the first time-sharing minicomputers and the earliest ARPAnet experiments. The members of this culture originated the term ‘hacker’. Hackers built the Internet. Hackers made the Unix operating system what it is today. Hackers run Usenet. Hackers make the World Wide Web work. If you are part of this culture, if you have contributed to it and other people in it know who you are and call you a hacker, you're a hacker. The hacker mind-set is not confined to this software-hacker culture. There are people who apply the hacker attitude to other things, like electronics or music — actually, you...

HACK THE HACKER "The Xlusive SANJU"

Image
U are Born widout anything bt u die wid ur Name. So that name MUST not b a LETTER... IT MUST BE A HISTORY... "HACK THE HACKER" nd "CRACK THE CRACKER" Must b a HISTORY...