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
- Host: GitHub
- URL: https://github.com/zalgo-dev/synapsex-cli
- Owner: Zalgo-Dev
- Created: 2025-06-09T02:07:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-09T03:21:34.000Z (about 1 year ago)
- Last Synced: 2025-06-16T12:04:03.198Z (about 1 year ago)
- Topics: 2025, fivem, hack, lua, mod, pentest, scanner, spoofer, tool
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.