Skip to content

Instantly share code, notes, and snippets.

@NathanXID
Created August 30, 2021 13:35
Show Gist options
  • Save NathanXID/2fee8e4c5e6a082dc215f0da91cf7a5c to your computer and use it in GitHub Desktop.
Save NathanXID/2fee8e4c5e6a082dc215f0da91cf7a5c to your computer and use it in GitHub Desktop.
Exploit Submit Key C# Script
//Your Exploit Submit Key Exploit
if (siticoneTextBox1.Text == new WebClient().DownloadString("yourpastebinkey") || siticoneTextBox1.Text == "yourkey")
{
MessageBox.Show("Thank you for using ShinX!");
this.Hide();
YourExploit yourexploit = new YourExploit();
yourexploit.Show();
}
else
{
MessageBox.Show("Sorry the key is invalid. Try again.", "Key Invalid");
//END
@NathanXID
Copy link
Author

Wow that was my first gist:D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment