Skip to content

Zalgo-Dev/Synapsex-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

14 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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

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

πŸ’» Usage

python run.py

You will enter an simple interactive CLI interface:

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

SynapseX>

🧩 Available Commands

Command Description
resolve <cfx_token> Resolve a cfx.re token or link to IP:Port
scan <cfx_link / cfx_token> 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:
class Command:
    name = "yourcommand"
    desc = "Your command description"
    usage = "yourcommand <args>"

    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.

About

Advanced FiveM Pentest Tool - CLI

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages