June 27

SilentRift - Quantum-Resistant Encrypter and In-Memory Loader | Credit: liqez

CLI-инструмент, написанный на Rust, который шифрует полезную нагрузку с помощью современного квантово-устойчивого AEAD-шифра ChaCha20-Poly1305, и создает Windows EXE-загрузчик, который запускает полезную нагрузку полностью в памяти, не трогая диск.

Особенности:

  • Quantum-resistant encryption with ChaCha20-Poly1305 (authenticated encryption)
  • Key and nonce obfuscation with XOR masking for stealth
  • Generates a Windows loader EXE that executes the decrypted payload in-memory using VirtualAlloc and CreateThread
  • Fully in-memory execution with zero disk drops
  • Interactive CLI menu for easy configuration:
  • Set raw payload as hex string
  • Load payload from a file
  • Set output EXE filename
  • Build the final loader EXE
  • Uses Windows API (winapi crate) for payload execution
  • Written in Rust for speed, safety, and minimal dependencies

Download