/ngx_shellshocked

A Shellshocked blocking module for NGINX

Primary LanguageC

ngx_shellshocked Build Status

This project is an NGINX module designed to block the Shellshocked payload when presented to the server. The module currently checks the host and referer headers for the payload. To enable the module set shellshocked on in the main conf section of your NGINX configuration. The following example demonstrates the configuration.

events {
  worker_connections 1024;
}

http {
  shellshocked on;

  server {
    listen 8888;
    location / {

    }
  }
}