Skip to content

Commit b14b62c

Browse files
committed
Tests: Strip untypical callback parameter characters from mock.php
Only allow alphanumeric characters & underscores for callback parameters. The change is done both for the PHP server as well as the Node.js-based version. This is only test code so we're not fixing any security issue but it happens often enough that the whole jQuery repository directory structure is deployed onto the server with PHP enabled that it makes is easy to introduce security issues if this cleanup is not done. Ref gh-4764 Closes gh-4871 (cherry picked from a702746)
1 parent 3642471 commit b14b62c

File tree

2 files changed

+21
-11
lines changed

2 files changed

+21
-11
lines changed

test/data/mock.php

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
<?php
2+
23
/**
34
* Keep in sync with /test/middleware-mockserver.js
45
*/
6+
function cleanCallback( $callback ) {
7+
return preg_replace( '/[^a-z0-9_]/i', '', $callback );
8+
}
9+
510
class MockServer {
611
protected function contentType( $req ) {
712
$type = $req->query['contentType'];
@@ -87,17 +92,17 @@ protected function jsonp( $req ) {
8792
} else {
8893
$callback = $_POST['callback'];
8994
}
90-
if ( isset( $req->query['array'] ) ) {
91-
echo $callback . '([ {"name": "John", "age": 21}, {"name": "Peter", "age": 25 } ])';
92-
} else {
93-
echo $callback . '({ "data": {"lang": "en", "length": 25} })';
94-
}
95+
$json = isset( $req->query['array'] ) ?
96+
'[ { "name": "John", "age": 21 }, { "name": "Peter", "age": 25 } ]' :
97+
'{ "data": { "lang": "en", "length": 25 } }';
98+
echo cleanCallback( $callback ) . '(' . $json . ')';
9599
}
96100

97101
protected function xmlOverJsonp( $req ) {
98102
$callback = $_REQUEST['callback'];
103+
$cleanCallback = cleanCallback( $callback );
99104
$text = json_encode( file_get_contents( __DIR__ . '/with_fries.xml' ) );
100-
echo "$callback($text)\n";
105+
echo "$cleanCallback($text)\n";
101106
}
102107

103108
protected function error( $req ) {
@@ -223,7 +228,7 @@ protected function errorWithScript( $req ) {
223228
}
224229
if ( isset( $req->query['callback'] ) ) {
225230
$callback = $req->query['callback'];
226-
echo $callback . '( {"status": 404, "msg": "Not Found"} )';
231+
echo cleanCallback( $callback ) . '( {"status": 404, "msg": "Not Found"} )';
227232
} else {
228233
echo 'QUnit.assert.ok( false, "Mock return erroneously executed" );';
229234
}

test/middleware-mockserver.js

+9-4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ var cspLog = "";
77
/**
88
* Keep in sync with /test/mock.php
99
*/
10+
function cleanCallback( callback ) {
11+
return callback.replace( /[^a-z0-9_]/gi, "" );
12+
}
13+
1014
var mocks = {
1115
contentType: function( req, resp ) {
1216
resp.writeHead( 200, {
@@ -112,14 +116,14 @@ var mocks = {
112116
{ data: { lang: "en", length: 25 } }
113117
);
114118
callback.then( function( cb ) {
115-
resp.end( cb + "(" + json + ")" );
119+
resp.end( cleanCallback( cb ) + "(" + json + ")" );
116120
}, next );
117121
},
118122
xmlOverJsonp: function( req, resp ) {
119123
var callback = req.query.callback;
120124
var body = fs.readFileSync( __dirname + "/data/with_fries.xml" ).toString();
121125
resp.writeHead( 200 );
122-
resp.end( callback + "(" + JSON.stringify( body ) + ")\n" );
126+
resp.end( cleanCallback( callback ) + "(" + JSON.stringify( body ) + ")\n" );
123127
},
124128
error: function( req, resp ) {
125129
if ( req.query.json ) {
@@ -233,10 +237,11 @@ var mocks = {
233237
if ( req.query.withScriptContentType ) {
234238
resp.writeHead( 404, { "Content-Type": "application/javascript" } );
235239
} else {
236-
resp.writeHead( 404 );
240+
resp.writeHead( 404, { "Content-Type": "text/html; charset=UTF-8" } );
237241
}
238242
if ( req.query.callback ) {
239-
resp.end( req.query.callback + "( {\"status\": 404, \"msg\": \"Not Found\"} )" );
243+
resp.end( cleanCallback( req.query.callback ) +
244+
"( {\"status\": 404, \"msg\": \"Not Found\"} )" );
240245
} else {
241246
resp.end( "QUnit.assert.ok( false, \"Mock return erroneously executed\" );" );
242247
}

0 commit comments

Comments
 (0)