Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- using FlatUI;
- using System.Net;
- namespace Exploit_Template_with_WRDAPI
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void Form1_Load(object sender, EventArgs e)
- {
- }
- private void FlatButton1_Click(object sender, EventArgs e)
- {
- string gettext = richTextBox1.Text;
- int gettext_amount = gettext.Length;
- if (gettext_amount > 38) {
- //Networking
- WebClient wC = new WebClient();
- string receive = wC.DownloadString("");
- if (receive.Contains(richTextBox1.Text))
- {
- MessageBox.Show("Welcome to Phantom", "Succeeded!");
- Form2 Form2 = new Form2();
- Form2.Show();
- this.Hide();
- }
- else
- {
- MessageBox.Show("Recheck the correctness of the key. If the error persists, PM me(vk.com/vpalazienko)", "Whitelist failed");
- this.Close();
- }
- }else
- {
- MessageBox.Show("Recheck the correctness of the key. If the error persists, PM me(vk.com/vpalazienko)", "Whitelist failed");
- this.Close();
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment