Last active
November 7, 2019 08:32
The Python code below demonstrates the encryption routine.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# client public and private key will be here / generated new key pair for each infection | |
client_public_key = "" | |
client_private_key = "" | |
# hardcoded Spub.key | |
server_public_key = "" | |
# encrypt Cpriv.key with Spub.key | |
encrypted_client_private_key = encrypt_client_private_key(client_private_key, server_public_key) | |
write_to_disk(encrypted_client_private_key) | |
# desallocated client private key | |
delete_client_private_key(client_private_key) | |
# found files on infected machine | |
found_files = [] | |
# encrypted AES keys will be stored here | |
encrypted_aes_keys = [] | |
# for each file | |
for file in found_files: | |
# generate random AES key | |
aes_key = generate_aes_key() | |
# encrypt the file with the key | |
encrypt_file(file, aes_key) | |
# encrypt AES key with Cpub.key | |
encrypted_aes_key = encrypt_aes_key(aes_key, client_public_key) | |
encrypted_aes_keys.append(encrypted_aes_key) | |
# Desallocated old key | |
delete_aes_key(aes_key) | |
# save to disk encrypted AES keys | |
write_to_disk(encrypted_aes_keys) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment