How to make a fake matrix virus!!1

 by judeman111
matrix.bmp
This will fool anybody that you are deleting system32
 
Remove these adsRemove these ads by Signing Up

Step 1:

note.bmp
Copy and paste this into notepad:
@echo off
:start
goto start1
:start1
color 2
:start
echo Deleting C:/WINDOWS/system32
pause
goto :matrix
:matrix
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto matrix
mmcewan says: May 10, 2012. 4:45 PM
Thank you so much bro! This is awesome!!!!!!
verence says: Feb 11, 2012. 2:08 PM
Oh well, where to start...

Why do you have TWO labels ':start' ?
And why don't you use any of them?

Why is there the first GOTO to start1 (and the label start1)?
The batch would go there anyway. It's just the next command!

Why is there the first GOTO to label matrix? Same thing, the batch would go there anyway as it is just the next command!

So, the batch threatens me with deleting System32 and waits for me to press a key (PAUSE)? The only Keys I would press are Ctrl-C and abort the thing. If you want to program a pause, use the PING command (as in PING 127.0.0.1 -n <x> with <x>=number of seconds to wait plus one)

So a more lean version would be:

@echo off
color 2
echo Deleting C:/WINDOWS/system32
ping 127.0.0.1 /n 5
:matrix
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto matrix
thegeeke in reply to verenceFeb 13, 2012. 5:57 AM
Agreed. You could also use the timeout command instead of ping... I believe. (Just incase your victim doesn't have a NIC for some strange reason...) :)
verence in reply to thegeekeFeb 13, 2012. 8:54 AM
I'd prefer PING anyway, as the victim most probably will have the loopback device (a kind of fake NIC) and TIMEOUT comes only with a resource kit (or service development kit), so it is not available on any PC - at least under XP, didn't test under Vista/7
thegeeke in reply to verenceFeb 13, 2012. 12:17 PM
That's true... I forgot about the fact that it comes on a resource kit... So someone would be more likely to have a NIC. :)
Pro

Get More Out of Instructables

Already have an Account?

close

PDF Downloads
As a Pro member, you will gain access to download any Instructable in the PDF format. You also have the ability to customize your PDF download.

Upgrade to Pro today!