Python typed RPC client for Metasploit Framework.
pip install snek-sploit
from snek_sploit import MetasploitClient
if __name__ == '__main__':
client = MetasploitClient("msf", "root")
print(client.core.rpc.version())
Examples can be found in the examples directory.
In Metasploit console:
load msgrpc ServerHost=127.0.0.1 ServerPort=55553 User=msf Pass='root' SSL=true
In shell:
msfrpcd -U msf -P root
With Docker:
docker run --tty --network host --detach sadparad1se/metasploit-framework:rpc
With Docker Compose:
git clone https://github.com/SadParad1se/snek-sploit.git
cd snek-sploit
docker compose up -d
You can find more information in the Metasploit Framework documentation.
MSF RPC loads the SSL certificate by default from /root/.msf4/msf-ws-cert.pem
(use the -c
flag to choose a different location). If not, generate it as mentioned here.
To use it in the client, save it locally and pass the path:
from snek_sploit import MetasploitClient
MetasploitClient("msf", "root", certificate="/path/to/cert.pem")