Skip to main content

GIXY

Mozilla Public License 2.0 Python tests Your feedback is greatly appreciated GitHub issues GitHub pull requests NGINX Extras

[!NOTE] Keep NGINX secure and up-to-date with maintained modules via NGINX Extras RPM repository by GetPageSpeed.

Overview

Gixy is a tool to analyze NGINX configuration. The main goal of Gixy is to prevent security misconfiguration and automate flaw detection.

Currently supported Python versions are 3.6 through 3.13.

Disclaimer: Gixy is well tested only on GNU/Linux, other OSs may have some issues.

What it can do

Gixy detects a wide range of security issues across these categories:

Category Security Checks
🔓 Injection & Forgery SSRF · HTTP Splitting · Host Spoofing · Origin Bypass
🚨 Known CVEs NGINX CVE Advisor (pass --nginx-version=X.Y.Z; mirrors the NGINX Open Source advisory database)
🔐 TLS & Encryption Weak SSL/TLS · Post-Quantum ssl_ecdh_curve · HTTP/2 Misdirected Request · QUIC BPF Reuseport · OCSP Stapling Without Resolver · Stapling With Let's Encrypt · Version Disclosure
📂 Path Traversal Alias Traversal · Proxy Pass Normalized
📋 Header Security HSTS Header · Header Redefinition · Multiline Headers · Content-Type via add_header
🚦 Access Control Allow Without Deny · Return Bypasses ACL · Valid Referers · Status Page Exposed
🌐 DNS & Resolver External Resolver · Missing Resolver
⚙️ Config & Performance ReDoS · Regex Exact Match · Unanchored Regex · Invalid Regex · If Is Evil · Try Files Evil · Default Server · Hash Default · Error Log Off · Worker Limits · Low Keepalive

📖 Full documentation → · 🆕 Upcoming checks

Installation

CentOS/RHEL and other RPM-based systems

yum -y install https://extras.getpagespeed.com/release-latest.rpm
yum -y install gixy

# Optional: add ReDoctor-backed deep ReDoS analysis
yum -y install gixy-deep

The base RPM contains Gixy's default fast ReDoS heuristics and does not require ReDoctor. The signed gixy-deep RPM adds ReDoctor for gixy --deep without changing the base package dependency set.

macOS / Linux (Homebrew)

brew install gixy

Bottles are pre-built for macOS (Apple Silicon + Intel) and Linux (x86_64, arm64).

Arch Linux (AUR)

yay -S gixy-ng

Published as gixy-ng (the legacy gixy AUR slot is held by a different maintainer at the old 0.1.20 release); it declares provides=('gixy') and conflicts=('gixy'), so it's a drop-in replacement. Any AUR helper works (paru, yay, manual makepkg -si).

Other systems

Gixy is distributed on PyPI. The best way to install it is with pip:

pip install gixy-ng

The base package includes Gixy's fast ReDoS heuristics. Install the optional ReDoctor integration only when you need --deep analysis:

pip install 'gixy-ng[deep]'

Usage

By default, Gixy will try to analyze NGINX configuration placed in /etc/nginx/nginx.conf.

But you can always specify the needed path:

$ gixy /etc/nginx/nginx.conf

==================== Results ===================

Problem: [http_splitting] Possible HTTP-Splitting vulnerability.
Description: Using variables that can contain "\n" may lead to http injection.
Additional info: https://github.com/dvershinin/gixy/blob/master/docs/en/checks/http-splitting.md
Reason: At least variable "$action" can contain "\n"
Pseudo config:
include /etc/nginx/sites/default.conf;

	server {

		location ~ /v1/((?<action>[^.]*)\.json)?$ {
			add_header X-Action $action;
		}
	}


==================== Summary ===================
Total issues:
    Unspecified: 0
    Low: 0
    Medium: 0
    High: 1

Or skip some tests:

$ gixy --skips http_splitting /etc/nginx/nginx.conf

==================== Results ===================
No issues found.

==================== Summary ===================
Total issues:
    Unspecified: 0
    Low: 0
    Medium: 0
    High: 0

Auto-fix mode 🔧

Gixy can automatically fix many issues it detects:

# Preview what fixes would be applied (dry run)
$ gixy --fix-dry-run /etc/nginx/nginx.conf

🔍 Dry run - showing fixes that would be applied:

