Ich hatte mal ein bisschen Langeweile und hab ein ziemlich sinnloses Programm geschrieben.
Da ich Python Anfänger bin, würde ich mich mal über eure Meinung zum Code freuen.
Unabhängig vom Sinn des Ganzen, wie ist der Code?
Code: Alles auswählen
from time import sleep
print('Hacking your computer is being prepared...')
for i in range(1, 5):
print('...')
sleep(0.5)
print('Successfuly penetrated the system...')
for i in range(1, 5):
print('...')
sleep(0.5)
print('Encrypt all datas...')
for i in range(1, 20):
for j in [
'%systemroot%\system32\imageres.dll',
'%systemroot%\system32accessibilitycpl.dll',
'%systemroot%\system32\ddores.dll',
'%systemroot%\system32\shell32.dll',
'%systemroot%\system32\pifmgr.dll',
'%systemroot%\explorer.exe',
'%systemroot%\system32\moricons.dll',
'%systemroot%\system32\mmcndmgr.dll',
'%systemroot%\system32\mmres.dll',
'%systemroot%\system32netcenter.dll',
'%systemroot%\system32netshell.dll'
]:
print('Encrypt of', j)
sleep(0.1)
print('All datas are encrypted...')
sleep(5)
print('You have to pay 1 Million Dollars to decrypt the datas.')
sleep(5)
input()