Forum > Coding >

How can I edit the key by editing the pastebin text without updating the exploit?

davidTube

not inactive

noticed

Posts: 1628

Threads: 83

Joined: Dec, 2018

Reputation: 54

Posted

How can I edit the key by editing the pastebin text without updating the exploit? 

  • 0

Posts: 53

Threads: 14

Joined: Jan, 2018

Reputation: 0

Replied

by editing the pastebin text... i think the url wont change, otherwise just make it grab the key from your own server (there are plenty of free hosting things out there)

  • 0

I use synapse sometimes
Languages i have experience with: c#, lua, javascript.

davidTube

not inactive

noticed

Posts: 1628

Threads: 83

Joined: Dec, 2018

Reputation: 54

Replied

@larsl2005 yeah, but I mean the code in visual studio. How can I make it to grab the key?

  • 0

Posts: 53

Threads: 14

Joined: Jan, 2018

Reputation: 0

Replied

//this goes into the button press fucntion

string dir = Directory.GetCurrentDirectory();

            WebRequest wr = WebRequest.Create(new Uri("URL HERE"));

            WebResponse ws = wr.GetResponse();

            StreamReader sr = new StreamReader(ws.GetResponseStream());

            string KeyFromServer = sr.ReadToEnd();

            string eneterdkey = (textboxnamehere).Text

if (eneterdkey.Contains(KeyFromServer){

//if the key is right, this code will be executed

}

else

{

//if the key is wrong, this code will be executed

}

 

 

 

dont froget using System.Net; at the top of the code

  • 0

I use synapse sometimes
Languages i have experience with: c#, lua, javascript.

davidTube

not inactive

noticed

Posts: 1628

Threads: 83

Joined: Dec, 2018

Reputation: 54

Replied

@larsl2005

it really works, thank you! :D

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )