Advertisement
Guest User

Boostrapper

a guest
Aug 19th, 2019
1,749
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. WebClient wc = new WebClient();//strings the webclient to wc
  2. String program = "test";//ur exe name or what ever ur downloading
  3. String link = "https://pastebin.com/raw/b7NzBUWT";//ur link in RAW
  4. String download = wc.DownloadString(link);//reads the data of the link
  5. String path = @"Exploit\" + program + ".txt";//change the txt to exe or what ever u wanna auto download
  6. String patch = (@"Exploit");//strings directory name
  7. Directory.CreateDirectory(patch);//creates the directory.
  8. wc.DownloadFile(download, path);//downloads the actual file
  9. Process.Start(path);//it will only start ur exploit if its only one exe file and not a folder or a rar it has to be exe.unless u want it to open the folder or the rar file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement