Open Issues Need Help
View All on GitHubAI Summary: Add a help command to the Gotaxy server's CLI, displaying usage information. This involves adding `fmt.Println` statements within the `internal/shell/shellcli.go` file to output the help text at the indicated location.
AI Summary: Add a download button to the Gotaxy web interface that allows users to download three certificate files located in the `/certs` directory. The files are a root CA certificate, a server certificate, and a client certificate.
AI Summary: Implement a web interface to view and modify the global configuration (ServerIP, ListenPort, Email) of the Gotaxy server. The interface should be designed for extensibility to accommodate future configuration fields.
AI Summary: Implement a logging system for the Gotaxy project, providing functions to write logs of different priority levels to a specified file.
AI Summary: Design a SQLite database model for a Go-based internal network penetration tool. The model should persist connection pool data and server credentials, and include basic CRUD operations (Create, Read, Update, Delete).
AI Summary: Implement command-line argument parsing for the Gotaxy client using the urfave/cli library. The client should accept server hostname and port as arguments, defaulting to 127.0.0.1:9000 if not specified. A help command should also be implemented to display usage information.