Advertisement
Guest User

Untitled

a guest
Sep 30th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. from random import uniform
  2.  
  3. user = "Sprite140"
  4. password = ""
  5.  
  6. # Enter Max Antivir to attack in normal mode
  7. maxanti_normal = 3000
  8.  
  9. # Active or not the protection for cluster ( don't attack if you are ddos your cluster)
  10. active_cluster_protection = True
  11.  
  12. # Use booster
  13. booster = False
  14.  
  15. # Finish all task by netcoins
  16. Use_netcoins = False
  17.  
  18. # Enter Max Antivir to attack tournament
  19. maxanti_tournament = 3000
  20.  
  21. # Enter Amount of Attacks normal
  22. attacks_normal = 3000
  23.  
  24. # Enter Amount of Attacks in tournament
  25. attacks_tournament = 2000
  26.  
  27. # define the initial mode
  28. mode = "Secure"
  29.  
  30. # update botnet auto
  31. BotNet_update = False
  32.  
  33. # check list of more player in tournament and ddos the cluster.
  34. ddos_cluster = True
  35.  
  36. # change auto mode Potator for tournament
  37. tournament_potator = False
  38.  
  39. AttackTournamentDB = False
  40. Max_point_tournament = 1300
  41. # Enter Updates (inet, hdd, cpu, ram, fw, av, sdk, ipsp, spam, scan, adw)
  42. updates = ["ipsp", "adw", "fw", "scan", "sdk", "av"]
  43. # updates = ["fw"]
  44. # updates = ["ipsp", "sdk"]
  45.  
  46. # Do you want to attack during tournament [True, False]
  47. joinTournament = True
  48.  
  49. # Time to wait between each cycle in seconds
  50. wait = round(uniform(0, 1), 2)
  51. wait_load = round(uniform(1, 3), 2)
  52. updatecount = 0
  53. attackneeded = False
  54. database = 'database.db'
  55.  
  56. # check attack anonymous
  57. anon = True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement