Posted
How can I edit the key by editing the pastebin text without updating the exploit?
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)
Cancel
Post
I use synapse sometimes
Languages i have experience with: c#, lua, javascript.
Replied
@larsl2005 yeah, but I mean the code in visual studio. How can I make it to grab the key?
Cancel
Post
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
Cancel
Post
I use synapse sometimes
Languages i have experience with: c#, lua, javascript.
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post