-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.cs
More file actions
307 lines (254 loc) · 8.71 KB
/
Main.cs
File metadata and controls
307 lines (254 loc) · 8.71 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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
using System;
using System.Net.NetworkInformation;
using System.Net;
using System.IO;
using System.Diagnostics;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Kool_Kat_Panel
{
public partial class Main : Form
{
public Main()
{
InitializeComponent();
}
private void thirteenButton1_Click(object sender, EventArgs e)
{
if (tbHost.Text == "Host/Domain")
{
MessageBox.Show("Enter A Host");
}
else
{
WebClient wc = new WebClient { };
string lookup = wc.DownloadString($"http://ip-api.com/json/{tbHost.Text}?fields=16989721");
if (lookup == tbHost.Text)
{
MessageBox.Show("Invalid Host!");
}
else
{
JObject trace = JObject.Parse(lookup);
string final = "IP - " + trace["query"];
MessageBox.Show(final);
}
}
}
private void thirteenButton2_Click(object sender, EventArgs e)
{
new Process
{
StartInfo =
{
UseShellExecute = false,
FileName = "ping.exe",
Arguments = tbHost.Text + " -t"
}
}.Start();
}
private void pscan_Click(object sender, EventArgs e)
{
if (tbHost.Text == "Host/Domain")
{
MessageBox.Show("Enter A Host");
}
else
{
WebClient wc = new WebClient { };
string portscan = wc.DownloadString("https://api.hackertarget.com/nmap/?q=" + tbHost.Text);
if (portscan == "Error enter single IP or Host only on Free Scan")
{
MessageBox.Show("Invalid Host!");
}
else
{
MessageBox.Show(portscan);
}
}
}
private void logInThemeContainer1_Click(object sender, EventArgs e)
{
}
private void pscan_Click_1(object sender, EventArgs e)
{
if (tbHost.Text == "Host/Domain")
{
MessageBox.Show("Enter A Host");
}
else
{
WebClient wc = new WebClient { };
string portscan = wc.DownloadString("https://api.hackertarget.com/nmap/?q=" + tbHost.Text);
if (portscan == "Error enter single IP or Host only on Free Scan")
{
MessageBox.Show("Invalid Host!");
}
else
{
logInRichTextBox1.Clear();
logInRichTextBox1.AppendText(portscan);
}
}
}
private void thirteenButton1_Click_1(object sender, EventArgs e)
{
if (tbHost.Text == "Host/Domain")
{
MessageBox.Show("Enter A Host");
}
else
{
WebClient wc = new WebClient { };
string lookup = wc.DownloadString($"http://ip-api.com/json/{tbHost.Text}?fields=16989721");
if (lookup == tbHost.Text)
{
MessageBox.Show("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"]}";
logInRichTextBox1.Clear();
logInRichTextBox1.AppendText(final);
}
}
}
private void thirteenButton2_Click_1(object sender, EventArgs e)
{
new Process
{
StartInfo =
{
UseShellExecute = false,
FileName = "ping.exe",
Arguments = tbHost.Text + " -t"
}
}.Start();
}
private void thirteenButton3_Click(object sender, EventArgs e)
{
if (tbHost.Text == "Host/Domain")
{
MessageBox.Show("Enter A Host!");
}
if (tbPort.Text == "Port")
{
MessageBox.Show("Enter A Port!");
}
else
{
new Process
{
StartInfo =
{
UseShellExecute = false,
FileName = Application.StartupPath + @"\paping.exe",
Arguments = tbHost.Text + " -p " + tbPort.Text
}
}.Start();
}
}
private void thirteenButton4_Click(object sender, EventArgs e)
{
WebClient wc = new WebClient { };
string ipv4 = wc.DownloadString($"https://api.ipify.org/?format=plain");
logInRichTextBox1.Clear();
string final = $"Your IPv4 Is - {ipv4}";
logInRichTextBox1.AppendText(final);
}
private void thirteenButton5_Click(object sender, EventArgs e)
{
WebClient wc = new WebClient { };
string ipv6 = wc.DownloadString($"https://api64.ipify.org?format=plain");
logInRichTextBox1.Clear();
string final = $"Your IPv6 Is - {ipv6}";
logInRichTextBox1.AppendText(final);
}
private void thirteenButton6_Click(object sender, EventArgs e)
{
if (tbHost.Text == "Host/Domain")
{
MessageBox.Show("Enter A Domain!");
}
else
{
WebClient wc = new WebClient { };
string dns = wc.DownloadString($"https://api.hackertarget.com/dnslookup/?q={tbHost.Text}");
if (dns == "error input invalid - enter IP or Hostname")
{
MessageBox.Show("Invalid Domain!");
}
if (dns == "try reverse dns tool for ipaddress")
{
MessageBox.Show("Use Domain, Not IP!");
}
else
{
logInRichTextBox1.Clear();
logInRichTextBox1.AppendText(dns);
}
}
}
private void thirteenButton7_Click(object sender, EventArgs e)
{
if (tbHost.Text == "Host/Domain")
{
MessageBox.Show("Enter A Host/Domain");
}
else
{
MessageBox.Show("Please Wait While We Send Packets");
WebClient wc = new WebClient { };
string tracert = wc.DownloadString($"https://api.hackertarget.com/mtr/?q={tbHost.Text}");
if (tracert == "error input invalid - enter IP or Hostname")
{
MessageBox.Show("Invalid Host/Domain");
}
else
{
logInRichTextBox1.Clear();
logInRichTextBox1.AppendText(tracert);
}
}
}
private void thirteenButton8_Click(object sender, EventArgs e)
{
if (tbHost.Text == "Host/Domain")
{
MessageBox.Show("Enter A Host");
}
else
{
WebClient wc = new WebClient { };
string subnet = wc.DownloadString($"https://api.hackertarget.com/subnetcalc/?q={tbHost.Text}");
if (subnet == "error check your api query")
{
MessageBox.Show("Invalid Host");
}
else
{
logInRichTextBox1.AppendText(subnet);
}
}
}
private void xRails_Label1_Click(object sender, EventArgs e)
{
}
private void label2_Click(object sender, EventArgs e)
{
}
private void thirteenButton8_Click_1(object sender, EventArgs e)
{
Clipboard.SetText(logInRichTextBox1.Text);
MessageBox.Show("Results Copied To Clipboard");
}
}
}