Advertisement
blackhat_global

#WhatsAppBomber

Apr 14th, 2020 (edited)
5,146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. | |__ | | __ _ ___| | _| |__ __ _| |_ __ _| | ___ | |__ __ _| |
  2. | '_ \| |/ _` |/ __| |/ / '_ \ / _` | __| / _` | |/ _ \| '_ \ / _` | |
  3. | |_) | | (_| | (__| <| | | | (_| | |_ | (_| | | (_) | |_) | (_| | |
  4. |_.__/|_|\__,_|\___|_|\_\_| |_|\__,_|\__| \__, |_|\___/|_.__/ \__,_|_|
  5. |___/
  6.  
  7. 'Bomb Whatsapp Code 2.0:
  8. ' InputBoxes
  9. Contact = InputBox("Which Conctact Do You Want To DDos?", "WhatsApp DDos")
  10. Message = InputBox("What Is The Message?","WhatsApp DDos")
  11. T = InputBox("How Many Times Needs It To Be Send?","WhatsApp DDos")
  12. If MsgBox("You've Filled It In Correctely", 1024 + vbSystemModal, "WhatsApp DDos") = vbOk Then
  13. ' Go To WhatsApp
  14. Set WshShell = WScript.CreateObject("WScript.Shell")
  15. Return = WshShell.Run("https://web.whatsapp.com/", 1)
  16. ' Loading Time
  17. If MsgBox("Is WhatsApp Loaded?" & vbNewLine & vbNewLine & "Press No To Cancel", vbYesNo + vbQuestion + vbSystemModal, "WhatsApp DDos") = vbYes Then
  18. ' Go To The WhatsApp Search Bar
  19. WScript.Sleep 50
  20. WshShell.SendKeys "{TAB}"
  21. ' Go To The Contacts Chat
  22. WScript.Sleep 50
  23. WshShell.SendKeys Contact
  24. WScript.Sleep 50
  25. WshShell.SendKeys "{ENTER}"
  26.  
  27. ' The Loop For The Messages
  28. For i = 0 to T
  29. WScript.Sleep 5
  30. WshShell.SendKeys Message
  31. WScript.Sleep 5
  32. WshShell.SendKeys "{ENTER}"
  33. Next
  34. ' End Of The Script
  35. WScript.Sleep 3000
  36. MsgBox "DDosing Of " + Contact + " Is Done", 1024 + vbSystemModal, "DDos Is Done"
  37. ' Canceled Script
  38. Else
  39. MsgBox "Process Has Been Canceled", vbSystemModal, "DDos Canceled"
  40. End If
  41. Else
  42. End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement