Posted
I'm sure you have all seen the "Get Key" systems for free exploits.
How do I create one of those in c#
I know LUA and some C#
Â
and i own synapse x noob
Replied
For the "get key" you can use this code: Process.Start("Insert your link here");
Now for the key system:
if (TEXTBOXNAMEHERE.Text == "Key in here")
{
MessageBox.Show("Thanks for using this exploit");
this.Hide();
Form2 main = new Form2();
main.Show();
}
else
{
MessageBox.Show("Invalid key, please try again.");
}
Cancel
Post
Proud owner of Artemis
I quit exploiting
I might buy Premium soon!
Replied
you will make a get key button which will open a link where the key is there to copy it
after that use this code
private void Login_Button_Click(object sender, EventArgs e)
{
string dir = Directory.GetCurrentDirectory();
WebRequest wr = WebRequest.Create(new Uri("your pastebin raw url"));
WebResponse ws = wr.GetResponse();
StreamReader sr = new StreamReader(ws.GetResponseStream());
string KeyFromServer = sr.ReadToEnd();
string eneterdkey = (yourtextbox).Text;
if (eneterdkey.Contains(KeyFromServer))
{
MessageBox.Show("Thanks for using my exploit!");
this.Hide();
Exploit exploit = new Exploit();
exploit.Show();
}
else
{
MessageBox.Show("Invalid, Try again!");
}
}
of course you will need to make a pastebin and you can update the key daily
Cancel
Post
Replied
@53926
I was considering that, however what if someone finds the link to your pastebin and shares the key?
Cancel
Post
I know LUA and some C#
Â
and i own synapse x noob
Replied
@53926 ik but i am too lazy to code it again and make it more simple
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post