16 points
There should be a few sleep() there to make it more realistic
5 points
13 points
Nah, the last line should say
I’m in
4 points
*
10 points
Also: what’s up with the fake browsers? How difficult us it to setup a local webserver, setup a hosts entry and use a real browser to open the webpage? Or open a static webpage via file:// protocol. I find it more effort to “program” a fake browser with complete interface…
9 points
*
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}%')
print(f'{target} hacked successfully')
6 points
*
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')
3 points
2 points
2 points
7 points
import hack