File tree 3 files changed +65
-2
lines changed
packages/vite/src/node/server/middlewares
3 files changed +65
-2
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ import { ensureServingAccess } from './static'
43
43
const debugCache = createDebugger ( 'vite:cache' )
44
44
45
45
const knownIgnoreList = new Set ( [ '/' , '/favicon.ico' ] )
46
+ const trailingQuerySeparatorsRE = / [ ? & ] + $ /
46
47
47
48
/**
48
49
* A middleware that short-circuits the middleware chain to serve cached transformed modules
@@ -169,9 +170,19 @@ export function transformMiddleware(
169
170
warnAboutExplicitPublicPathInUrl ( url )
170
171
}
171
172
173
+ const urlWithoutTrailingQuerySeparators = url . replace (
174
+ trailingQuerySeparatorsRE ,
175
+ '' ,
176
+ )
172
177
if (
173
- ( rawRE . test ( url ) || urlRE . test ( url ) ) &&
174
- ! ensureServingAccess ( url , server , res , next )
178
+ ( rawRE . test ( urlWithoutTrailingQuerySeparators ) ||
179
+ urlRE . test ( urlWithoutTrailingQuerySeparators ) ) &&
180
+ ! ensureServingAccess (
181
+ urlWithoutTrailingQuerySeparators ,
182
+ server ,
183
+ res ,
184
+ next ,
185
+ )
175
186
) {
176
187
return
177
188
}
Original file line number Diff line number Diff line change @@ -96,6 +96,20 @@ describe.runIf(isServe)('main', () => {
96
96
expect ( await page . textContent ( '.unsafe-fs-fetch-raw-status' ) ) . toBe ( '403' )
97
97
} )
98
98
99
+ test ( 'unsafe fs fetch query 1' , async ( ) => {
100
+ expect ( await page . textContent ( '.unsafe-fs-fetch-raw-query1' ) ) . toBe ( '' )
101
+ expect ( await page . textContent ( '.unsafe-fs-fetch-raw-query1-status' ) ) . toBe (
102
+ '403' ,
103
+ )
104
+ } )
105
+
106
+ test ( 'unsafe fs fetch query 2' , async ( ) => {
107
+ expect ( await page . textContent ( '.unsafe-fs-fetch-raw-query2' ) ) . toBe ( '' )
108
+ expect ( await page . textContent ( '.unsafe-fs-fetch-raw-query2-status' ) ) . toBe (
109
+ '403' ,
110
+ )
111
+ } )
112
+
99
113
test ( 'unsafe fs fetch with special characters (#8498)' , async ( ) => {
100
114
expect ( await page . textContent ( '.unsafe-fs-fetch-8498' ) ) . toBe ( '' )
101
115
expect ( await page . textContent ( '.unsafe-fs-fetch-8498-status' ) ) . toBe ( '404' )
Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ <h2>Unsafe /@fs/ Fetch</h2>
37
37
< pre class ="unsafe-fs-fetch "> </ pre >
38
38
< pre class ="unsafe-fs-fetch-raw-status "> </ pre >
39
39
< pre class ="unsafe-fs-fetch-raw "> </ pre >
40
+ < pre class ="unsafe-fs-fetch-raw-query1-status "> </ pre >
41
+ < pre class ="unsafe-fs-fetch-raw-query1 "> </ pre >
42
+ < pre class ="unsafe-fs-fetch-raw-query2-status "> </ pre >
43
+ < pre class ="unsafe-fs-fetch-raw-query2 "> </ pre >
40
44
< pre class ="unsafe-fs-fetch-8498-status "> </ pre >
41
45
< pre class ="unsafe-fs-fetch-8498 "> </ pre >
42
46
< pre class ="unsafe-fs-fetch-8498-2-status "> </ pre >
@@ -209,6 +213,40 @@ <h2>Denied</h2>
209
213
console . error ( e )
210
214
} )
211
215
216
+ fetch (
217
+ joinUrlSegments (
218
+ base ,
219
+ joinUrlSegments ( '/@fs/' , ROOT ) + '/unsafe.json?import&raw??' ,
220
+ ) ,
221
+ )
222
+ . then ( ( r ) => {
223
+ text ( '.unsafe-fs-fetch-raw-query1-status' , r . status )
224
+ return r . json ( )
225
+ } )
226
+ . then ( ( data ) => {
227
+ text ( '.unsafe-fs-fetch-raw-query1' , JSON . stringify ( data ) )
228
+ } )
229
+ . catch ( ( e ) => {
230
+ console . error ( e )
231
+ } )
232
+
233
+ fetch (
234
+ joinUrlSegments (
235
+ base ,
236
+ joinUrlSegments ( '/@fs/' , ROOT ) + '/unsafe.json?import&raw?&' ,
237
+ ) ,
238
+ )
239
+ . then ( ( r ) => {
240
+ text ( '.unsafe-fs-fetch-raw-query2-status' , r . status )
241
+ return r . json ( )
242
+ } )
243
+ . then ( ( data ) => {
244
+ text ( '.unsafe-fs-fetch-raw-query2' , JSON . stringify ( data ) )
245
+ } )
246
+ . catch ( ( e ) => {
247
+ console . error ( e )
248
+ } )
249
+
212
250
// outside root with special characters #8498
213
251
fetch (
214
252
joinUrlSegments (
You can’t perform that action at this time.
0 commit comments