-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
251 lines (221 loc) · 15.7 KB
/
Program.cs
File metadata and controls
251 lines (221 loc) · 15.7 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
using System;
using System.Threading;
using System.Net;
using System.Diagnostics;
using System.IO;
using Newtonsoft.Json.Linq;
namespace Console_App_Test_1
{
class Program
{
static void Main(string[] args)
{
static void White(string message)
{
Console.ForegroundColor = ConsoleColor.White;
Console.Write(message);
Console.ResetColor();
}
static void Red(string message)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.Write(message);
Console.ResetColor();
}
Console.Title = $"Logged In As - {Environment.UserName} | Spoofed Servers - 362 | API Count - 53";
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine($"//Welcome To The First Console App \"Booter\" My Homie G Gangsta Slamma Dawg\r\n//Version - 1.0");
Console.Write("\rUsername: " + Environment.UserName + "\r\n");
Red("\rPassword: **********\r\n");
Console.Write("\r\n");
Console.Write("\r\n");
Red(" ██╗ ██╗ █████╗ ███╗ ███╗██╗ \r\n");
Console.Write(" ██║ ██╔╝██╔══██╗████╗ ████║██║ \r\n");
Red(" █████╔╝ ███████║██╔████╔██║██║ \r\n");
Console.Write(" ██╔═██╗ ██╔══██║██║╚██╔╝██║██║ \r\n");
Red(" ██║ ██╗██║ ██║██║ ╚═╝ ██║██║ \r\n");
Console.Write(" ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ \r\n");
Red(" Type help for a list of commands! \r\n");
Console.Write("\r\n");
do
{
Console.Write($"\r\n{Environment.UserName}@exe:~# ");
Console.ResetColor();
string cmd = Console.ReadLine();
Console.ForegroundColor = ConsoleColor.Red;
if (cmd.Equals("attack", StringComparison.OrdinalIgnoreCase))
{
Console.Write("\r\n ╔═════╦═══════════════════╦══════════════════════════════════════════════════╦═══════════════╦═════╗\r\n");
Red(" ║ UwU ║ Methods ║ With Examples, Description & Methods ║ By Surtains. ║ UwU ║\r\n");
Console.Write(" ╠═════╩════╦══════════════╩════════════════╦═════════════════════════════════╩═══════════════╩═════╣\r\n");
Red(" ║ xmas ║ xmas 1.1.1.1 5 dport=53 ║ XMAS - Basic Mix-Xmas Flood To Target ║\r\n");
Console.Write(" ║ ack ║ ack 1.1.1.1 5 dport=20 ║ ACK - ACK Flood To Target ║\r\n");
Red(" ║ greip ║ greip 1.1.1.1 5 dport=PORT ║ GREIP - GRE IP Flood To Targets ║\r\n");
Console.Write(" ║ dns ║ dns 1.1.1.1 5 dport=PORT ║ DNS - DNS Resolver Flood Using The Targets Domain ║\r\n");
Red(" ║ syn ║ syn 1.1.1.1 5 dport=PORT ║ SYN - SYN Flood To Target ║\r\n");
Console.Write(" ║ stomp ║ stom 1.1.1.1 5 dport=PORT ║ STOMP - STOMP Flood To Target ║\r\n");
Red(" ║ udpplain ║ udpplain 1.1.1.1 5 dport=PORT ║ UDPPLAIN - UDP Flood With Less Options. ║\r\n");
Console.Write(" ║ std ║ std 1.1.1.1 5 dport=PORT ║ STD - STD Flood To Target ║\r\n");
Red(" ║ udp ║ udp 1.1.1.1 5 dport=PORT ║ UDP - Basic UDP Flood To Target ║\r\n");
Console.Write(" ║ vse ║ vse 1.1.1.1 5 dport=PORT ║ VSE - Valve Source Engine specific Flood To Target ║\r\n");
Red(" ╠════════╦═════════════════════════════════╩════╦═════════════════════════════════════════╦════════╣\r\n");
Console.Write(" ║ Rawr. ║ Example: METHOD IP TIME dport=PORT ║ Example: udp 66.66.75.107 60 dport=80 ║ Rawr. ║\r\n");
Red(" ╚════════╩══════════════════════════════════════╩═════════════════════════════════════════╩════════╝\r\n");
}
else if (cmd.Equals("exit", StringComparison.OrdinalIgnoreCase))
{
System.Threading.Thread.Sleep(1000);
Console.WriteLine("Bye! :c");
System.Threading.Thread.Sleep(1000);
Console.WriteLine("3...");
System.Threading.Thread.Sleep(1000);
Console.WriteLine("2..");
System.Threading.Thread.Sleep(1000);
Console.WriteLine("1.");
System.Threading.Thread.Sleep(1000);
Console.WriteLine("Now Exiting...");
System.Threading.Thread.Sleep(1000);
Environment.Exit(0);
}
if (cmd.Equals("help", StringComparison.OrdinalIgnoreCase))
{
Console.Write("\r\n ╔═══════════════════════════════════╗ \r\n");
Red(" ║ tools - Shows Tools ║ \r\n");
Console.Write(" ║ attack - Shows Attack Methods ║ \r\n");
Red(" ║ ports - Shows Helpful ports ║ \r\n");
Console.Write(" ║ isp - Shows ISP Vulns ║ \r\n");
Red(" ╚═══════════════════════════════════╝ \r\n");
}
if (cmd.Equals("clear", StringComparison.OrdinalIgnoreCase))
{
Console.Clear();
Console.Write("\r\n");
Console.Write("\r\n");
Red(" ██╗ ██╗ █████╗ ███╗ ███╗██╗ \r\n");
Console.Write(" ██║ ██╔╝██╔══██╗████╗ ████║██║ \r\n");
Red(" █████╔╝ ███████║██╔████╔██║██║ \r\n");
Console.Write(" ██╔═██╗ ██╔══██║██║╚██╔╝██║██║ \r\n");
Red(" ██║ ██╗██║ ██║██║ ╚═╝ ██║██║ \r\n");
Console.Write(" ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ \r\n");
Red(" Type help for a list of commands! \r\n");
Console.Write("\r\n");
}
if (cmd.Equals("ping", StringComparison.OrdinalIgnoreCase))
{
Console.Write("\r\nIPv4@exe~# ");
string ip = Console.ReadLine();
new Process
{
StartInfo =
{
UseShellExecute = false,
FileName = "ping.exe",
Arguments = ip + " -t"
}
}.Start();
}
if (cmd.Equals("portscan", StringComparison.OrdinalIgnoreCase))
{
Console.Write("\r\nIPv4@exe~# ");
string ip = Console.ReadLine();
WebClient wc = new WebClient { };
string portscan = wc.DownloadString("https://api.hackertarget.com/nmap/?q=" + ip);
if (portscan == "Error enter single IP or Host only on Free Scan")
{
Console.Write("\r\nInvalid Host!\r\n");
}
else
{
Console.Write($"\r\n{portscan}\r\n");
}
}
if (cmd.Equals("subnetcalc", StringComparison.OrdinalIgnoreCase))
{
Console.Write("\r\nIPv4@exe~# ");
string ip = Console.ReadLine();
WebClient wc = new WebClient { };
string subnet = wc.DownloadString($"https://api.hackertarget.com/subnetcalc/?q={ip}");
if (subnet == "error check your api query")
{
Console.Write("\r\nInvalid Host\r\n");
}
else
{
Console.Write($"\r\n{subnet}\r\n");
}
}
if (cmd.Equals("tools", StringComparison.OrdinalIgnoreCase))
{
Console.Write("\r\n ╔═════╦═════════════════╦═══════════════╦═════╗\r\n");
Red(" ║ UwU ║ Tools ║ By Surtains. ║ UwU ║\r\n");
Console.Write(" ║═════╩═════════════════╬═══════════════╩═════║\r\n");
Red(" ║ ping ║ Pings An IPv4 ║\r\n");
Console.Write(" ║ iplookup ║ IP Lookup ║\r\n");
Red(" ║ portscan ║ Portscans IP ║\r\n");
Console.Write(" ║ subnetcalc ║ Calculates A Subnet ║\r\n");
Red(" ╚═══════════════════════╩═════════════════════╝\r\n");
}
if (cmd.Equals("ports", StringComparison.OrdinalIgnoreCase))
{
White("\r\n ╔═══════════════════════════════════╗ \r\n");
Red(" ║ Layer 7 Ports ║ \r\n");
Console.Write(" ║ 80 - HTTP Sites ║ \r\n");
Red(" ║ 443 - HTTPS Sites ║ \r\n");
Console.Write(" ║ 53 - DNS ║ \r\n");
Red(" ║ Game Ports ║ \r\n");
Console.Write(" ║ 3074 - Xbox ║ \r\n");
Red(" ║ 9307 - Playstation ║ \r\n");
Console.Write(" ║ 25565 - Minecraft ║ \r\n");
Red(" ║ 5060 - RTP ║ \r\n");
Console.Write(" ║ VPS / Server Ports ║ \r\n");
Red(" ║ 22 - SSH ║ \r\n");
Console.Write(" ║ 23 - Telnet ║ \r\n");
Red(" ║ 21 - SFTP ║ \r\n");
Console.Write(" ║ 69 - SFTP ║ \r\n");
Red(" ║ 25 - SMTP ║ \r\n");
Console.Write(" ║ ISP Vulns - Type isp ║ \r\n");
White(" ╚═══════════════════════════════════╝ \r\n");
}
if (cmd.Equals("isp", StringComparison.OrdinalIgnoreCase))
{
Console.Write("\r\n ╔═══════════════════════════════════╗ \r\n");
Red(" ║ UK ISP PORTS ║ \r\n");
Console.Write(" ║ 19 - Sky ║ \r\n");
Red(" ║ 19 - BT ║ \r\n");
Console.Write(" ║ 111 - Virgin Media ║ \r\n");
Red(" ║ USA ISP PORTS ║ \r\n");
Console.Write(" ║ 53 or 19 - AT&T ║ \r\n");
Red(" ║ 111 - CenturyLink ║ \r\n");
Console.Write(" ║ 19 - Charter ║ \r\n");
Red(" ║ 111 or 19 - Comcast Cable ║ \r\n");
Console.Write(" ║ 111 - Cox Communications ║ \r\n");
Red(" ║ 53 or 19 - Spectrum ║ \r\n");
Console.Write(" ║ CANADA ISP PORTS ║ \r\n");
Red(" ║ 19 - Bell Aliant ║ \r\n");
Console.Write(" ║ 111 - Bell Canada ║ \r\n");
Red(" ║ 111 - Rogers Cable ║ \r\n");
Console.Write(" ║ 123 - Videotron Ltee ║ \r\n");
Red(" ╚═══════════════════════════════════╝ \r\n");
}
if (cmd.Equals("iplookup", StringComparison.OrdinalIgnoreCase))
{
Console.Write("\r\nHost@exe~# ");
string Host = Console.ReadLine();
WebClient wc = new WebClient { };
string lookup = wc.DownloadString($"http://ip-api.com/json/{Host}?fields=16989721");
if (lookup == Host)
{
Console.Write("Invalid Host!");
}
else
{
JObject trace = JObject.Parse(lookup);
string final = $"IP - {trace["query"]}\r\nISP - {trace["isp"]}\r\nOrganization - {trace["org"]}\r\nAS - {trace["as"]}\r\nReverse DNS/Hostname - {trace["reverse"]}\r\nCity - {trace["city"]}\r\nRegion/State - {trace["regionName"]}\r\nCountry - {trace["country"]}\r\nMobile? - {trace["mobile"]}\r\nProxy/VPN? - {trace["proxy"]}\r\nHosting? - {trace["hosting"]}";
Console.Write($"\r\n{final}\r\n");
}
}
}
while (true);
}
}
}