1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
|
=encoding utf-8
=head1 Name
xss-nginx-module - Native cross-site scripting support in nginx
=head1 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
}
...
}
=head1 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.
The cross-site GET is currently implemented as JSONP
(or "JSON with padding"). See http://en.wikipedia.org/wiki/JSON#JSONP
for more details.
=head1 Directives
=head2 xss_get
B<syntax:> I<xss_get on | off>
B<default:> I<xss_get off>
B<context:> I<http, server, location, if location>
Enables JSONP support for GET requests.
=head2 xss_callback_arg
B<syntax:> I<xss_callback_arg E<lt>nameE<gt>>
B<default:> I<none>
B<context:> I<http, http, location, if location>
Specifies the JavaScript callback function name
used in the responses.
For example,
location /foo {
xss_get on;
xss_callback_arg c;
...
}
then
GET /foo?c=blah
returns
blah(...);
=head2 xss_override_status
B<syntax:> I<xss_override_status on | off>
B<default:> I<xss_check_status on>
B<context:> I<http, server, location, if location>
Specifies whether to override 30x, 40x and 50x status to 200
when the response is actually being processed.
=head2 xss_check_status
B<syntax:> I<xss_check_status on | off>
B<default:> I<xss_check_status on>
B<context:> I<http, server, location, if location>
By default, ngx_xss only process responses with the status code
200 or 201.
=head2 xss_input_types
B<syntax:> I<xss_input_types [mime-type]...>
B<default:> I<xss_input_types application/json>
B<context:> I<http, server, location, if location>
Only processes the responses of the specified MIME types.
Example:
xss_input_types application/json text/plain;
=head1 Limitations
=over
=item *
ngx_xss will not work with L<ngx_echo|https://github.com/openresty/echo-nginx-module>'s
subrequest interfaces, due to the underlying
limitations imposed by subrequests' "postponed chain" mechanism in the nginx core.
The standard ngx_addition module also falls into this category. You're recommended,
however, to use L<ngx_lua|https://github.com/openresty/lua-nginx-module> as the content
handler to issue subrequests I<and> ngx_xss
to do JSONP, because L<ngx_lua|https://github.com/openresty/lua-nginx-module>'s
L<ngx.location.capture()|https://github.com/openresty/lua-nginx-module#ngxlocationcapture>
interface does not utilize the "postponed chain" mechanism, thus getting out of this
limitation. We're taking this approach in production and it works great.
=back
=head1 Trouble Shooting
Use the "info" error log level (or lower) to get more
diagnostics when things go wrong.
=head1 Installation
You're recommended to install this module (as well as the Nginx core and many other goodies) via the L<OpenResty bundle|http://openresty.org>. See L<the detailed instructions|http://openresty.org/#Installation> for downloading and installing OpenResty into your system. This is the easiest and most safe way to set things up.
Alternatively, you can install this module manually with the Nginx source:
Grab the nginx source code from L<nginx.org|http://nginx.org/>, for example,
the version 1.13.6 (see L<nginx compatibility>), and then build the source with this module:
$ wget 'http://nginx.org/download/nginx-1.13.6.tar.gz'
$ tar -xzvf nginx-1.13.6.tar.gz
$ cd nginx-1.13.6/
# Here we assume you would install you nginx under /opt/nginx/.
$ ./configure --prefix=/opt/nginx \
--add-module=/path/to/rds-json-nginx-module
$ make -j2
$ make install
Download the latest version of the release tarball of this module from L<xss-nginx-module file list|https://github.com/openresty/xss-nginx-module/tags>.
Also, this module is included and enabled by default in the L<OpenResty bundle|http://openresty.org>.
=head1 Compatibility
The following versions of Nginx should work with this module:
=over
=item *
B<1.13.x> (last tested: 1.13.6)
=item *
B<1.12.x>
=item *
B<1.11.x> (last tested: 1.11.2)
=item *
B<1.10.x>
=item *
B<1.9.x> (last tested: 1.9.7)
=item *
B<1.8.x>
=item *
B<1.7.x> (last tested: 1.7.10)
=item *
B<1.6.x>
=item *
B<1.5.x>
=item *
B<1.4.x> (last tested: 1.4.3)
=item *
B<1.2.x> (last tested: 1.2.9)
=item *
B<1.0.x> (last tested: 1.0.10)
=item *
B<0.9.x> (last tested: 0.9.4)
=item *
B<0.8.x> (last tested: 0.8.54)
=item *
B<0.7.x> E<gt>= 0.7.30 (last tested: 0.7.67)
=back
Earlier versions of Nginx like 0.6.x and 0.5.x will I<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.
=head1 TODO
=over
=item *
add cross-site POST support.
=back
=head1 Author
Yichun "agentzh" Zhang (章亦春) E<lt>agentzh@gmail@comE<gt>
=head1 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-2018 by Yichun "agentzh" Zhang (章亦春) E<lt>agentzh@gmail.comE<gt> OpenResty Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
=over
=item *
Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
=item *
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.
=back
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.
=head1 See Also
=over
=item *
L<Introduction to JSONP|http://en.wikipedia.org/wiki/JSONP>
=item *
L<ngx_lua|https://github.com/openresty/lua-nginx-module>
=back
|