📝 /etc/nginx/nginx.conf
   [Insecure TLS protocols enabled]
   🔧 Use only TLSv1.2 and TLSv1.3
   - ssl_protocols TLSv1 TLSv1.1
   + ssl_protocols TLSv1.2 TLSv1.3

📊 1 fix(es) available to apply.
   Run with --fix to apply them.
# Apply fixes (creates .bak backup files)
$ gixy --fix /etc/nginx/nginx.conf

✅ Applied 1 fix(es) to /etc/nginx/nginx.conf

🎉 Applied 1 fix(es) successfully!
   Backup files created with .bak extension.

Use --no-backup to skip creating backup files.

Or something else, you can find all other gixy arguments with the help command: gixy --help

With the optional ReDoctor dependency installed through gixy-ng[deep] (pip) or gixy-deep (RPM), use gixy --deep nginx.conf for a more precise ReDoS pass. Deep mode delegates to ReDoctor, combining automata analysis with bounded fuzzing in a safe custom regex VM. Analysis stays local, and Gixy disables ReDoctor's runtime recall step so nginx regexes are never executed by Python's backtracking engine.

Plugin options

Some plugins expose options which you can set via CLI flags or config file. CLI flags follow the pattern --<PluginName>-<option> with dashes, while config file uses [PluginName] sections with dashed keys.

  • origins:

    • --origins-domains domains: Comma-separated list of trusted registrable domains. Use * to disable third‑party checks. Example: --origins-domains example.com,foo.bar. Default: *.
    • --origins-https-only true|false: When true, only the https scheme is considered valid for Origin/Referer. Default: false.
    • --origins-lower-hostname true|false: Normalize hostnames to lowercase before validation. Default: true.
  • add_header_redefinition:

    • --add-header-redefinition-headers headers: Comma-separated allowlist of header names (case-insensitive). When set, only dropped headers from this list will be reported; when unset, all dropped headers are reported. Example: --add-header-redefinition-headers x-frame-options,content-security-policy. Default: unset (report all).
  • regex_redos:

    • --regex-redos-deep true|false: Enable the same ReDoctor analysis as top-level --deep. Requires gixy-ng[deep] from pip or the gixy-deep RPM. Default: false.

Examples (config file):

[origins]
domains = example.com, example.org
https-only = true

[add_header_redefinition]
headers = x-frame-options, content-security-policy

You can also make gixy use pipes (stdin), like so:

echo "resolver 1.1.1.1;" | gixy -

Docker usage

Gixy is available as a Docker image from the Docker hub. To use it, mount the configuration that you want to analyse as a volume and provide the path to the configuration file when running the Gixy image.

$ docker run --rm -v `pwd`/nginx.conf:/etc/nginx/conf/nginx.conf getpagespeed/gixy /etc/nginx/conf/nginx.conf

If you have an image that already contains your nginx configuration, you can share the configuration with the Gixy container as a volume.

$  docker run --rm --name nginx -d -v /etc/nginx nginx:alpine
f68f2833e986ae69c0a5375f9980dc7a70684a6c233a9535c2a837189f14e905

$  docker run --rm --volumes-from nginx dvershinin/gixy /etc/nginx/nginx.conf

==================== Results ===================
No issues found.

==================== Summary ===================
Total issues:
    Unspecified: 0
    Low: 0
    Medium: 0
    High: 0

JetBrains IDEs (IntelliJ, PyCharm, WebStorm, GoLand, …)

JetBrains Plugin

Real-time NGINX security analysis in any JetBrains IDE. No Python required — the plugin auto-downloads a native Gixy binary.

Install from JetBrains Marketplace

Or search for "Gixy" in your IDE's plugin settings (Settings → Plugins → Marketplace).

See gixy-jetbrains for full documentation.

VS Code / Cursor Extension

VS Code Marketplace

Get real-time NGINX security analysis directly in your editor!

Install from VS Code Marketplace

Or via command line:

code --install-extension getpagespeed.gixy

See vscode-gixy for full documentation.

Kubernetes usage

Given you are using the official NGINX ingress controller, not the kubernetes one, you can use this https://github.com/nginx/kubernetes-ingress

kubectl exec -it my-release-nginx-ingress-controller-54d96cb5cd-pvhx5 -- /bin/bash -c "cat /etc/nginx/conf.d/*" | docker run -i getpagespeed/gixy -
==================== Results ===================

>> Problem: [version_disclosure] Do not enable server_tokens on or server_tokens build
Severity: HIGH
Description: Using server_tokens on; or server_tokens build;  allows an attacker to learn the version of NGINX you are running, which can be used to exploit known vulnerabilities.
Additional info: https://gixy.getpagespeed.com/en/plugins/version_disclosure/
Reason: Using server_tokens value which promotes information disclosure
Pseudo config:

server {
	server_name XXXXX.dev;
	server_tokens on;
}

server {
	server_name XXXXX.dev;
	server_tokens on;
}

server {
	server_name XXXXX.dev;
	server_tokens on;
}

server {
	server_name XXXXX.dev;
	server_tokens on;
}

==================== Summary ===================
Total issues:
    Unspecified: 0
    Low: 0
    Medium: 0
    High: 4

Continuous Monitoring

Pair Gixy with GetPageSpeed Amplify for continuous, scheduled Gixy scans plus full NGINX monitoring. Amplify is drop-in compatible with the deprecated nginx-amplify-agent, so existing hosts can be migrated with an api_url swap.

  • Scheduled Gixy security scans across every monitored host, surfaced in one dashboard.
  • NGINX runtime metrics, alerts, and historical trends alongside the Gixy report.

Migration guide and screenshots: https://gixy.org/guides/nginx-monitoring-amplify.

Contributing

Contributions to Gixy are always welcome! You can help us in different ways:

  • Open an issue with suggestions for improvements and errors you're facing;
  • Fork this repository and submit a pull request;
  • Improve the documentation.

Code guidelines:

  • Python code style should follow pep8 standards whenever possible;
  • Pull requests with new plugins must have unit tests for them.

Community guidelines:

  • Be respectful and constructive in discussions;
  • This project uses AI-assisted development - disparaging remarks about AI tooling are unwelcome;
  • Focus on the code and ideas, not the tools used to create them.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gixy_ng-0.2.52.tar.gz (190.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gixy_ng-0.2.52-py3-none-any.whl (144.2 kB view details)

Uploaded Python 3

File details

Details for the file gixy_ng-0.2.52.tar.gz.

File metadata

  • Download URL: gixy_ng-0.2.52.tar.gz
  • Upload date:
  • Size: 190.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.14.7

File hashes

Hashes for gixy_ng-0.2.52.tar.gz
Algorithm Hash digest
SHA256 6ff5f235d411d35eb8d4d33828389852ba4a27b77fbf0e1f49fd102e874afa78
MD5 7924d145a261e475ca9dbb0bc91e42f6
BLAKE2b-256 449bd16174a31be5a77742bb25bf738d8d43b1adbc8f6f6f0bf91a7797bdc58d

See more details on using hashes here.

File details

Details for the file gixy_ng-0.2.52-py3-none-any.whl.

File metadata

  • Download URL: gixy_ng-0.2.52-py3-none-any.whl
  • Upload date:
  • Size: 144.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.14.7

File hashes

Hashes for gixy_ng-0.2.52-py3-none-any.whl
Algorithm Hash digest
SHA256 2aeab797b2999cc98b1ccf80dbec335eb67841918557ecc2342cc0eeef7e8ea0
MD5 ab34b52bf84316637086c4b17bde6e8f
BLAKE2b-256 0244391e20880bdc5e57eca2939baef9e2a3677ede611d81722b41f79864f189

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.52 This release

2 files

0.2.51

2 files

0.2.50

2 files

0.2.49

2 files

0.2.48

2 files

0.2.47

2 files

0.2.46

2 files

0.2.45

2 files

0.2.44

2 files

0.2.43

2 files

0.2.42

2 files

0.2.41

2 files

0.2.40

2 files

0.2.39

2 files

0.2.38

2 files

0.2.37

2 files

0.2.36

2 files

0.2.34

2 files

0.2.33

2 files

0.2.32

2 files

0.2.31

2 files

0.2.30

2 files

0.2.29

2 files

0.2.28

2 files

0.2.27

2 files

0.2.26

2 files

0.2.25

2 files

0.2.23

2 files

0.2.22

2 files

0.2.18

2 files

0.2.17

2 files

0.2.16

2 files

0.2.15

2 files

0.2.14

2 files

0.2.13

2 files

0.2.12

2 files

0.2.11

2 files

0.2.9

2 files

0.2.8

2 files

0.2.7

2 files

0.2.6

2 files

0.2.5

2 files

0.2.4

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.24

2 files

0.1.23

2 files

0.1.22

2 files

0.1.21

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page