This repository was archived by the owner on May 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathDefaultEncoder.php
More file actions
executable file
·428 lines (379 loc) · 12.6 KB
/
DefaultEncoder.php
File metadata and controls
executable file
·428 lines (379 loc) · 12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
<?php
/**
* OWASP Enterprise Security API (ESAPI)
*
* This file is part of the Open Web Application Security Project (OWASP)
* Enterprise Security API (ESAPI) project.
*
* PHP version 5.2
*
* LICENSE: This source file is subject to the New BSD license. You should read
* and accept the LICENSE before you use, modify, and/or redistribute this
* software.
*
* @category OWASP
* @package ESAPI_Reference
* @author Jeff Williams <jeff.williams@aspectsecurity.com>
* @author Linden Darling <Linden.Darling@jds.net.au>
* @author jah <jah@jahboite.co.uk>
* @author Mike Boberski <boberski_michael@bah.com>
* @copyright 2009-2010 The OWASP Foundation
* @license http://www.opensource.org/licenses/bsd-license.php New BSD license
* @version SVN: $Id$
* @link http://www.owasp.org/index.php/ESAPI
*/
/**
* DefaultEncoder requires the interface it implements and any Codecs it uses.
*/
require_once dirname(__FILE__).'/../Encoder.php';
require_once dirname(__FILE__).'/../codecs/Base64Codec.php';
require_once dirname(__FILE__).'/../codecs/CSSCodec.php';
require_once dirname(__FILE__).'/../codecs/HTMLEntityCodec.php';
require_once dirname(__FILE__).'/../codecs/JavaScriptCodec.php';
require_once dirname(__FILE__).'/../codecs/PercentCodec.php';
require_once dirname(__FILE__).'/../codecs/VBScriptCodec.php';
require_once dirname(__FILE__).'/../codecs/XMLEntityCodec.php';
/**
* Reference implementation of the Encoder interface.
*
* @category OWASP
* @package ESAPI_Reference
* @author Linden Darling <Linden.Darling@jds.net.au>
* @author jah <jah@jahboite.co.uk>
* @author Mike Boberski <boberski_michael@bah.com>
* @copyright 2009-2010 The OWASP Foundation
* @license http://www.opensource.org/licenses/bsd-license.php New BSD license
* @version Release: @package_version@
* @link http://www.owasp.org/index.php/ESAPI
*/
class DefaultEncoder implements Encoder
{
private $_base64Codec = null;
private $_cssCodec = null;
private $_htmlCodec = null;
private $_javascriptCodec = null;
private $_percentCodec = null;
private $_vbscriptCodec = null;
private $_xmlCodec = null;
/*
* Character sets that define characters (in addition to alphanumerics) that are
* immune from encoding in various formats
*/
private $_immune_css = array( ' ' );
private $_immune_html = array( ',', '.', '-', '_', ' ' );
private $_immune_htmlattr = array( ',', '.', '-', '_' );
private $_immune_javascript = array( ',', '.', '_' );
private $_immune_os = array( '-' );
private $_immune_sql = array( ' ' );
private $_immune_vbscript = array( ' ' );
private $_immune_xml = array( ',', '.', '-', '_', ' ' );
private $_immune_xmlattr = array( ',', '.', '-', '_' );
private $_immune_xpath = array( ',', '.', '-', '_', ' ' );
private $_immune_url = array( '.', '-', '*', '_');
private $_codecs = array();
private $_auditor = null;
/**
* Encoder constructor.
*
* @param array $codecs An array of Codec instances which will be used for
* canonicalization.
*
* @return does not return a value.
*
* @throws InvalidArgumentException
*/
function __construct($codecs = null)
{
$this->logger = ESAPI::getAuditor("Encoder");
// initialise codecs
$this->_base64Codec = new Base64Codec();
$this->_cssCodec = new CSSCodec();
$this->_htmlCodec = new HTMLEntityCodec();
$this->_javascriptCodec = new JavaScriptCodec();
$this->_percentCodec = new PercentCodec();
$this->_vbscriptCodec = new VBScriptCodec();
$this->_xmlCodec = new XMLEntityCodec();
// initialise array of codecs for use by canonicalize
if ($codecs === null) {
array_push($this->_codecs, $this->_htmlCodec);
array_push($this->_codecs, $this->_javascriptCodec);
array_push($this->_codecs, $this->_percentCodec);
// leaving css and vbs codecs out - they eat / and " chars respectively
// array_push($this->_codecs,$this->_cssCodec);
// array_push($this->_codecs,$this->_vbscriptCodec);
} else if (! is_array($codecs)) {
throw new InvalidArgumentException(
'Expected the $codecs array parameter to be an array of instances of Codec.'
);
} else {
// check array contains only codec instances
foreach ($codecs as $codec) {
if ($codec instanceof Codec == false) {
throw new InvalidArgumentException(
'Expected every member of the $codecs array parameter to be an instance of Codec.'
);
}
}
$this->_codecs = array_merge($this->_codecs, $codecs);
}
}
/**
* @inheritdoc
*/
function canonicalize($input, $strict = true)
{
if ($input === null) {
return null;
}
$working = $input;
$codecFound = null;
$mixedCount = 1;
$foundCount = 0;
$clean = false;
while (! $clean) {
$clean = true;
foreach ($this->_codecs as $codec) {
$old = $working;
$working = $codec->decode($working);
if ($old != $working) {
if ($codecFound != null && $codecFound != $codec) {
$mixedCount++;
}
$codecFound = $codec;
if ($clean) {
$foundCount++;
}
$clean = false;
}
}
}
if ( $foundCount >= 2 && $mixedCount > 1 ) {
if ( $strict == true ) {
throw new IntrusionException('Input validation failure',
'Multiple (' . $foundCount . 'x) and mixed ('
. $mixedCount . 'x) encoding detected in ' . $input
);
} else {
$this->logger->warning(
Auditor::SECURITY, false,
'Multiple (' . $foundCount . 'x) and mixed ('
. $mixedCount . 'x) encoding detected in '.$input
);
}
} else if ( $foundCount >= 2 ) {
if ( $strict == true ) {
throw new IntrusionException(
'Input validation failure',
"Multiple encoding ({$foundCount}x) detected in {$input}"
);
} else {
$this->logger->warning(
Auditor::SECURITY, false,
"Multiple encoding ({$foundCount}x) detected in {$input}"
);
}
} else if ( $mixedCount > 1 ) {
if ( $strict == true ) {
throw new IntrusionException(
'Input validation failure',
"Mixed encoding ({$mixedCount}x) detected in {$input}"
);
} else {
$this->logger->warning(
Auditor::SECURITY, false,
"Mixed encoding ({$mixedCount}x) detected in {$input}"
);
}
}
return $working;
}
/**
* @inheritdoc
*/
function encodeForCSS($input)
{
if ($input === null) {
return null;
}
return $this->_cssCodec->encode($this->_immune_css, $input);
}
/**
* @inheritdoc
*/
function encodeForHTML($input)
{
if ($input === null) {
return null;
}
return $this->_htmlCodec->encode($this->_immune_html, $input);
}
/**
* @inheritdoc
*/
function encodeForHTMLAttribute($input)
{
if ($input === null) {
return null;
}
return $this->_htmlCodec->encode($this->_immune_htmlattr, $input);
}
/**
* @inheritdoc
*/
function encodeForJavaScript($input)
{
if ($input === null) {
return null;
}
return $this->_javascriptCodec->encode($this->_immune_javascript, $input);
}
/**
* @inheritdoc
*/
function encodeForVBScript($input)
{
if ($input === null) {
return null;
}
return $this->_vbscriptCodec->encode($this->_immune_vbscript, $input);
}
/**
* @inheritdoc
*/
function encodeForSQL($codec, $input)
{
if ($input === null) {
return null;
}
return $codec->encode($this->_immune_sql, $input);
}
/**
* @inheritdoc
*/
function encodeForOS($codec, $input)
{
if ($input === null) {
return null;
}
if ($codec instanceof Codec == false) {
ESAPI::getLogger('Encoder')->error(
ESAPILogger::SECURITY, false,
'Invalid Argument, expected an instance of an OS Codec.'
);
return null;
}
return $codec->encode($this->_immune_os, $input);
}
/**
* @inheritdoc
*/
function encodeForXPath($input)
{
if ($input === null) {
return null;
}
return $this->_htmlCodec->encode($this->_immune_xpath, $input);
}
/**
* @inheritdoc
*/
function encodeForXML($input)
{
if ($input === null) {
return null;
}
return $this->_xmlCodec->encode($this->_immune_xml, $input);
}
/**
* @inheritdoc
*/
function encodeForXMLAttribute($input)
{
if ($input === null) {
return null;
}
return $this->_xmlCodec->encode($this->_immune_xmlattr, $input);
}
/**
* @inheritdoc
*/
function encodeForURL($input)
{
if ($input === null) {
return null;
}
$encoded = $this->_percentCodec->encode($this->_immune_url, $input);
$initialEncoding = $this->_percentCodec->detectEncoding($encoded);
$decodedString = mb_convert_encoding('', $initialEncoding);
$pcnt = $this->_percentCodec->normalizeEncoding('%');
$two = $this->_percentCodec->normalizeEncoding('2');
$zero = $this->_percentCodec->normalizeEncoding('0');
$char_plus = mb_convert_encoding('+', $initialEncoding);
$index = 0;
$limit = mb_strlen($encoded, $initialEncoding);
for ($i = 0; $i < $limit; $i++) {
if ($index > $i) {
continue; // already dealt with this character
}
$c = mb_substr($encoded, $i, 1, $initialEncoding);
$d = mb_substr($encoded, $i+1, 1, $initialEncoding);
$e = mb_substr($encoded, $i+2, 1, $initialEncoding);
if ( $this->_percentCodec->normalizeEncoding($c) == $pcnt
&& $this->_percentCodec->normalizeEncoding($d) == $two
&& $this->_percentCodec->normalizeEncoding($e) == $zero
) {
$decodedString .= $char_plus;
$index += 3;
} else {
$decodedString .= $c;
$index++;
}
}
return $decodedString;
}
/**
* @inheritdoc
*/
function decodeFromURL($input)
{
if ($input === null) {
return null;
}
$canonical = $this->canonicalize($input, true);
// Replace '+' with ' '
$initialEncoding = $this->_percentCodec->detectEncoding($canonical);
$decodedString = mb_convert_encoding('', $initialEncoding);
$find = $this->_percentCodec->normalizeEncoding('+');
$char_space = mb_convert_encoding(' ', $initialEncoding);
$limit = mb_strlen($canonical, $initialEncoding);
for ($i = 0; $i < $limit; $i++) {
$c = mb_substr($canonical, $i, 1, $initialEncoding);
if ($this->_percentCodec->normalizeEncoding($c) == $find) {
$decodedString .= $char_space;
} else {
$decodedString .= $c;
}
}
return $this->_percentCodec->decode($decodedString);
}
/**
* @inheritdoc
*/
function encodeForBase64($input, $wrap = true)
{
if ($input === null) {
return null;
}
return $this->_base64Codec->encode($input, $wrap);
}
/**
* @inheritdoc
*/
function decodeFromBase64($input)
{
if ($input === null) {
return null;
}
return $this->_base64Codec->decode($input);
}
}