Skip to content

Commit a57b5f1

Browse files
committed
fix(query): allow arbitrary keys in queries
Revert "fix: do not allow invalid hazardous keys in query (#880)" This reverts commit ecd52e0.
1 parent 2c184fc commit a57b5f1

File tree

2 files changed

+0
-17
lines changed

2 files changed

+0
-17
lines changed

__tests__/parseQuery.spec.ts

-11
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,4 @@ describe('parseQuery', () => {
8585

8686
expect('decoding "%"').toHaveBeenWarnedTimes(1)
8787
})
88-
89-
it('ignores __proto__', () => {
90-
const query = parseQuery('__proto__=1')
91-
expect(query.__proto__).toEqual(Object.prototype)
92-
expect(query.constructor).toEqual(Object)
93-
})
94-
95-
it('ignores build-in methods', () => {
96-
const query = parseQuery('toString=1')
97-
expect(query.toString).toEqual(Object.prototype.toString)
98-
})
9988
})

src/query.ts

-6
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,6 @@ export function parseQuery(search: string): LocationQuery {
5757
// allow the = character
5858
let eqPos = searchParam.indexOf('=')
5959
let key = decode(eqPos < 0 ? searchParam : searchParam.slice(0, eqPos))
60-
61-
// this ignores ?__proto__&toString
62-
if (Object.prototype.hasOwnProperty(key)) {
63-
continue
64-
}
65-
6660
let value = eqPos < 0 ? null : decode(searchParam.slice(eqPos + 1))
6761

6862
if (key in query) {

0 commit comments

Comments
 (0)