• 2 Posts
  • 20 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle












  • Bogus5553@lemm.eetoProgrammer Humor@lemmy.mlBehind The Scenes
    link
    fedilink
    arrow-up
    11
    ·
    edit-2
    10 months ago
    from random import uniform
    from time import sleep
    
    target = input("Enter target to hack:")
    
    print(f'--Hacking {target}--')
    print('initiating ~~anal penetration~~ backdoor entry')
    
    for progress in range(0,100,20):
        print(f'Hacking {target}: {progress}%')
        sleep(uniform(1,3))
    print(f'{target} hacked successfully')