Advertisement
Guest User

chutiye t0ufeer@n.c ka ip changer soft ka source code

a guest
Aug 3rd, 2015
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.69 KB | None | 0 0
  1. using agsXMPP;
  2. using agsXMPP.protocol.client;
  3. using agsXMPP.Xml.Dom;
  4. using singleidcaptcha.Properties;
  5. using System;
  6. using System.ComponentModel;
  7. using System.Diagnostics;
  8. using System.Drawing;
  9. using System.Windows.Forms;
  10.  
  11. namespace singleidcaptcha
  12. {
  13. public class Form1 : Form
  14. {
  15. private XmppClientConnection romy;
  16.  
  17. private XmppClientConnection tofy;
  18.  
  19. private Random random = new Random();
  20.  
  21. private IContainer components = null;
  22.  
  23. private Button button1;
  24.  
  25. private Button button2;
  26.  
  27. private Button button3;
  28.  
  29. private Button button4;
  30.  
  31. private PictureBox pictureBox1;
  32.  
  33. private TextBox textBox1;
  34.  
  35. private TextBox textBox3;
  36.  
  37. private PictureBox pictureBox2;
  38.  
  39. private GroupBox groupBox2;
  40.  
  41. private Button button6;
  42.  
  43. private TextBox textBox4;
  44.  
  45. private GroupBox groupBox3;
  46.  
  47. private TextBox username;
  48.  
  49. private TextBox password;
  50.  
  51. private GroupBox groupBox4;
  52.  
  53. private TextBox textBox9;
  54.  
  55. private TextBox textBox8;
  56.  
  57. private TextBox textBox7;
  58.  
  59. private TextBox textBox6;
  60.  
  61. private GroupBox groupBox5;
  62.  
  63. private TextBox textBox18;
  64.  
  65. private TextBox textBox19;
  66.  
  67. private TextBox textBox20;
  68.  
  69. private TextBox textBox21;
  70.  
  71. private GroupBox groupBox6;
  72.  
  73. private TextBox roomname;
  74.  
  75. private GroupBox groupBox7;
  76.  
  77. private GroupBox groupBox8;
  78.  
  79. private TextBox captcha;
  80.  
  81. private NumericUpDown numericUpDown1;
  82.  
  83. private Label label5;
  84.  
  85. private Label label6;
  86.  
  87. private Label label7;
  88.  
  89. private Label label8;
  90.  
  91. private TextBox textBox2;
  92.  
  93. private TextBox textBox5;
  94.  
  95. private TextBox textBox10;
  96.  
  97. private GroupBox groupBox9;
  98.  
  99. private WebBrowser webBrowser1;
  100.  
  101. private Button button7;
  102.  
  103. private Button button8;
  104.  
  105. private Label label1;
  106.  
  107. private Label label2;
  108.  
  109. private PictureBox pictureBox3;
  110.  
  111. private Label label3;
  112.  
  113. private Label label4;
  114.  
  115. public Form1()
  116. {
  117. this.InitializeComponent();
  118. }
  119.  
  120. private void button1_Click(object sender, EventArgs e)
  121. {
  122. this.romy = new XmppClientConnection
  123. {
  124. Server = "nimbuzz.com",
  125. ConnectServer = "o.nimbuzz.com",
  126. Port = 5222
  127. };
  128. this.romy.Open(this.username.Text, this.password.Text, "Nimbuzz_Symbian" + this.random.Next(0, 999999));
  129. this.romy.OnLogin += new ObjectHandler(this.Login);
  130. this.romy.OnAuthError += new XmppElementHandler(this.failed);
  131. this.romy.OnClose += new ObjectHandler(this.dc);
  132. this.romy.OnMessage += new MessageHandler(this.OnMessage);
  133. Random random = new Random();
  134. this.tofy = new XmppClientConnection
  135. {
  136. Server = "nimbuzz.com",
  137. ConnectServer = "o.nimbuzz.com",
  138. Port = 5222
  139. };
  140. this.tofy.Open(this.textBox1.Text, this.password.Text, "Nimbuzz_Symbian" + random.Next(0, 999999));
  141. this.tofy.OnLogin += new ObjectHandler(this.Login2);
  142. this.tofy.OnAuthError += new XmppElementHandler(this.failed2);
  143. this.tofy.OnClose += new ObjectHandler(this.dc2);
  144. this.tofy.OnMessage += new MessageHandler(this.OnMessage2);
  145. }
  146.  
  147. private void Login(object sender)
  148. {
  149. if (base.InvokeRequired)
  150. {
  151. base.BeginInvoke(new ObjectHandler(this.Login), new object[]
  152. {
  153. sender
  154. });
  155. }
  156. else
  157. {
  158. this.username.BackColor = Color.Green;
  159. }
  160. }
  161.  
  162. private void failed(object sender, Element e)
  163. {
  164. if (base.InvokeRequired)
  165. {
  166. base.BeginInvoke(new XmppElementHandler(this.failed), new object[]
  167. {
  168. sender,
  169. e
  170. });
  171. }
  172. else
  173. {
  174. this.username.BackColor = Color.Red;
  175. }
  176. }
  177.  
  178. private void dc(object sender)
  179. {
  180. if (base.InvokeRequired)
  181. {
  182. base.BeginInvoke(new ObjectHandler(this.dc), new object[]
  183. {
  184. sender
  185. });
  186. }
  187. else
  188. {
  189. this.username.BackColor = Color.Yellow;
  190. }
  191. }
  192.  
  193. private void OnMessage(object sender, agsXMPP.protocol.client.Message msg)
  194. {
  195. if (base.InvokeRequired)
  196. {
  197. base.BeginInvoke(new MessageHandler(this.OnMessage), new object[]
  198. {
  199. sender,
  200. msg
  201. });
  202. }
  203. else if (msg.Type == MessageType.groupchat)
  204. {
  205. if (msg.From.Resource == "admin")
  206. {
  207. this.pictureBox1.Load(msg.Body.Replace("Enter the right answer to start chatting. ", ""));
  208. }
  209. }
  210. }
  211.  
  212. private void Login2(object sender)
  213. {
  214. if (base.InvokeRequired)
  215. {
  216. base.BeginInvoke(new ObjectHandler(this.Login2), new object[]
  217. {
  218. sender
  219. });
  220. }
  221. else
  222. {
  223. this.textBox1.BackColor = Color.Green;
  224. }
  225. }
  226.  
  227. private void failed2(object sender, Element e)
  228. {
  229. if (base.InvokeRequired)
  230. {
  231. base.BeginInvoke(new XmppElementHandler(this.failed2), new object[]
  232. {
  233. sender,
  234. e
  235. });
  236. }
  237. else
  238. {
  239. this.textBox1.BackColor = Color.Red;
  240. this.password.BackColor = Color.Red;
  241. }
  242. }
  243.  
  244. private void dc2(object sender)
  245. {
  246. if (base.InvokeRequired)
  247. {
  248. base.BeginInvoke(new ObjectHandler(this.dc2), new object[]
  249. {
  250. sender
  251. });
  252. }
  253. else
  254. {
  255. this.textBox1.ForeColor = Color.Yellow;
  256. }
  257. }
  258.  
  259. private void OnMessage2(object sender, agsXMPP.protocol.client.Message msg)
  260. {
  261. if (base.InvokeRequired)
  262. {
  263. base.BeginInvoke(new MessageHandler(this.OnMessage2), new object[]
  264. {
  265. sender,
  266. msg
  267. });
  268. }
  269. else if (msg.Type == MessageType.groupchat)
  270. {
  271. if (msg.From.Resource == "admin")
  272. {
  273. this.pictureBox2.Load(msg.Body.Replace("Enter the right answer to start chatting. ", ""));
  274. }
  275. }
  276. }
  277.  
  278. private void button3_Click(object sender, EventArgs e)
  279. {
  280. this.romy.Send(string.Concat(new string[]
  281. {
  282. "<presence to='",
  283. this.roomname.Text,
  284. "@conference.nimbuzz.com/",
  285. this.username.Text,
  286. "'></presence>"
  287. }));
  288. this.tofy.Send(string.Concat(new string[]
  289. {
  290. "<presence to='",
  291. this.roomname.Text,
  292. "@conference.nimbuzz.com/",
  293. this.textBox1.Text,
  294. "'></presence>"
  295. }));
  296. }
  297.  
  298. private void button4_Click(object sender, EventArgs e)
  299. {
  300. this.romy.Send(string.Concat(new string[]
  301. {
  302. "<message to='",
  303. this.roomname.Text,
  304. "@conference.nimbuzz.com' type='groupchat'><body>",
  305. this.captcha.Text,
  306. "</body></message>'"
  307. }));
  308. this.tofy.Send(string.Concat(new string[]
  309. {
  310. "<message to='",
  311. this.roomname.Text,
  312. "@conference.nimbuzz.com' type='groupchat'><body>",
  313. this.textBox3.Text,
  314. "</body></message>'"
  315. }));
  316. for (int i = 1; i <= 2; i++)
  317. {
  318. this.romy.Send(string.Concat(new string[]
  319. {
  320. "<message to='",
  321. this.roomname.Text,
  322. "@conference.nimbuzz.com' type='groupchat'><body>",
  323. this.textBox6.Text,
  324. "</body></message>'"
  325. }));
  326. this.romy.Send(string.Concat(new string[]
  327. {
  328. "<message to='",
  329. this.roomname.Text,
  330. "@conference.nimbuzz.com' type='groupchat'><body>",
  331. this.textBox7.Text,
  332. "</body></message>'"
  333. }));
  334. this.romy.Send(string.Concat(new string[]
  335. {
  336. "<message to='",
  337. this.roomname.Text,
  338. "@conference.nimbuzz.com' type='groupchat'><body>",
  339. this.textBox8.Text,
  340. "</body></message>'"
  341. }));
  342. this.romy.Send(string.Concat(new string[]
  343. {
  344. "<message to='",
  345. this.roomname.Text,
  346. "@conference.nimbuzz.com' type='groupchat'><body>",
  347. this.textBox9.Text,
  348. "</body></message>'"
  349. }));
  350. this.romy.Send(string.Concat(new string[]
  351. {
  352. "<message to='",
  353. this.roomname.Text,
  354. "@conference.nimbuzz.com' type='groupchat'><body>",
  355. this.textBox10.Text,
  356. "</body></message>'"
  357. }));
  358. this.romy.Send(string.Concat(new string[]
  359. {
  360. "<message to='",
  361. this.roomname.Text,
  362. "@conference.nimbuzz.com' type='groupchat'><body>",
  363. this.textBox18.Text,
  364. "</body></message>'"
  365. }));
  366. this.romy.Send(string.Concat(new string[]
  367. {
  368. "<message to='",
  369. this.roomname.Text,
  370. "@conference.nimbuzz.com' type='groupchat'><body>",
  371. this.textBox21.Text,
  372. "</body></message>'"
  373. }));
  374. this.romy.Send(string.Concat(new string[]
  375. {
  376. "<message to='",
  377. this.roomname.Text,
  378. "@conference.nimbuzz.com' type='groupchat'><body>",
  379. this.textBox19.Text,
  380. "</body></message>'"
  381. }));
  382. this.romy.Send(string.Concat(new string[]
  383. {
  384. "<message to='",
  385. this.roomname.Text,
  386. "@conference.nimbuzz.com' type='groupchat'><body>",
  387. this.textBox20.Text,
  388. "</body></message>'"
  389. }));
  390. this.romy.Send(string.Concat(new string[]
  391. {
  392. "<message to='",
  393. this.roomname.Text,
  394. "@conference.nimbuzz.com' type='groupchat'><body>",
  395. this.textBox5.Text,
  396. "</body></message>'"
  397. }));
  398. this.romy.Send(string.Concat(new string[]
  399. {
  400. "<message to='",
  401. this.roomname.Text,
  402. "@conference.nimbuzz.com' type='groupchat'><body>",
  403. this.textBox6.Text,
  404. "</body></message>'"
  405. }));
  406. this.romy.Send(string.Concat(new string[]
  407. {
  408. "<message to='",
  409. this.roomname.Text,
  410. "@conference.nimbuzz.com' type='groupchat'><body>",
  411. this.textBox20.Text,
  412. "</body></message>'"
  413. }));
  414. }
  415. this.romy.Send(string.Concat(new string[]
  416. {
  417. "<presence type='unavailable' to='",
  418. this.roomname.Text,
  419. "@conference.nimbuzz.com/",
  420. this.username.Text,
  421. "'></presence>"
  422. }));
  423. for (int j = 1; j <= 2; j++)
  424. {
  425. this.tofy.Send(string.Concat(new string[]
  426. {
  427. "<message to='",
  428. this.roomname.Text,
  429. "@conference.nimbuzz.com' type='groupchat'><body>",
  430. this.textBox5.Text,
  431. "</body></message>'"
  432. }));
  433. this.tofy.Send(string.Concat(new string[]
  434. {
  435. "<message to='",
  436. this.roomname.Text,
  437. "@conference.nimbuzz.com' type='groupchat'><body>",
  438. this.textBox6.Text,
  439. "</body></message>'"
  440. }));
  441. this.tofy.Send(string.Concat(new string[]
  442. {
  443. "<message to='",
  444. this.roomname.Text,
  445. "@conference.nimbuzz.com' type='groupchat'><body>",
  446. this.textBox7.Text,
  447. "</body></message>'"
  448. }));
  449. this.tofy.Send(string.Concat(new string[]
  450. {
  451. "<message to='",
  452. this.roomname.Text,
  453. "@conference.nimbuzz.com' type='groupchat'><body>",
  454. this.textBox8.Text,
  455. "</body></message>'"
  456. }));
  457. this.tofy.Send(string.Concat(new string[]
  458. {
  459. "<message to='",
  460. this.roomname.Text,
  461. "@conference.nimbuzz.com' type='groupchat'><body>",
  462. this.textBox9.Text,
  463. "</body></message>'"
  464. }));
  465. this.tofy.Send(string.Concat(new string[]
  466. {
  467. "<message to='",
  468. this.roomname.Text,
  469. "@conference.nimbuzz.com' type='groupchat'><body>",
  470. this.textBox19.Text,
  471. "</body></message>'"
  472. }));
  473. this.tofy.Send(string.Concat(new string[]
  474. {
  475. "<message to='",
  476. this.roomname.Text,
  477. "@conference.nimbuzz.com' type='groupchat'><body>",
  478. this.textBox20.Text,
  479. "</body></message>'"
  480. }));
  481. this.tofy.Send(string.Concat(new string[]
  482. {
  483. "<message to='",
  484. this.roomname.Text,
  485. "@conference.nimbuzz.com' type='groupchat'><body>",
  486. this.textBox21.Text,
  487. "</body></message>'"
  488. }));
  489. this.tofy.Send(string.Concat(new string[]
  490. {
  491. "<message to='",
  492. this.roomname.Text,
  493. "@conference.nimbuzz.com' type='groupchat'><body>",
  494. this.textBox18.Text,
  495. "</body></message>'"
  496. }));
  497. this.tofy.Send(string.Concat(new string[]
  498. {
  499. "<message to='",
  500. this.roomname.Text,
  501. "@conference.nimbuzz.com' type='groupchat'><body>",
  502. this.textBox10.Text,
  503. "</body></message>'"
  504. }));
  505. }
  506. this.tofy.Send(string.Concat(new string[]
  507. {
  508. "<presence type='unavailable' to='",
  509. this.roomname.Text,
  510. "@conference.nimbuzz.com/",
  511. this.textBox1.Text,
  512. "'></presence>"
  513. }));
  514. this.webBrowser1.Navigate("http://127.0.0.1:895/config/?action=confirm_disconnect&afd=1436687838&afc=D872EAAEA7100B2DE33E61F919A3DF68");
  515. this.webBrowser1.Navigate("http://127.0.0.1:895/config/?action=connect&lang=eng&afd=1436688540&afc=616B7FA30557A19AFAFF795EB5156946");
  516. }
  517.  
  518. private void Form1_Load(object sender, EventArgs e)
  519. {
  520. MessageBox.Show("KBZ TEAM Room DeStroyer v2.0 Coded By th0ufeer@nimbuzz.com\n\n\nThanx For Using Our Tools\nvisit www.keralabuzz.com For Our Latest Tools");
  521. Process.Start("http://www.keralabuzz.com/");
  522. }
  523.  
  524. private void button6_Click(object sender, EventArgs e)
  525. {
  526. string[] array = this.textBox4.Text.Split(new char[]
  527. {
  528. '#'
  529. });
  530. this.username.Text = array[0];
  531. this.textBox1.Text = array[1];
  532. this.textBox4.Text = null;
  533. for (int i = 2; i <= array.GetUpperBound(0); i++)
  534. {
  535. this.textBox4.Text = this.textBox4.Text + array[i] + "#";
  536. }
  537. }
  538.  
  539. private void button5_Click(object sender, EventArgs e)
  540. {
  541. base.Dispose();
  542. }
  543.  
  544. private void label1_Click(object sender, EventArgs e)
  545. {
  546. }
  547.  
  548. private void button2_Click(object sender, EventArgs e)
  549. {
  550. this.tofy.Close();
  551. this.romy.Close();
  552. }
  553.  
  554. private void label1_Click_1(object sender, EventArgs e)
  555. {
  556. }
  557.  
  558. private void button7_Click(object sender, EventArgs e)
  559. {
  560. this.webBrowser1.Navigate("http://127.0.0.1:895/config/?action=confirm_disconnect&afd=1436687838&afc=D872EAAEA7100B2DE33E61F919A3DF68");
  561. this.webBrowser1.Navigate("http://127.0.0.1:895/config/?action=connect&lang=eng&afd=1436687838&afc=D872EAAEA7100B2DE33E61F919A3DF68");
  562. }
  563.  
  564. private void button8_Click(object sender, EventArgs e)
  565. {
  566. this.webBrowser1.Navigate("http://whatismyipaddress.com/");
  567. }
  568.  
  569. protected override void Dispose(bool disposing)
  570. {
  571. if (disposing && this.components != null)
  572. {
  573. this.components.Dispose();
  574. }
  575. base.Dispose(disposing);
  576. }
  577.  
  578. private void InitializeComponent()
  579. {
  580. ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(Form1));
  581. this.button1 = new Button();
  582. this.button2 = new Button();
  583. this.button3 = new Button();
  584. this.button4 = new Button();
  585. this.textBox1 = new TextBox();
  586. this.textBox3 = new TextBox();
  587. this.pictureBox2 = new PictureBox();
  588. this.pictureBox1 = new PictureBox();
  589. this.groupBox2 = new GroupBox();
  590. this.button6 = new Button();
  591. this.textBox4 = new TextBox();
  592. this.groupBox3 = new GroupBox();
  593. this.username = new TextBox();
  594. this.password = new TextBox();
  595. this.groupBox4 = new GroupBox();
  596. this.textBox5 = new TextBox();
  597. this.textBox9 = new TextBox();
  598. this.textBox8 = new TextBox();
  599. this.textBox7 = new TextBox();
  600. this.textBox6 = new TextBox();
  601. this.groupBox5 = new GroupBox();
  602. this.textBox10 = new TextBox();
  603. this.textBox18 = new TextBox();
  604. this.textBox19 = new TextBox();
  605. this.textBox20 = new TextBox();
  606. this.textBox21 = new TextBox();
  607. this.groupBox6 = new GroupBox();
  608. this.textBox2 = new TextBox();
  609. this.roomname = new TextBox();
  610. this.groupBox7 = new GroupBox();
  611. this.captcha = new TextBox();
  612. this.groupBox8 = new GroupBox();
  613. this.numericUpDown1 = new NumericUpDown();
  614. this.label5 = new Label();
  615. this.label6 = new Label();
  616. this.label7 = new Label();
  617. this.label8 = new Label();
  618. this.groupBox9 = new GroupBox();
  619. this.webBrowser1 = new WebBrowser();
  620. this.button7 = new Button();
  621. this.button8 = new Button();
  622. this.label1 = new Label();
  623. this.label2 = new Label();
  624. this.pictureBox3 = new PictureBox();
  625. this.label3 = new Label();
  626. this.label4 = new Label();
  627. ((ISupportInitialize)this.pictureBox2).BeginInit();
  628. ((ISupportInitialize)this.pictureBox1).BeginInit();
  629. this.groupBox2.SuspendLayout();
  630. this.groupBox3.SuspendLayout();
  631. this.groupBox4.SuspendLayout();
  632. this.groupBox5.SuspendLayout();
  633. this.groupBox6.SuspendLayout();
  634. this.groupBox7.SuspendLayout();
  635. this.groupBox8.SuspendLayout();
  636. ((ISupportInitialize)this.numericUpDown1).BeginInit();
  637. this.groupBox9.SuspendLayout();
  638. ((ISupportInitialize)this.pictureBox3).BeginInit();
  639. base.SuspendLayout();
  640. this.button1.BackColor = Color.FromArgb(192, 0, 0);
  641. this.button1.Location = new Point(6, 129);
  642. this.button1.Name = "button1";
  643. this.button1.Size = new Size(90, 34);
  644. this.button1.TabIndex = 3;
  645. this.button1.Text = "LogIn";
  646. this.button1.UseVisualStyleBackColor = false;
  647. this.button1.Click += new EventHandler(this.button1_Click);
  648. this.button2.BackColor = Color.FromArgb(192, 0, 0);
  649. this.button2.Location = new Point(112, 129);
  650. this.button2.Name = "button2";
  651. this.button2.Size = new Size(87, 34);
  652. this.button2.TabIndex = 11;
  653. this.button2.Text = "LogOut";
  654. this.button2.UseVisualStyleBackColor = false;
  655. this.button2.Click += new EventHandler(this.button2_Click);
  656. this.button3.BackColor = Color.FromArgb(192, 0, 0);
  657. this.button3.Location = new Point(6, 62);
  658. this.button3.Name = "button3";
  659. this.button3.Size = new Size(209, 39);
  660. this.button3.TabIndex = 5;
  661. this.button3.Text = "Join To Room";
  662. this.button3.UseVisualStyleBackColor = false;
  663. this.button3.Click += new EventHandler(this.button3_Click);
  664. this.button4.BackColor = Color.FromArgb(192, 0, 0);
  665. this.button4.Location = new Point(6, 51);
  666. this.button4.Name = "button4";
  667. this.button4.Size = new Size(144, 44);
  668. this.button4.TabIndex = 10;
  669. this.button4.Text = "Start Flood";
  670. this.button4.UseVisualStyleBackColor = false;
  671. this.button4.Click += new EventHandler(this.button4_Click);
  672. this.textBox1.BackColor = Color.FromArgb(255, 255, 192);
  673. this.textBox1.ForeColor = SystemColors.Desktop;
  674. this.textBox1.Location = new Point(6, 55);
  675. this.textBox1.Multiline = true;
  676. this.textBox1.Name = "textBox1";
  677. this.textBox1.Size = new Size(193, 31);
  678. this.textBox1.TabIndex = 12;
  679. this.textBox1.Text = "id2";
  680. this.textBox3.BackColor = Color.FromArgb(255, 255, 192);
  681. this.textBox3.ForeColor = SystemColors.Desktop;
  682. this.textBox3.Location = new Point(160, 80);
  683. this.textBox3.Name = "textBox3";
  684. this.textBox3.Size = new Size(154, 20);
  685. this.textBox3.TabIndex = 14;
  686. this.textBox3.Text = "captcha text 2";
  687. this.pictureBox2.BackColor = Color.FromArgb(255, 255, 192);
  688. this.pictureBox2.Location = new Point(160, 19);
  689. this.pictureBox2.Name = "pictureBox2";
  690. this.pictureBox2.Size = new Size(154, 60);
  691. this.pictureBox2.SizeMode = PictureBoxSizeMode.StretchImage;
  692. this.pictureBox2.TabIndex = 15;
  693. this.pictureBox2.TabStop = false;
  694. this.pictureBox1.BackColor = Color.FromArgb(255, 255, 192);
  695. this.pictureBox1.BackgroundImageLayout = ImageLayout.Stretch;
  696. this.pictureBox1.Location = new Point(6, 19);
  697. this.pictureBox1.Name = "pictureBox1";
  698. this.pictureBox1.Size = new Size(148, 60);
  699. this.pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
  700. this.pictureBox1.TabIndex = 8;
  701. this.pictureBox1.TabStop = false;
  702. this.groupBox2.Controls.Add(this.button6);
  703. this.groupBox2.Controls.Add(this.textBox4);
  704. this.groupBox2.Location = new Point(12, 137);
  705. this.groupBox2.Name = "groupBox2";
  706. this.groupBox2.Size = new Size(205, 187);
  707. this.groupBox2.TabIndex = 22;
  708. this.groupBox2.TabStop = false;
  709. this.groupBox2.Text = "IDS Split By {#}";
  710. this.button6.BackColor = Color.FromArgb(192, 0, 0);
  711. this.button6.Location = new Point(6, 139);
  712. this.button6.Name = "button6";
  713. this.button6.Size = new Size(193, 42);
  714. this.button6.TabIndex = 14;
  715. this.button6.Text = "Get Ids";
  716. this.button6.UseVisualStyleBackColor = false;
  717. this.button6.Click += new EventHandler(this.button6_Click);
  718. this.textBox4.BackColor = Color.FromArgb(255, 255, 192);
  719. this.textBox4.ForeColor = SystemColors.Desktop;
  720. this.textBox4.Location = new Point(6, 19);
  721. this.textBox4.Multiline = true;
  722. this.textBox4.Name = "textBox4";
  723. this.textBox4.Size = new Size(193, 114);
  724. this.textBox4.TabIndex = 13;
  725. this.textBox4.Text = "id1#id2#...";
  726. this.groupBox3.Controls.Add(this.username);
  727. this.groupBox3.Controls.Add(this.password);
  728. this.groupBox3.Controls.Add(this.textBox1);
  729. this.groupBox3.Controls.Add(this.button2);
  730. this.groupBox3.Controls.Add(this.button1);
  731. this.groupBox3.Location = new Point(12, 330);
  732. this.groupBox3.Name = "groupBox3";
  733. this.groupBox3.Size = new Size(205, 180);
  734. this.groupBox3.TabIndex = 23;
  735. this.groupBox3.TabStop = false;
  736. this.groupBox3.Text = "groupBox3";
  737. this.username.BackColor = Color.FromArgb(255, 255, 192);
  738. this.username.ForeColor = SystemColors.Desktop;
  739. this.username.Location = new Point(6, 19);
  740. this.username.Multiline = true;
  741. this.username.Name = "username";
  742. this.username.Size = new Size(193, 31);
  743. this.username.TabIndex = 14;
  744. this.username.Text = "id1";
  745. this.password.BackColor = Color.FromArgb(255, 255, 192);
  746. this.password.ForeColor = SystemColors.Desktop;
  747. this.password.Location = new Point(6, 92);
  748. this.password.Multiline = true;
  749. this.password.Name = "password";
  750. this.password.Size = new Size(193, 31);
  751. this.password.TabIndex = 13;
  752. this.password.Text = "Password";
  753. this.groupBox4.Controls.Add(this.textBox5);
  754. this.groupBox4.Controls.Add(this.textBox9);
  755. this.groupBox4.Controls.Add(this.textBox8);
  756. this.groupBox4.Controls.Add(this.textBox7);
  757. this.groupBox4.Controls.Add(this.textBox6);
  758. this.groupBox4.Location = new Point(573, 132);
  759. this.groupBox4.Name = "groupBox4";
  760. this.groupBox4.Size = new Size(486, 132);
  761. this.groupBox4.TabIndex = 24;
  762. this.groupBox4.TabStop = false;
  763. this.groupBox4.Text = "Flood Message Panel";
  764. this.textBox5.BackColor = Color.FromArgb(255, 255, 192);
  765. this.textBox5.ForeColor = SystemColors.Desktop;
  766. this.textBox5.Location = new Point(386, 16);
  767. this.textBox5.Multiline = true;
  768. this.textBox5.Name = "textBox5";
  769. this.textBox5.Size = new Size(87, 105);
  770. this.textBox5.TabIndex = 4;
  771. this.textBox5.Text = "-\r\n--\r\n---\r\n----\r\nKBZ Room Destroyer V2.0 With IP Changer\r\n th0ufeer@n.c was here :p\r\n";
  772. this.textBox5.TextAlign = HorizontalAlignment.Center;
  773. this.textBox9.BackColor = Color.FromArgb(255, 255, 192);
  774. this.textBox9.ForeColor = SystemColors.Desktop;
  775. this.textBox9.Location = new Point(292, 16);
  776. this.textBox9.Multiline = true;
  777. this.textBox9.Name = "textBox9";
  778. this.textBox9.Size = new Size(88, 105);
  779. this.textBox9.TabIndex = 3;
  780. this.textBox9.Text = "-\r\n--\r\n---\r\n----\r\nKBZ Room Destroyer V2.0 With IP Changer\r\n th0ufeer@n.c was here :x\r\n";
  781. this.textBox9.TextAlign = HorizontalAlignment.Center;
  782. this.textBox8.BackColor = Color.FromArgb(255, 255, 192);
  783. this.textBox8.ForeColor = SystemColors.Desktop;
  784. this.textBox8.Location = new Point(193, 16);
  785. this.textBox8.Multiline = true;
  786. this.textBox8.Name = "textBox8";
  787. this.textBox8.Size = new Size(93, 105);
  788. this.textBox8.TabIndex = 2;
  789. this.textBox8.Text = "-\r\n--\r\n---\r\n----\r\nKBZ Room Destroyer V2.0 With IP Changer\r\n th0ufeer@n.c was here :s\r\n";
  790. this.textBox8.TextAlign = HorizontalAlignment.Center;
  791. this.textBox7.BackColor = Color.FromArgb(255, 255, 192);
  792. this.textBox7.ForeColor = SystemColors.Desktop;
  793. this.textBox7.Location = new Point(100, 16);
  794. this.textBox7.Multiline = true;
  795. this.textBox7.Name = "textBox7";
  796. this.textBox7.Size = new Size(87, 105);
  797. this.textBox7.TabIndex = 1;
  798. this.textBox7.Text = "-\r\n--\r\n---\r\n----\r\nKBZ Room Destroyer V2.0 With IP Changer\r\n th0ufeer@n.c was here :\r\n";
  799. this.textBox7.TextAlign = HorizontalAlignment.Center;
  800. this.textBox6.BackColor = Color.FromArgb(255, 255, 192);
  801. this.textBox6.ForeColor = SystemColors.Desktop;
  802. this.textBox6.Location = new Point(6, 16);
  803. this.textBox6.Multiline = true;
  804. this.textBox6.Name = "textBox6";
  805. this.textBox6.Size = new Size(88, 105);
  806. this.textBox6.TabIndex = 0;
  807. this.textBox6.Text = "-\r\n--\r\n---\r\n----\r\nKBZ Room Destroyer V2.0 With IP Changer\r\n th0ufeer@n.c was here :d\r\n";
  808. this.textBox6.TextAlign = HorizontalAlignment.Center;
  809. this.groupBox5.Controls.Add(this.textBox10);
  810. this.groupBox5.Controls.Add(this.textBox18);
  811. this.groupBox5.Controls.Add(this.textBox19);
  812. this.groupBox5.Controls.Add(this.textBox20);
  813. this.groupBox5.Controls.Add(this.textBox21);
  814. this.groupBox5.Location = new Point(573, 270);
  815. this.groupBox5.Name = "groupBox5";
  816. this.groupBox5.Size = new Size(486, 127);
  817. this.groupBox5.TabIndex = 25;
  818. this.groupBox5.TabStop = false;
  819. this.textBox10.BackColor = Color.FromArgb(255, 255, 192);
  820. this.textBox10.ForeColor = SystemColors.Desktop;
  821. this.textBox10.Location = new Point(386, 12);
  822. this.textBox10.Multiline = true;
  823. this.textBox10.Name = "textBox10";
  824. this.textBox10.Size = new Size(87, 105);
  825. this.textBox10.TabIndex = 4;
  826. this.textBox10.Text = "-\r\n--\r\n---\r\n----\r\nKBZ Room Destroyer V2.0 With IP Changer\r\n th0ufeer@n.c was here :D\r\n";
  827. this.textBox10.TextAlign = HorizontalAlignment.Center;
  828. this.textBox18.BackColor = Color.FromArgb(255, 255, 192);
  829. this.textBox18.ForeColor = SystemColors.Desktop;
  830. this.textBox18.Location = new Point(292, 16);
  831. this.textBox18.Multiline = true;
  832. this.textBox18.Name = "textBox18";
  833. this.textBox18.Size = new Size(88, 105);
  834. this.textBox18.TabIndex = 3;
  835. this.textBox18.Text = "-\r\n--\r\n---\r\n----\r\nKBZ Room Destroyer V2.0 With IP Changer\r\n th0ufeer@n.c was here :x\r\n";
  836. this.textBox18.TextAlign = HorizontalAlignment.Center;
  837. this.textBox19.BackColor = Color.FromArgb(255, 255, 192);
  838. this.textBox19.ForeColor = SystemColors.Desktop;
  839. this.textBox19.Location = new Point(193, 16);
  840. this.textBox19.Multiline = true;
  841. this.textBox19.Name = "textBox19";
  842. this.textBox19.Size = new Size(93, 105);
  843. this.textBox19.TabIndex = 2;
  844. this.textBox19.Text = "-\r\n--\r\n---\r\n----\r\nKBZ Room Destroyer V2.0 With IP Changer\r\n th0ufeer@n.c was here :o\r\n";
  845. this.textBox19.TextAlign = HorizontalAlignment.Center;
  846. this.textBox20.BackColor = Color.FromArgb(255, 255, 192);
  847. this.textBox20.ForeColor = SystemColors.Desktop;
  848. this.textBox20.Location = new Point(100, 16);
  849. this.textBox20.Multiline = true;
  850. this.textBox20.Name = "textBox20";
  851. this.textBox20.Size = new Size(87, 105);
  852. this.textBox20.TabIndex = 1;
  853. this.textBox20.Text = "-\r\n--\r\n---\r\n----\r\nKBZ Room Destroyer V2.0 With IP Changer\r\n th0ufeer@n.c was here :(\r\n";
  854. this.textBox20.TextAlign = HorizontalAlignment.Center;
  855. this.textBox21.BackColor = Color.FromArgb(255, 255, 192);
  856. this.textBox21.ForeColor = SystemColors.Desktop;
  857. this.textBox21.Location = new Point(8, 16);
  858. this.textBox21.Multiline = true;
  859. this.textBox21.Name = "textBox21";
  860. this.textBox21.Size = new Size(86, 105);
  861. this.textBox21.TabIndex = 0;
  862. this.textBox21.Text = "-\r\n--\r\n---\r\n----\r\nKBZ Room Destroyer V2.0 With IP Changer\r\n th0ufeer@n.c was here :)\r\n";
  863. this.textBox21.TextAlign = HorizontalAlignment.Center;
  864. this.groupBox6.Controls.Add(this.textBox2);
  865. this.groupBox6.Controls.Add(this.roomname);
  866. this.groupBox6.Controls.Add(this.button3);
  867. this.groupBox6.Location = new Point(244, 137);
  868. this.groupBox6.Name = "groupBox6";
  869. this.groupBox6.Size = new Size(221, 107);
  870. this.groupBox6.TabIndex = 26;
  871. this.groupBox6.TabStop = false;
  872. this.groupBox6.Text = "Room Options";
  873. this.textBox2.BackColor = Color.FromArgb(255, 255, 192);
  874. this.textBox2.ForeColor = SystemColors.Desktop;
  875. this.textBox2.Location = new Point(169, 19);
  876. this.textBox2.Multiline = true;
  877. this.textBox2.Name = "textBox2";
  878. this.textBox2.Size = new Size(46, 31);
  879. this.textBox2.TabIndex = 16;
  880. this.textBox2.Text = "Pas";
  881. this.roomname.BackColor = Color.FromArgb(255, 255, 192);
  882. this.roomname.ForeColor = SystemColors.Desktop;
  883. this.roomname.Location = new Point(8, 19);
  884. this.roomname.Multiline = true;
  885. this.roomname.Name = "roomname";
  886. this.roomname.Size = new Size(155, 31);
  887. this.roomname.TabIndex = 15;
  888. this.roomname.Text = "Room";
  889. this.groupBox7.Controls.Add(this.captcha);
  890. this.groupBox7.Controls.Add(this.pictureBox2);
  891. this.groupBox7.Controls.Add(this.pictureBox1);
  892. this.groupBox7.Controls.Add(this.textBox3);
  893. this.groupBox7.Location = new Point(573, 403);
  894. this.groupBox7.Name = "groupBox7";
  895. this.groupBox7.Size = new Size(320, 106);
  896. this.groupBox7.TabIndex = 27;
  897. this.groupBox7.TabStop = false;
  898. this.groupBox7.Text = "Captcha Panel";
  899. this.captcha.BackColor = Color.FromArgb(255, 255, 192);
  900. this.captcha.ForeColor = SystemColors.Desktop;
  901. this.captcha.Location = new Point(6, 81);
  902. this.captcha.Name = "captcha";
  903. this.captcha.Size = new Size(148, 20);
  904. this.captcha.TabIndex = 16;
  905. this.captcha.Text = "captcha text 1";
  906. this.groupBox8.Controls.Add(this.numericUpDown1);
  907. this.groupBox8.Controls.Add(this.label5);
  908. this.groupBox8.Controls.Add(this.button4);
  909. this.groupBox8.Location = new Point(902, 403);
  910. this.groupBox8.Name = "groupBox8";
  911. this.groupBox8.Size = new Size(157, 106);
  912. this.groupBox8.TabIndex = 28;
  913. this.groupBox8.TabStop = false;
  914. this.groupBox8.Text = "Flood Manager";
  915. NumericUpDown arg_1775_0 = this.numericUpDown1;
  916. int[] array = new int[4];
  917. array[0] = 100;
  918. arg_1775_0.Increment = new decimal(array);
  919. this.numericUpDown1.Location = new Point(100, 25);
  920. NumericUpDown arg_17AB_0 = this.numericUpDown1;
  921. array = new int[4];
  922. array[0] = 800;
  923. arg_17AB_0.Maximum = new decimal(array);
  924. this.numericUpDown1.Name = "numericUpDown1";
  925. this.numericUpDown1.Size = new Size(50, 20);
  926. this.numericUpDown1.TabIndex = 12;
  927. NumericUpDown arg_1800_0 = this.numericUpDown1;
  928. array = new int[4];
  929. array[0] = 300;
  930. arg_1800_0.Value = new decimal(array);
  931. this.label5.AutoSize = true;
  932. this.label5.ForeColor = Color.Black;
  933. this.label5.Location = new Point(40, 27);
  934. this.label5.Name = "label5";
  935. this.label5.Size = new Size(38, 13);
  936. this.label5.TabIndex = 11;
  937. this.label5.Text = "Speed";
  938. this.label6.AutoSize = true;
  939. this.label6.ForeColor = Color.Black;
  940. this.label6.Location = new Point(17, 523);
  941. this.label6.Name = "label6";
  942. this.label6.Size = new Size(305, 13);
  943. this.label6.TabIndex = 29;
  944. this.label6.Text = "Designed, Developed And Exicuted By th0ufeer@nimbuzz.com";
  945. this.label7.AutoSize = true;
  946. this.label7.ForeColor = Color.Black;
  947. this.label7.Location = new Point(451, 523);
  948. this.label7.Name = "label7";
  949. this.label7.Size = new Size(220, 13);
  950. this.label7.TabIndex = 30;
  951. this.label7.Text = "Contact Me On Here, If You Found Any Bugs";
  952. this.label8.AutoSize = true;
  953. this.label8.ForeColor = Color.Black;
  954. this.label8.Location = new Point(914, 526);
  955. this.label8.Name = "label8";
  956. this.label8.Size = new Size(155, 13);
  957. this.label8.TabIndex = 31;
  958. this.label8.Text = "Thanx For Using Our Softwares";
  959. this.groupBox9.Controls.Add(this.webBrowser1);
  960. this.groupBox9.Location = new Point(244, 266);
  961. this.groupBox9.Name = "groupBox9";
  962. this.groupBox9.Size = new Size(314, 243);
  963. this.groupBox9.TabIndex = 32;
  964. this.groupBox9.TabStop = false;
  965. this.groupBox9.Text = "IP Manager And Changer Monitor";
  966. this.webBrowser1.Location = new Point(6, 16);
  967. this.webBrowser1.MinimumSize = new Size(20, 20);
  968. this.webBrowser1.Name = "webBrowser1";
  969. this.webBrowser1.Size = new Size(302, 222);
  970. this.webBrowser1.TabIndex = 0;
  971. this.webBrowser1.Url = new System.Uri("", UriKind.Relative);
  972. this.button7.BackColor = Color.FromArgb(192, 0, 0);
  973. this.button7.Location = new Point(471, 199);
  974. this.button7.Name = "button7";
  975. this.button7.Size = new Size(87, 45);
  976. this.button7.TabIndex = 33;
  977. this.button7.Text = "Change IP";
  978. this.button7.UseVisualStyleBackColor = false;
  979. this.button7.Click += new EventHandler(this.button7_Click);
  980. this.button8.BackColor = Color.FromArgb(192, 0, 0);
  981. this.button8.Location = new Point(471, 142);
  982. this.button8.Name = "button8";
  983. this.button8.Size = new Size(87, 47);
  984. this.button8.TabIndex = 34;
  985. this.button8.Text = "Show Your IP Status";
  986. this.button8.UseVisualStyleBackColor = false;
  987. this.button8.Click += new EventHandler(this.button8_Click);
  988. this.label1.AutoSize = true;
  989. this.label1.Font = new Font("Star Jedi Hollow", 50.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
  990. this.label1.ForeColor = Color.Black;
  991. this.label1.Location = new Point(94, 22);
  992. this.label1.Name = "label1";
  993. this.label1.Size = new Size(937, 107);
  994. this.label1.TabIndex = 35;
  995. this.label1.Text = "Room Destroyer V2.0";
  996. this.label1.Click += new EventHandler(this.label1_Click_1);
  997. this.label2.AutoSize = true;
  998. this.label2.Font = new Font("Lumos", 27.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
  999. this.label2.ForeColor = Color.Black;
  1000. this.label2.Location = new Point(428, -2);
  1001. this.label2.Name = "label2";
  1002. this.label2.Size = new Size(220, 54);
  1003. this.label2.TabIndex = 36;
  1004. this.label2.Text = "KBZ Team";
  1005. this.pictureBox3.Image = Resources.skull_copy_2;
  1006. this.pictureBox3.Location = new Point(12, 32);
  1007. this.pictureBox3.Name = "pictureBox3";
  1008. this.pictureBox3.Size = new Size(92, 99);
  1009. this.pictureBox3.SizeMode = PictureBoxSizeMode.Zoom;
  1010. this.pictureBox3.TabIndex = 37;
  1011. this.pictureBox3.TabStop = false;
  1012. this.label3.AutoSize = true;
  1013. this.label3.Font = new Font("Segoe UI", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
  1014. this.label3.ForeColor = Color.Black;
  1015. this.label3.Location = new Point(786, 112);
  1016. this.label3.Name = "label3";
  1017. this.label3.Size = new Size(220, 17);
  1018. this.label3.TabIndex = 38;
  1019. this.label3.Text = "Coded By th0ufeer@Nimbuzz.Com";
  1020. this.label4.AutoSize = true;
  1021. this.label4.Font = new Font("Comic Sans MS", 15.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
  1022. this.label4.ForeColor = Color.Black;
  1023. this.label4.Location = new Point(787, 22);
  1024. this.label4.Name = "label4";
  1025. this.label4.Size = new Size(219, 30);
  1026. this.label4.TabIndex = 39;
  1027. this.label4.Text = "www.keralabuzz.com";
  1028. base.AutoScaleDimensions = new SizeF(6f, 13f);
  1029. base.AutoScaleMode = AutoScaleMode.Font;
  1030. this.BackColor = Color.FromArgb(255, 255, 192);
  1031. base.ClientSize = new Size(1081, 548);
  1032. base.Controls.Add(this.label4);
  1033. base.Controls.Add(this.label3);
  1034. base.Controls.Add(this.pictureBox3);
  1035. base.Controls.Add(this.label2);
  1036. base.Controls.Add(this.label1);
  1037. base.Controls.Add(this.button8);
  1038. base.Controls.Add(this.button7);
  1039. base.Controls.Add(this.groupBox9);
  1040. base.Controls.Add(this.label8);
  1041. base.Controls.Add(this.label7);
  1042. base.Controls.Add(this.label6);
  1043. base.Controls.Add(this.groupBox8);
  1044. base.Controls.Add(this.groupBox7);
  1045. base.Controls.Add(this.groupBox6);
  1046. base.Controls.Add(this.groupBox5);
  1047. base.Controls.Add(this.groupBox4);
  1048. base.Controls.Add(this.groupBox3);
  1049. base.Controls.Add(this.groupBox2);
  1050. this.ForeColor = Color.White;
  1051. base.FormBorderStyle = FormBorderStyle.FixedSingle;
  1052. base.Icon = (Icon)componentResourceManager.GetObject("$this.Icon");
  1053. base.Name = "Form1";
  1054. this.Text = "KBZ TEAM Room DeStroyer V2.0 With IP Changer Coded By th0ufeer@Nimbuzz.Com And to7@Nimbuzz.Com [ENGLISH]";
  1055. base.Load += new EventHandler(this.Form1_Load);
  1056. ((ISupportInitialize)this.pictureBox2).EndInit();
  1057. ((ISupportInitialize)this.pictureBox1).EndInit();
  1058. this.groupBox2.ResumeLayout(false);
  1059. this.groupBox2.PerformLayout();
  1060. this.groupBox3.ResumeLayout(false);
  1061. this.groupBox3.PerformLayout();
  1062. this.groupBox4.ResumeLayout(false);
  1063. this.groupBox4.PerformLayout();
  1064. this.groupBox5.ResumeLayout(false);
  1065. this.groupBox5.PerformLayout();
  1066. this.groupBox6.ResumeLayout(false);
  1067. this.groupBox6.PerformLayout();
  1068. this.groupBox7.ResumeLayout(false);
  1069. this.groupBox7.PerformLayout();
  1070. this.groupBox8.ResumeLayout(false);
  1071. this.groupBox8.PerformLayout();
  1072. ((ISupportInitialize)this.numericUpDown1).EndInit();
  1073. this.groupBox9.ResumeLayout(false);
  1074. ((ISupportInitialize)this.pictureBox3).EndInit();
  1075. base.ResumeLayout(false);
  1076. base.PerformLayout();
  1077. }
  1078. }
  1079. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement