Forum > Coding >

[Help] Add "Exploit is updated" to my exploit

Posts: 10

Threads: 5

Joined: Jan, 2019

Reputation: 0

Posted

hi
hi
hi
hi
hi
hi

  • 0

Posts: 4

Threads: 1

Joined: Nov, 2018

Reputation: 0

Replied

Well have a way you can manually control what a MessageBox says with a WebClient, users of your exploit will not have to download a new version of your exploit. First put “using System.Net;”

then put this code in Form1_load:

 

WebClient web = new WebClient();

string message = web.DownloadString("Raw Pastebin link");

MessageBox.Show(message);

 

That's the end of the code.

now replace "Raw pastebin Link" With a raw pastebin link that you own and you can edit the pastebin and the text in the pastebin will show when someone loads the exploit.

 

 

  • 0

Posts: 369

Threads: 61

Joined: Apr, 2018

Reputation: 0

Replied

To add to the last reply, you could write a version number in the pastebin instead of a message.

 

  • 0

Added

For example you new version is 124 then write in C#:

  • 0

Added

 

WebClient web = new WebClient();

string message = web.DownloadString("YOUR PASTEBIN LINK HERE"); // Message is the version number

 

if (message != currentVersion.ToString()) {

    // Write some code that will tell the user that your exploit if patched.

}

  • 0

Added

 

But.. that's not all! We have to define the currentVersion (replace the number everytime you make a new version):

 

int currentVersion = 120;

  • 0

Zeridiant

You can call me Z

Posts: 1

Threads: 0

Joined: Feb, 2019

Reputation: 0

Replied

Okay so basically, you want your exploit to update. You want to make sure you have a txt, for me I have a custom website (example.com/updated.txt) to say true, false, or a new link. You would want something like this:

Using (WebClient wc = new WebClient())

{
   string update = new wc.DownloadString(url)
   if (update == true)

   {

      MessageBox.Show("Patched");
   }
   else
   {
      //do nothing
   }
}

Its really easy. AutoUpdating is different but is also easy but if you know the basics of c# then you should be able to do it.

  • 0

Users viewing this thread:

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