LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

gixy-next

Maintained fork of gixy for nginx security analysis

TLDR

Analyze nginx config
$ gixy-next [/etc/nginx/nginx.conf]
copy
Run only specific checks
$ gixy-next --tests [ssrf,host_spoofing] [config.conf]
copy
Skip specific checks
$ gixy-next --skips [http_splitting] [config.conf]
copy
Output as JSON
$ gixy-next -f json [config.conf]
copy
Show only medium severity and above
$ gixy-next -ll [config.conf]
copy

SYNOPSIS

gixy-next [options] config

DESCRIPTION

gixy-next is a maintained fork of gixy for nginx security analysis. It continues development of the original tool with updates, bug fixes, and support for newer nginx features.The tool analyzes nginx configurations for security issues, detecting misconfigurations that could lead to vulnerabilities such as SSRF and host spoofing.

PARAMETERS

CONFIG

Nginx configuration file.
--tests RULES
Only run specific checks (comma-separated).
--skips RULES
Skip specific checks (comma-separated).
-f, --format FORMAT
Output format (text, json).
-l
Filter by severity level. Use -l for LOW+, -ll for MEDIUM+, -lll for HIGH only.
--help
Display help information.

CAVEATS

Fork of original gixy with additional checks and performance features. Defaults to analyzing /etc/nginx/nginx.conf if no path given. Can also read config from stdin.

HISTORY

gixy-next continues development of gixy after the original project became less actively maintained.

SEE ALSO

gixy(1), nginx(1)

Copied to clipboard
Kai