ronin-rb/ronin-payloads

Add a `python/base64_encode` encoder

Closed this issue · 1 comments

Add a built-in Python encoder which encodes a Python payload to Base64 then embeds it within a base64 decode and eval string.

import base64; eval(base64.b64decode("..."))

Implemented by c3cc8c1.