Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

refactor cleanInput utility method to prevent double encoding #1980

Merged
merged 4 commits into from
Jun 19, 2017
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions js/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,18 @@
var isUpArrow = isKey(CONST.UP_ARROW_KEYCODE);
var isDownArrow = isKey(CONST.DOWN_ARROW_KEYCODE);

// https://github.com/ExactTarget/fuelux/issues/1841
var xssRegex = /<.*>/;
var cleanInput = function cleanInput (questionableInput) {
var cleanedInput = questionableInput;

if (xssRegex.test(cleanedInput)) {
cleanedInput = $('<i>').text(questionableInput).html();
var ENCODED_REGEX = /&[^\s]*;/;
/*
* to prevent double encoding decodes content in loop until content is encoding free
*/
var cleanInput = function cleanInput (questionableMarkup) {
// check for encoding and decode
while (ENCODED_REGEX.test(questionableMarkup)) {
questionableMarkup = $('<i>').html(questionableMarkup).text();
}

return cleanedInput;
// string completely decoded now encode it
return $('<i>').text(questionableMarkup).html();
};

$.fn.utilities = {
Expand All @@ -79,4 +81,3 @@
// -- BEGIN UMD WRAPPER AFTERWORD --
}));
// -- END UMD WRAPPER AFTERWORD --

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
"url": "https://github.com/ExactTarget/fuelux/issues"
},
"dependencies": {
"babel-eslint": "^7.2.3",
"bootstrap": "3.3.7",
"eslint-plugin-react": "^7.0.1",
"jquery": "3.2.1",
"moment": "2.18.1"
},
Expand Down
1 change: 1 addition & 0 deletions test/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,5 @@ define(function testWrapper (require) {
require('./test/picker-test');
require('./test/tree-test');
require('./test/wizard-test');
require('./test/utilities-test');
});
41 changes: 41 additions & 0 deletions test/utilities-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
define( function utilitiesTestModule(require) {
var QUnit = require('qunit');
var $ = require('jquery');

require('fuelux/utilities');

QUnit.module( 'Fuel UX Utilities', function utilitiesTests() {
QUnit.test( 'should be defined on jquery object', function utilitiesObjectDefinedTest( assert ) {
assert.equal(typeof $().utilities, 'object', 'utilities object is defined' );
});

QUnit.module( 'cleanInput Method', {
beforeEach: function beforeEachUtilitiesCleanInputTests() {
this.utilities = $().utilities;
this.cleanInput = this.utilities.cleanInput;
}
}, function utilitiesCleanInputTests() {
QUnit.test( 'should be defined on utilities object', function cleanInputMethodDefinedTest( assert ) {
assert.equal(typeof this.utilities.cleanInput, 'function', 'cleanInput function is defined' );
});

QUnit.test( 'should encode strings', function cleanInputMethodEncodeTest( assert ) {
var dirtyString = '<script>';
var cleanString = '&lt;script&gt;';
assert.equal(this.cleanInput(dirtyString), cleanString, 'string should be encoded' );
});

QUnit.test( 'should not double encode strings', function cleanInputMethodEncodeTest( assert ) {
var variants = [
{dirtyString: '&lt;&gt;', cleanString: '&lt;&gt;'},
{dirtyString: '&lt;script&gt;', cleanString: '&lt;script&gt;'},
{dirtyString: '<&lt;&gt;>', cleanString: '&lt;&lt;&gt;&gt;'}
];

variants.forEach(function forEachDoubleEncodeVariant(variant, index) {
assert.equal(this.cleanInput(variant.dirtyString), variant.cleanString, 'variant ' + (index + 1) + ' string should be encoded' );
}, this);
});
});
});
});