Palazienko

Untitled

Jul 22nd, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using FlatUI;
  11. using System.Net;
  12.  
  13. namespace Exploit_Template_with_WRDAPI
  14. {
  15. public partial class Form1 : Form
  16. {
  17. public Form1()
  18. {
  19. InitializeComponent();
  20. }
  21.  
  22. private void Form1_Load(object sender, EventArgs e)
  23. {
  24.  
  25. }
  26.  
  27. private void FlatButton1_Click(object sender, EventArgs e)
  28. {
  29. string gettext = richTextBox1.Text;
  30. int gettext_amount = gettext.Length;
  31.  
  32. if (gettext_amount > 38) {
  33. //Networking
  34. WebClient wC = new WebClient();
  35. string receive = wC.DownloadString("");
  36.  
  37. if (receive.Contains(richTextBox1.Text))
  38. {
  39.  
  40. MessageBox.Show("Welcome to Phantom", "Succeeded!");
  41. Form2 Form2 = new Form2();
  42. Form2.Show();
  43. this.Hide();
  44.  
  45. }
  46. else
  47. {
  48.  
  49. MessageBox.Show("Recheck the correctness of the key. If the error persists, PM me(vk.com/vpalazienko)", "Whitelist failed");
  50. this.Close();
  51.  
  52. }
  53.  
  54.  
  55.  
  56. }else
  57. {
  58.  
  59. MessageBox.Show("Recheck the correctness of the key. If the error persists, PM me(vk.com/vpalazienko)", "Whitelist failed");
  60. this.Close();
  61.  
  62. }
  63. }
  64. }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment