-
Notifications
You must be signed in to change notification settings - Fork 1
/
rts.exp.publicfile
306 lines (267 loc) · 6.19 KB
/
rts.exp.publicfile
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
--- httpd handles HTTP/1.0 GET
1.2.3.4 read ./0/foo: success
HTTP/1.0 200 OK
Server: publicfile
Date: ...
Content-Type: text/plain
Content-Length: 13
Hello, world
0
--- httpd handles HTTP/1.0 HEAD
1.2.3.4 read ./0/foo: success
HTTP/1.0 200 OK
Server: publicfile
Date: ...
Content-Type: text/plain
Content-Length: 13
0
--- httpd handles HTTP/1.0 %xx
1.2.3.4 read ./0/foo: success
HTTP/1.0 200 OK
Server: publicfile
Date: ...
Content-Type: text/plain
Content-Length: 13
Hello, world
0
--- httpd handles HTTP/1.1 GET with Host
1.2.3.4 read ./0/foo: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: text/plain
Transfer-Encoding: chunked
d
Hello, world
0
0
--- httpd rejects HTTP/1.1 GET without host
HTTP/1.1 400 HTTP/1.1 requests must include a host name
Server: publicfile
Date: ...
Content-Length: 70
Connection: close
Content-Type: text/html
<html><body>HTTP/1.1 requests must include a host name</body></html>
--- httpd handles HTTP/1.1 HEAD with Host
1.2.3.4 read ./0/foo: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: text/plain
Transfer-Encoding: chunked
0
--- httpd handles multiple HTTP/1.1 requests
1.2.3.4 read ./0/foo: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: text/plain
Transfer-Encoding: chunked
d
Hello, world
0
1.2.3.4 read ./0/bar: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: text/plain
Transfer-Encoding: chunked
3
Hi
0
0
--- httpd prints error message for ENOENT
1.2.3.4 read ./0/nonexistent: open failed: file does not exist
HTTP/1.0 404 file does not exist
Server: publicfile
Date: ...
Content-Length: 47
Content-Type: text/html
<html><body>file does not exist</body></html>
0
--- httpd omits body from HEAD error message
1.2.3.4 read ./0/nonexistent: open failed: file does not exist
HTTP/1.0 404 file does not exist
Server: publicfile
Date: ...
Content-Length: 47
Content-Type: text/html
0
--- httpd prints error message for ELOOP
1.2.3.4 read ./0/loop: open failed: symbolic link loop
HTTP/1.0 404 symbolic link loop
Server: publicfile
Date: ...
Content-Length: 46
Content-Type: text/html
<html><body>symbolic link loop</body></html>
0
--- httpd prints error message for file not group-readable
1.2.3.4 read ./0/unreadable: not ugo+r
HTTP/1.0 404 access denied
Server: publicfile
Date: ...
Content-Length: 41
Content-Type: text/html
<html><body>access denied</body></html>
0
--- httpd prints error message for file not world-readable
1.2.3.4 read ./0/unreadable: not ugo+r
HTTP/1.0 404 access denied
Server: publicfile
Date: ...
Content-Length: 41
Content-Type: text/html
<html><body>access denied</body></html>
0
--- httpd prints error message for 101 001
1.2.3.4 read ./0/unreadable: o+x but u-x
HTTP/1.0 404 access denied
Server: publicfile
Date: ...
Content-Length: 41
Content-Type: text/html
<html><body>access denied</body></html>
0
--- httpd prints error message for directory
1.2.3.4 read ./0/subdirectory: not a regular file
HTTP/1.0 404 access denied
Server: publicfile
Date: ...
Content-Length: 41
Content-Type: text/html
<html><body>access denied</body></html>
0
--- httpd lowercases host names
1.2.3.4 read ./0virtual/index.html: success
HTTP/1.0 200 OK
Server: publicfile
Date: ...
Content-Type: text/html
Content-Length: 34
<html><body>Virtual</body></html>
0
--- httpd does index.html rewriting
1.2.3.4 read ./0virtual/index.html: success
HTTP/1.0 200 OK
Server: publicfile
Date: ...
Content-Type: text/html
Content-Length: 34
<html><body>Virtual</body></html>
0
--- httpd rewrites dots after slashes
1.2.3.4 read ./0virtual/:./:/index.html: success
HTTP/1.0 200 OK
Server: publicfile
Date: ...
Content-Type: text/html
Content-Length: 33
<html><body>colons</body></html>
0
--- httpd rejects unrecognized requests
HTTP/1.0 501 method not implemented
Server: publicfile
Date: ...
Content-Length: 50
Content-Type: text/html
<html><body>method not implemented</body></html>
0
--- httpd rejects lowercase requests
HTTP/1.0 501 method not implemented
Server: publicfile
Date: ...
Content-Length: 50
Content-Type: text/html
<html><body>method not implemented</body></html>
0
--- httpd rejects Expect
HTTP/1.0 417 I do not accept Expect
Server: publicfile
Date: ...
Content-Length: 50
Content-Type: text/html
<html><body>I do not accept Expect</body></html>
0
--- httpd converts names to file types
1.2.3.4 read ./0/foo...audio=vnd:digital-winds: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: audio/vnd.digital-winds
Transfer-Encoding: chunked
1.2.3.4 read ./0/foo...dvi: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: application/x-dvi
Transfer-Encoding: chunked
1.2.3.4 read ./0/foo...gif: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: image/gif
Transfer-Encoding: chunked
1.2.3.4 read ./0/foo...gz: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: application/x-gzip
Transfer-Encoding: chunked
1.2.3.4 read ./0/foo...html: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: text/html
Transfer-Encoding: chunked
1.2.3.4 read ./0/foo...jpeg: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: image/jpeg
Transfer-Encoding: chunked
1.2.3.4 read ./0/foo...mpeg: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: video/mpeg
Transfer-Encoding: chunked
1.2.3.4 read ./0/foo...pdf: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: application/pdf
Transfer-Encoding: chunked
1.2.3.4 read ./0/foo...png: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: image/png
Transfer-Encoding: chunked
1.2.3.4 read ./0/foo...ps: success
HTTP/1.1 200 OK
Server: publicfile
Date: ...
Content-Type: application/postscript
Transfer-Encoding: chunked
0
--- httpd prints Last-Modified
1.2.3.4 read ./0/old: success
HTTP/1.0 200 OK
Server: publicfile
Date: ...
Last-Modified: Thu, 01 Jan 1970 03:25:45 GMT
Content-Type: text/plain
Content-Length: 5
test
0
--- httpd handles If-Modified-Since
1.2.3.4 read ./0/old: success
HTTP/1.0 304 OK
Server: publicfile
Date: ...
Last-Modified: Thu, 01 Jan 1970 03:25:45 GMT
Content-Type: text/plain
Content-Length: 5
0