An open API service indexing awesome lists of open source software.

https://github.com/zalgo-dev/synapsex-cli

Advanced FiveM Pentest Tool - CLI
https://github.com/zalgo-dev/synapsex-cli

2025 fivem hack lua mod pentest scanner spoofer tool

Last synced: about 2 months ago
JSON representation

Advanced FiveM Pentest Tool - CLI

Awesome Lists containing this project

README

          

# SynapseX CLI ⚑

Advanced FiveM Pentest Tool - CLI

---

- πŸ” Resolve `cfx.re` links to real server IP
- πŸ§ͺ Scan and retrieve server info (status, players, tags, etc.)
- 🧩 Modular command structure
- πŸ› οΈ Easily extendable with your own commands

---

## πŸš€ Features

- Resolve CFX join codes to IP:Port
- Retrieve live server data from `/info.json` and `/players.json`
- Modular command handler system
- CLI-based, no GUI, pure terminal experience

---

## πŸ“¦ Installation

```bash
git clone https://github.com/Zalgo-Dev/Synapsex-cli.git
cd Synapsex-cli
pip install -r requirements.txt
```

---

## πŸ’» Usage

```bash
python run.py
```

You will enter an simple interactive CLI interface:

```bash
=== SynapseX Terminal ===
Type `help` to show all available commands.

SynapseX>
```

---

## 🧩 Available Commands

| Command | Description |
|---|---|
| `resolve ` | Resolve a cfx.re token or link to IP:Port |
| `scan ` | Show server informations |
| `help` | Show all available commands |
| `exit / ctrl + c` | Exit the CLI |

---

## πŸ—‚ Project Structure

```
└── πŸ“SynapseX - CLI
└── πŸ“synapsex
└── __init__.py
└── πŸ“commands
└── resolve.py
└── scan.py
└── your_command.py
└── πŸ“core
└── __init__.py
└── terminal.py
└── πŸ“utils
└── __init__.py
└── server.py
└── README.md
└── run.py
```

---

## βž• Creating a Custom Command

1. Create a file in synapsex/commands/your_command.py
2. Use this template:

```python
class Command:
name = "yourcommand"
desc = "Your command description"
usage = "yourcommand "

def run(self, args):
print("Hello from yourcommand!")
```

**New commands are automatically loaded by the command manager.**

---

## πŸ™‹β€β™‚οΈ Contributing
Pull requests are welcome! Feel free to open an issue or suggest a feature.

---

## ⭐ Credits
Created by **ZalgoDev** β€” follow me for more open-source security tools.