forked from openresty/xss-nginx-module
-
Notifications
You must be signed in to change notification settings - Fork 1
cyberpsyche/xss-nginx-module
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Name xss-nginx-module - Native cross-site scripting support in nginx Synopsis # accessing /foo?callback=process gives the response # body "process(...);" (without quotes) where "..." # is the original response body of the /foo location. server { location /foo { # your content handler goes here... xss_get on; xss_callback_arg 'callback'; xss_input_types 'application/json'; # default xss_output_type 'application/x-javascript'; # default } ... } Description This module adds cross-site AJAX support to nginx. Currently only cross-site GET is supported. But cross-site POST will be added in the future. Installation Grab the nginx source code from nginx.net (<http://nginx.net/>), for example, the version 0.8.32 (see nginx compatibility), and then build the source with this module: $ wget 'http://sysoev.ru/nginx/nginx-0.8.32.tar.gz' $ tar -xzvf nginx-0.8.32.tar.gz $ cd nginx-0.8.32/ # Here we assume you would install you nginx under /opt/nginx/. $ ./configure --prefix=/opt/nginx \ --add-module=/path/to/xss-nginx-module $ make -j2 $ make install Download the latest version of the release tarball of this module from xss-nginx-module file list (<http://github.com/agentzh/xss-nginx-module/downloads>). Compatibility The following versions of Nginx should work with this module: * 0.8.x (last tested version is 0.8.32) * 0.7.x >= 0.7.30 (last tested version is 0.7.64) Earlier versions of Nginx like 0.6.x and 0.5.x will *not* work. If you find that any particular version of Nginx above 0.7.30 does not work with this module, please consider reporting a bug. TODO * add cross-site POST support. Known Issues See Also * ngx_drizzle ( http://github.com/chaoslawful/drizzle-nginx-module ) Author agentzh (章亦春) <agentzh at gmail dot com> Copyright & License The implementation of the builtin connection pool has borrowed a lot of code from Maxim Dounin's upstream_keepalive module. This part of code is copyrighted by Maxim Dounin. This module is licenced under the BSD license. Copyright (c) 2009, Taobao Inc., Alibaba Group ( http://www.taobao.com ). Copyright (C) 2009 by agentzh <[email protected]>. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the Taobao Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
About
Native support for cross-site scripting (XSS) in an nginx
Resources
Stars
Watchers
Forks
Packages 0
No packages published
Languages
- Perl 92.9%
- C 6.3%
- Other 0.8%