Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit 274ef70

Browse files
author
Julio Farah
authored
Fix Potential DOM-based XSS via prototype pollution (#232)
* Fix Potential DOM-based XSS via prototype pollution * update history * undo linting changes * Delete yarn-error.log
1 parent 08a9d4f commit 274ef70

File tree

4 files changed

+20
-17
lines changed

4 files changed

+20
-17
lines changed

HISTORY.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 4.1.7 / 2021-03-17
2+
3+
- Fix Potential DOM-based XSS via prototype pollution
4+
15
# 4.1.6 / 2020-11-24
26

37
- Update `trim` package to address ReDoS vulnerability

lib/analytics.ts

+16-5
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ import {
66
SegmentAnalytics,
77
SegmentOpts,
88
SegmentIntegration,
9-
PageDefaults, Message
9+
PageDefaults
1010
} from './types';
1111

1212
import { pageDefaults } from './pageDefaults';
1313

1414
import cloneDeep from 'lodash.clonedeep'
1515
import pick from 'lodash.pick'
16+
import url from 'component-url'
1617

1718
var _analytics = global.analytics;
1819

@@ -37,7 +38,6 @@ var extend = require('extend');
3738
var cookie = require('./cookie');
3839
var metrics = require('./metrics');
3940
var debug = require('debug');
40-
var defaults = require('@ndhoule/defaults');
4141
var group = require('./group');
4242
var is = require('is');
4343
var isMeta = require('@segment/is-meta');
@@ -46,7 +46,6 @@ var nextTick = require('next-tick');
4646
var normalize = require('./normalize');
4747
var on = require('component-event').bind;
4848
var prevent = require('@segment/prevent-default');
49-
var querystring = require('component-querystring');
5049
var store = require('./store');
5150
var user = require('./user');
5251
var type = require('component-type');
@@ -69,7 +68,6 @@ function Analytics() {
6968
this.log = debug('analytics.js');
7069
bindAll(this);
7170

72-
7371
const self = this;
7472
this.on('initialize', function(_, options) {
7573
if (options.initialPageview) self.page();
@@ -960,9 +958,22 @@ Analytics.prototype.reset = function() {
960958
* @api private
961959
*/
962960

961+
interface QueryStringParams {
962+
[key: string]: string | null;
963+
}
964+
963965
Analytics.prototype._parseQuery = function(query: string): SegmentAnalytics {
964966
// Parse querystring to an object
965-
var q = querystring.parse(query);
967+
const parsed = url.parse(query);
968+
969+
const q = parsed.query
970+
.split('&')
971+
.reduce((acc: QueryStringParams, str: string) => {
972+
const [k, v] = str.split('=');
973+
acc[k] = decodeURI(v).replace('+', ' ');
974+
return acc;
975+
}, {});
976+
966977
// Create traits and properties objects, populate from querysting params
967978
var traits = pickPrefix('ajs_trait_', q);
968979
var props = pickPrefix('ajs_prop_', q);

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
"bind-all": "^1.0.0",
4242
"component-emitter": "^1.2.1",
4343
"component-event": "^0.1.4",
44-
"component-querystring": "^2.0.0",
4544
"component-type": "^1.2.1",
4645
"component-url": "^0.2.1",
4746
"debug": "^2.6.9",

yarn.lock

-11
Original file line numberDiff line numberDiff line change
@@ -2526,21 +2526,10 @@ component-props@*:
25262526
version "1.1.1"
25272527
resolved "https://registry.yarnpkg.com/component-props/-/component-props-1.1.1.tgz#f9b7df9b9927b6e6d97c9bd272aa867670f34944"
25282528

2529-
component-querystring@^2.0.0:
2530-
version "2.0.0"
2531-
resolved "https://registry.yarnpkg.com/component-querystring/-/component-querystring-2.0.0.tgz#84a95d18e471c8491b043df240f0d18d4db527ec"
2532-
dependencies:
2533-
component-type "1.1.0"
2534-
trim "0.0.1"
2535-
25362529
25372530
version "1.0.0"
25382531
resolved "https://registry.yarnpkg.com/component-type/-/component-type-1.0.0.tgz#1ed8812e32dd65099d433570757f111ea3d3d871"
25392532

2540-
2541-
version "1.1.0"
2542-
resolved "https://registry.yarnpkg.com/component-type/-/component-type-1.1.0.tgz#95b666aad53e5c8d1f2be135c45b5d499197c0c5"
2543-
25442533
component-type@^1.2.0, component-type@^1.2.1:
25452534
version "1.2.1"
25462535
resolved "https://registry.yarnpkg.com/component-type/-/component-type-1.2.1.tgz#8a47901700238e4fc32269771230226f24b415a9"

0 commit comments

Comments
 (0)