Categories > Coding > C# >

HOW TO MAKE A PASTEBIN READER!

Posts: 250

Threads: 111

Joined: Jun, 2018

Reputation: 5

Posted

I finally found out how to make a pastebin (raw) reader from just watching some person make a ui. You need to convert it to an exe file first.


First, at the top, add using System.Net;
Next, just paste this code into a button
 
string link = textboxthatholdsthelink.Text;
                        WebClient msg = new WebClient();
                        string msg1 = msg.DownloadString(link);
                        thedestinationofthetext.Text = msg1;
 
I literally figured this out in under a minute because I was doodling around with no experience of actual c# coding.
  • 0

Exploits I own: Synapse, Electron

Scripts I've made: Aimbot GUI, Draco Admin

Scripts I'm working on: More game ESPs

Posts: 212

Threads: 42

Joined: May, 2018

Reputation: 0

Replied

Wow Congrats bro, I'm currently taking classes into Java Programming. So lua is kinda a long past for me. Wish me luck bro!
  • 0

Posts: 250

Threads: 111

Joined: Jun, 2018

Reputation: 5

Replied

I wish you luck and thanks :D
  • 0

Exploits I own: Synapse, Electron

Scripts I've made: Aimbot GUI, Draco Admin

Scripts I'm working on: More game ESPs

Posts: 50

Threads: 14

Joined: Mar, 2018

Reputation: 0

Replied

I also made a version of this for Jailer.

--------------------------------------------

            bool success = false;
            string url = textBoxWithURL.Text;
         Â 
            WebClient cl = new WebClient();
            try
            {
                fastColoredTextBox1.Text = cl.DownloadString(metroTextBox4.Text);
                success = true;
            }
            catch (Exception ex)
            {
                MessageBox.Show("The provided URL is invalid.", this.Text);
                Console.WriteLine(ex.ToString());
            }
            if (success)
            {
                // do success stuff here
            }
  • 0

Posts: 22

Threads: 9

Joined: Jun, 2018

Reputation: 0

Replied

I found a version that copies the pastebin (raw) link:

            //Copy Infinite Yield
            WebClient webClient = new WebClient();
            Clipboard.SetText(webClient.DownloadString("pastebinlink"));
            MessageBox.Show("Copied to the clipboard");
  • 0

Added

just remove //Copy Infinite Yield it's just a thing you don't need
  • 0

Posts: 250

Threads: 111

Joined: Jun, 2018

Reputation: 5

Replied

Thanks Dogixx & zSh0x. I used both those codes for my thing. I'll take note of it.
  • 0

Exploits I own: Synapse, Electron

Scripts I've made: Aimbot GUI, Draco Admin

Scripts I'm working on: More game ESPs

Posts: 5

Threads: 1

Joined: Oct, 2018

Reputation: 0

Replied

Dogixx just told you its the webclient YOU USE

Anyways check out me exploit clk.sh/SuperExploit


  • 0

Users viewing this thread:

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