Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from time import sleep as wait
- import string
- import random
- class SuperVirus:
- def __init__(self, realm, setup, connection):
- self.realm = realm
- self.setup = setup
- self.connection = connection
- def __str__(self):
- return f"Initializing {self.realm} \n{self.setup} ready."
- def connect_to_realm(self):
- for _ in range(-10, 0):
- print(f"Connecting to realm in {_}")
- wait(1)
- if self.connection:
- print("Connection initiated.")
- def execute_DOOM(self):
- payload = list(string.ascii_lowercase)
- for _ in range(10):
- engage_payload = random.sample(payload, len(payload))
- print("vira".join(engage_payload) for x in engage_payload)
- wait(2)
- print(
- chr(68) +
- chr(79) +
- chr(79) +
- chr(77) +
- chr(32) +
- chr(69) +
- chr(88) +
- chr(69) +
- chr(67) +
- chr(85) +
- chr(84) +
- chr(69) +
- chr(68))
- hack_and_connect = SuperVirus("Digital Realm", "Government Secret", "ENGAGE")
- virus = hack_and_connect
- print(virus.__str__())
- virus.connect_to_realm()
- virus.execute_DOOM()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement