Turn the previous custom dropper into a stealthy version:
- Encrypt all strings
- Obfuscate all function calls
- Change XOR to AES
Real life applications
- Think about how you could hide your encrypted payload behind an image. Hint: file concatenation. Implement a new dropper.
- Build a dropper, which hosts its payload in a separate AES-encrypted file (on disk or on a file share). Hint: use CreateFile() and ReadFile(); example code.
Good luck!