File tree 2 files changed +38
-1
lines changed
2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,20 @@ const isDomainOrSubdomain = (destination, original) => {
36
36
) ;
37
37
} ;
38
38
39
+ /**
40
+ * isSameProtocol reports whether the two provided URLs use the same protocol.
41
+ *
42
+ * Both domains must already be in canonical form.
43
+ * @param {string|URL } original
44
+ * @param {string|URL } destination
45
+ */
46
+ const isSameProtocol = ( destination , original ) => {
47
+ const orig = new URL ( original ) . protocol ;
48
+ const dest = new URL ( destination ) . protocol ;
49
+
50
+ return orig === dest ;
51
+ } ;
52
+
39
53
40
54
/**
41
55
* Fetch function
@@ -214,7 +228,7 @@ export default function fetch(url, opts) {
214
228
size : request . size
215
229
} ;
216
230
217
- if ( ! isDomainOrSubdomain ( request . url , locationURL ) ) {
231
+ if ( ! isDomainOrSubdomain ( request . url , locationURL ) || ! isSameProtocol ( request . url , locationURL ) ) {
218
232
for ( const name of [ 'authorization' , 'www-authenticate' , 'cookie' , 'cookie2' ] ) {
219
233
requestOpts . headers . delete ( name ) ;
220
234
}
Original file line number Diff line number Diff line change @@ -1677,6 +1677,29 @@ describe('node-fetch', () => {
1677
1677
} ) ;
1678
1678
} ) ;
1679
1679
1680
+ it ( 'should not forward secure headers to changed protocol' , async ( ) => {
1681
+ const res = await fetch ( 'https://httpbin.org/redirect-to?url=http%3A%2F%2Fhttpbin.org%2Fget&status_code=302' , {
1682
+ headers : new Headers ( {
1683
+ cookie : 'gets=removed' ,
1684
+ cookie2 : 'gets=removed' ,
1685
+ authorization : 'gets=removed' ,
1686
+ 'www-authenticate' : 'gets=removed' ,
1687
+ 'other-safe-headers' : 'stays' ,
1688
+ 'x-foo' : 'bar'
1689
+ } )
1690
+ } ) ;
1691
+
1692
+ const headers = new Headers ( ( await res . json ( ) ) . headers ) ;
1693
+ // Safe headers are not removed
1694
+ expect ( headers . get ( 'other-safe-headers' ) ) . to . equal ( 'stays' ) ;
1695
+ expect ( headers . get ( 'x-foo' ) ) . to . equal ( 'bar' ) ;
1696
+ // Unsafe headers should not have been sent to downgraded http
1697
+ expect ( headers . get ( 'cookie' ) ) . to . equal ( null ) ;
1698
+ expect ( headers . get ( 'cookie2' ) ) . to . equal ( null ) ;
1699
+ expect ( headers . get ( 'www-authenticate' ) ) . to . equal ( null ) ;
1700
+ expect ( headers . get ( 'authorization' ) ) . to . equal ( null ) ;
1701
+ } ) ;
1702
+
1680
1703
it ( 'should forward secure headers to same host' , ( ) => {
1681
1704
return fetch ( `${ base } redirect-to/302/${ base } inspect` , {
1682
1705
headers : new Headers ( {
You can’t perform that action at this time.
0 commit comments