forked from Francesco2426/WebShook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
365 lines (353 loc) · 12.1 KB
/
Form1.cs
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
using System;
using Discord;
using Discord.Webhook;
using System.Windows.Forms;
using System.Net;
using System.IO;
using Microsoft.Toolkit.Uwp.Notifications;
using System.Threading.Tasks;
using System.Linq;
using System.Collections.Generic;
namespace Webshook
{
public partial class Form1 : MetroFramework.Forms.MetroForm
{
public string url;
int amount;
public DiscordWebhook hook = new DiscordWebhook();
public Form1()
{
InitializeComponent();
}
#region On Click Events
private void spamButton_Click(object sender, EventArgs e)
{
Spam(webhookBox.Text);
}
private void silentButton_Click(object sender, EventArgs e)
{
url = webhookBox.Text;
if (url != "")
{
Delete(url);
new ToastContentBuilder()
.AddText("Webshook")
.AddText("Webhook has been silently deleted ;)")
.Show();
}
else
{
MessageBox.Show("Put in a webhook.");
}
}
private void deleteButton_Click(object sender, EventArgs e)
{
url = webhookBox.Text;
if (url != "")
{
WebDel(url);
new ToastContentBuilder()
.AddText("Webshook")
.AddText("Webhook has been deleted ;)")
.Show();
}
else
{
MessageBox.Show("Put in a webhook.");
}
}
private void loadHooksBtn_Click(object sender, EventArgs e)
{
OpenFileDialog open = new OpenFileDialog();
open.Title = "Select the file with Webhooks";
open.Filter = "Text files | *.txt";
open.InitialDirectory = Directory.GetCurrentDirectory();
if (open.ShowDialog() == DialogResult.OK)
{
string name = open.FileName;
string[] lines = File.ReadAllLines(name);
LoadHooks(lines);
}
}
private void multiSpamBtn_Click(object sender, EventArgs e)
{
if (hookList.Items.Count <= 1)
{
MessageBox.Show("Put more than one webhook, or just use the single-hook.");
}
else
{
Parallel.ForEach(hookList.Items.Cast<string>().ToList(), hook =>
{
Spam(hook);
});
new ToastContentBuilder()
.AddText("Webshook")
.AddText("Webhooks have been spammed :)")
.Show();
}
}
private void multiSilentBtn_Click(object sender, EventArgs e)
{
if (hookList.Items.Count <= 1)
{
MessageBox.Show("Put more than one webhook, or just use the single-hook.");
}
else
{
foreach (string hook in hookList.Items)
{
try
{
Delete(hook);
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
new ToastContentBuilder()
.AddText("Webshook")
.AddText("Webhooks have been silently deleted ;)")
.Show();
}
}
private void multiDeleteBtn_Click(object sender, EventArgs e)
{
if (hookList.Items.Count <= 1)
{
MessageBox.Show("Put more than one webhook, or just use the single-hook.");
}
else
{
foreach (string hook in hookList.Items)
{
try
{
WebDel(hook);
}
catch(Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
new ToastContentBuilder()
.AddText("Webshook")
.AddText("Webhooks have been deleted ;)")
.Show();
}
}
private void resetHooks_Click(object sender, EventArgs e)
{
hookList.DataSource = null;
hookList.Items.Clear();
new ToastContentBuilder()
.AddText("Webshook")
.AddText("Webhook box has been reset!")
.Show();
}
private void embedSpamBtn_Click(object sender, EventArgs e)
{
EmbedSpam(webhookBox.Text);
}
private void embedMultiSpam_Click(object sender, EventArgs e)
{
if (hookList.Items.Count <= 1)
{
MessageBox.Show("Put more than one webhook, or just use the single-hook.");
}
else
{
Parallel.ForEach(hookList.Items.Cast<string>().ToList(), hook =>
{
EmbedSpam(hook);
});
new ToastContentBuilder()
.AddText("Webshook")
.AddText("Webhooks have been spammed :)")
.Show();
}
}
#endregion
#region Multi-Hook Check
private void LoadHooks(string[] lines)
{
List<string> valid = new List<string>();
foreach (string line in lines)
{
if (line.Contains("https://discord.com/api/webhooks/"))
{
try
{
HttpWebRequest r = (HttpWebRequest)WebRequest.Create(line);
HttpWebResponse wr = (HttpWebResponse)r.GetResponse();
StreamReader sr = new StreamReader(wr.GetResponseStream());
if (!sr.ReadToEnd().Contains("Unknown"))
{
valid.Add(line);
}
}
catch { }
}
}
hookList.DataSource = valid;
hooksLoaded.Text = $"Webhooks Loaded: {hookList.Items.Count}";
new ToastContentBuilder()
.AddText("Webshook")
.AddText("Webhooks Loaded!")
.Show();
}
#endregion
#region Delete Methods
public async void WebDel(string url)
{
hook.Url = url;
DiscordMessage message = new DiscordMessage();
message.Content = "Say goodbye to your webhook!";
message.Username = "Bye bye";
message.AvatarUrl = avatarBox.Text;
hook.Send(message);
await Task.Delay(1000);
Delete(url);
}
public string Delete(string webhook)
{
try
{
HttpWebRequest r = (HttpWebRequest)WebRequest.Create(webhook);
r.Method = "DELETE";
HttpWebResponse wr = (HttpWebResponse)r.GetResponse();
return new StreamReader(wr.GetResponseStream()).ReadToEnd();
}
catch (Exception ex)
{
if (ex.Message.Contains("Invalid"))
{
new ToastContentBuilder()
.AddText("Webshook")
.AddText("Webhook is invalid.")
.Show();
return "Invalid";
}
else if (ex.Message.Contains("404"))
{
new ToastContentBuilder()
.AddText("Webshook")
.AddText("Webhook doesn't exist.")
.Show();
return "Doesn't Exist";
}
else
{
MessageBox.Show($"Error: {ex}");
return null;
}
}
}
#endregion
#region Spam Methods
public async void Spam(string webhook)
{
DiscordWebhook hook = new DiscordWebhook();
hook.Url = webhook;
DiscordMessage message = new DiscordMessage();
message.Content = messageBox.Text;
message.Username = usernameBox.Text;
message.AvatarUrl = avatarBox.Text;
amount = int.Parse(amountBox.Text);
if (!int.TryParse(amountBox.Text, out amount))
{
MessageBox.Show("That's not a number.");
}
else
{
if (usernameBox.Text != "" || messageBox.Text != "")
{
for (int i = 0; i < amount; i++)
{
try
{
hook.Send(message);
}
catch (Exception e)
{
if (e.Message.Contains("429"))
{
if (ratelimitCheck.Checked)
{
new ToastContentBuilder()
.AddText("Webshook")
.AddText("You are being Ratelimited")
.Show();
await Task.Delay(5000);
}
}
else
{
MessageBox.Show($"Error: {e}");
}
}
}
}
else
{
MessageBox.Show("Please fill in all required fields (*)");
}
}
}
public async void EmbedSpam(string webhook)
{
DiscordMessage msg = new DiscordMessage();
hook.Url = webhook;
DiscordEmbed emb = new DiscordEmbed();
emb.Title = titleText.Text;
emb.Description = descriptionText.Text;
emb.Image = new EmbedMedia() { Url = imageBox.Text };
emb.Thumbnail = new EmbedMedia() { Url = thumbnailBox.Text };
emb.Author = new EmbedAuthor() { Name = authorBox.Text };
emb.Footer = new EmbedFooter() { Text = footerBox.Text };
msg.Embeds = new[] { emb };
amount = int.Parse(amountBox.Text);
if (!int.TryParse(amountBox.Text, out amount))
{
MessageBox.Show("That's not a number.");
}
else
{
if (titleText.Text != "" || descriptionText.Text != "" || authorBox.Text != "" || footerBox.Text != "")
{
for (int i = 0; i < amount; i++)
{
try
{
hook.Send(msg);
}
catch (Exception e)
{
if (e.Message.Contains("429"))
{
if (ratelimitCheck.Checked)
{
new ToastContentBuilder()
.AddText("Webshook")
.AddText("You are being Ratelimited")
.Show();
await Task.Delay(5000);
}
}
else
{
MessageBox.Show($"Error: {e}");
}
}
}
}
else
{
MessageBox.Show("Please fill in atleast one field.");
}
}
}
#endregion
}
}