Snakes Ransomware is a Python-based tool designed to encrypt and decrypt files within a specified target folder. This program is intended for educational purposes only.
Before running the Snakes Ransomware program, make sure to install the necessary dependencies. You can do this by installing the requirements from the requirements.txt
file.
pip3 install -r requirements.txt
To encrypt the files in a target folder, follow these steps:
-
Copy the Encryption Script:
- Copy the
snakes-encrypt.py
file into the target folder that you want to encrypt.
- Copy the
-
Run the Script:
-
Open a terminal and navigate to the target folder.
-
Run the encryption script with the following command:
python3 snakes-encrypt.py
-
-
Encryption Completion:
- Once the script has finished running, the files in the target folder will be encrypted.
- A file named
snakes-key.key
will be created in the same folder. This key is crucial for decrypting the files, so keep it safe.
If you need to decrypt the files that were previously encrypted, follow these steps:
-
Copy the Decryption Script:
- Copy the
snakes-decrypt.py
file into the target folder that contains the encrypted files.
- Copy the
-
Add the Encryption Key:
- Ensure that the
snakes-key.key
file is in the same folder as the decryption script.
- Ensure that the
-
Run the Decryption Script:
-
Open a terminal, navigate to the target folder, and run the decryption script with the following command:
python3 snakes-decrypt.py
-
-
Decryption Completion:
- After running the script, the encrypted files will be decrypted, restoring them to their original state.
This software is intended for educational purposes only. The use of ransomware for malicious purposes is illegal and unethical. The author of this software is not responsible for any misuse or damages caused by the use of this program.