summaryrefslogtreecommitdiff
path: root/tests/UnitTests/SecurityTests/SecurityTest.php
blob: 9996f22520ad1a97297bc63d0e5a7c53c6186ba8 (plain)
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
<?php
/**
 * Smarty PHPunit tests for security
 *

 * @author  Uwe Tews
 */

use Smarty\CompilerException;

/**
 * class for security test
 */
class SecurityTest extends PHPUnit_Smarty
{
	public function setUp(): void
	{
		$this->setUpSmarty(__DIR__);

		$this->smarty->setForceCompile(true);
		$this->smarty->enableSecurity();
	}
	public function testInit()
	{
		$this->cleanDirs();
	}

	/**
	 * test that security is loaded
	 */
	public function testSecurityLoaded()
	{
		$this->assertTrue(is_object($this->smarty->security_policy));
	}

	/**
	 * test trusted PHP function
	 */
	public function testTrustedFunction()
	{
		$this->assertEquals("5", $this->smarty->fetch('string:{assign var=foo value=[1,2,3,4,5]}{count($foo)}'));
	}

	/**
	 * test trusted modifier
	 * @deprecated
	 */
	public function testTrustedModifier()
	{
		$this->assertEquals("5", @$this->smarty->fetch('string:{assign var=foo value=[1,2,3,4,5]}{$foo|@count}'));
	}

	/**
	 * test not trusted modifier
	 *
	 *
	 *  @deprecated
	 */
	public function testNotTrustedModifier()
	{
		$this->smarty->security_policy->disabled_modifiers[] = 'escape';
		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('modifier \'escape\' disabled by security setting');
		@$this->smarty->fetch('string:{assign var=foo value=[1,2,3,4,5]}{$foo|escape}');
	}

	/**
	 * test allowed tags
	 */
	public function testAllowedTags1()
	{
		$this->smarty->security_policy->allowed_tags = array('counter');
		$this->assertEquals("1", $this->smarty->fetch('string:{counter start=1}'));
	}

	/**
	 * test not allowed tag
	 *
	 *
	 */
	public function testNotAllowedTags2()
	{
		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('tag \'cycle\' not allowed by security setting');
		$this->smarty->security_policy->allowed_tags = array('counter');
		$this->smarty->fetch('string:{counter}{cycle values="1,2"}');
	}

	/**
	 * test disabled tag
	 *
	 *
	 */
	public function testDisabledTags()
	{
		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('tag \'cycle\' disabled by security setting');
		$this->smarty->security_policy->disabled_tags = array('cycle');
		$this->smarty->fetch('string:{counter}{cycle values="1,2"}');
	}

	/**
	 * test allowed modifier
	 */
	public function testAllowedModifier1()
	{
		error_reporting(E_ALL  & E_STRICT);
		$this->smarty->security_policy->allowed_modifiers = array('capitalize');
		$this->assertEquals("Hello World", $this->smarty->fetch('string:{"hello world"|capitalize}'));
		error_reporting(E_ALL | E_STRICT);
	}

	public function testAllowedModifier2()
	{
		$this->smarty->security_policy->allowed_modifiers = array('upper');
		$this->assertEquals("HELLO WORLD", $this->smarty->fetch('string:{"hello world"|upper}'));
	}

	/**
	 * test not allowed modifier
	 *
	 *
	 */
	public function testNotAllowedModifier()
	{
		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('modifier \'lower\' not allowed by security setting');
		$this->smarty->security_policy->allowed_modifiers = array('upper');
		$this->smarty->fetch('string:{"hello"|upper}{"world"|lower}');
	}

	/**
	 * test disabled modifier
	 *
	 *
	 */
	public function testDisabledModifier()
	{
		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('modifier \'lower\' disabled by security setting');
		$this->smarty->security_policy->disabled_modifiers = array('lower');
		$this->smarty->fetch('string:{"hello"|upper}{"world"|lower}');
	}


	/**
	 * test Smarty no longer handles embedded PHP
	 */
	public function testSmartyPhpAllow()
	{
		$this->assertEquals('<?php echo "hello world"; ?>', $this->smarty->fetch('string:<?php echo "hello world"; ?>'));
	}

	public function testSmartyPhpAllow2()
	{
		$this->assertEquals('<? echo "hello world"; ?>', $this->smarty->fetch('string:<? echo "hello world"; ?>'));
	}

	public function testSmartyPhpAllow3()
	{
		$this->assertEquals('<% echo "hello world"; %>', $this->smarty->fetch('string:<% echo "hello world"; %>'));
	}

	/**
	 * test standard directory
	 */
	public function testStandardDirectory()
	{
		$content = $this->smarty->fetch('string:{include file="helloworld.tpl"}');
		$this->assertEquals("hello world", $content);
	}

	/**
	 * test trusted directory
	 */
	public function testTrustedDirectory()
	{
		$this->smarty->security_policy->secure_dir = array('.' . DIRECTORY_SEPARATOR . 'templates_2' . DIRECTORY_SEPARATOR);
		$this->assertEquals("hello world", $this->smarty->fetch('string:{include file="templates_2/hello.tpl"}'));
	}

	/**
	 * test not trusted directory
	 *
	 *
	 *
	 */
	public function testNotTrustedDirectory()
	{
		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('not trusted file path');
		$this->smarty->security_policy->secure_dir = array(str_replace('\\', '/', __DIR__ . '/templates_3/'));
		$this->smarty->fetch('string:{include file="templates_2/hello.tpl"}');
	}

	/**
	 * test disabled security for not trusted dir
	 */
	public function testDisabledTrustedDirectory()
	{
		$this->smarty->disableSecurity();
		$this->assertEquals("hello world", $this->smarty->fetch('string:{include file="templates_2/hello.tpl"}'));
	}

	/**
	 * test trusted static class
	 */
	public function testTrustedStaticClass()
	{
		$this->smarty->security_policy->static_classes = array('mysecuritystaticclass');
		$tpl = $this->smarty->createTemplate('string:{mysecuritystaticclass::square(5)}');
		$this->assertEquals('25', $this->smarty->fetch($tpl));
	}

	/**
	 * test not trusted PHP function
	 *
	 *
	 */
	public function testNotTrustedStaticClass()
	{
		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('access to static class \'mysecuritystaticclass\' not allowed by security setting');
		$this->smarty->security_policy->static_classes = array('null');
		$this->smarty->fetch('string:{mysecuritystaticclass::square(5)}');
	}

	/**
	 * test not trusted PHP function
	 */
	public function testNotTrustedStaticClassEval()
	{
		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('dynamic static class not allowed by security setting');
		$this->smarty->security_policy->static_classes = array('null');
		$this->smarty->fetch('string:{$test = "mysecuritystaticclass"}{$test::square(5)}');
	}

	/**
	 * test not trusted PHP function
	 */
	public function testNotTrustedStaticClassSmartyVar()
	{
		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('dynamic static class not allowed by security setting');
		$this->smarty->security_policy->static_classes = array('null');
		$this->smarty->fetch('string:{$smarty.template_object::square(5)}');
	}

	public function testChangedTrustedDirectory()
	{
		$this->smarty->security_policy->secure_dir = array(
			'.' . DIRECTORY_SEPARATOR . 'templates_2' . DIRECTORY_SEPARATOR,
		);
		$this->assertEquals("hello world", $this->smarty->fetch('string:{include file="templates_2/hello.tpl"}'));

		$this->smarty->security_policy->secure_dir = array(
			'.' . DIRECTORY_SEPARATOR . 'templates_2' . DIRECTORY_SEPARATOR,
			'.' . DIRECTORY_SEPARATOR . 'templates_3' . DIRECTORY_SEPARATOR,
		);
		$this->assertEquals("templates_3", $this->smarty->fetch('string:{include file="templates_3/dirname.tpl"}'));
	}
	/**
	 * test template file exits
	 *
	 *
	 *
	 */
	public function testTemplateTrustedStream()
	{
		stream_wrapper_register("global", ResourceStreamSecurity::class)
		or die("Failed to register protocol");
		$fp = fopen("global://mytest", "r+");
		fwrite($fp, 'hello world {$foo}');
		fclose($fp);
		$this->smarty->security_policy->streams= array('global');
		$tpl = $this->smarty->createTemplate('global:mytest');
		$this->assertTrue($tpl->getSource()->exists);
		stream_wrapper_unregister("global");
	}
	/**
	 *
	 *
	 * test template file exits
	 */
	public function testTemplateNotTrustedStream()
	{
		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('stream \'global\' not allowed by security setting');
		stream_wrapper_register("global", ResourceStreamSecurity::class)
		or die("Failed to register protocol");
		$fp = fopen("global://mytest", "r+");
		fwrite($fp, 'hello world {$foo}');
		fclose($fp);
		$this->smarty->security_policy->streams= array('notrusted');
		$tpl = $this->smarty->createTemplate('global:mytest');
		$this->assertTrue($tpl->getSource()->exists);
		stream_wrapper_unregister("global");
	}

	public function testTrustedUri()
	{
		$this->smarty->security_policy->trusted_uri = array(
			'#https://s4otw4nhg.erteorteortert.nusuchtld$#i'
		);

		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('{fetch} cannot read resource \'https://s4otw4nhg.erteorteortert.nusuchtld/docs/en/preface.tpl\'');

		$this->smarty->fetch('string:{fetch file="https://s4otw4nhg.erteorteortert.nusuchtld/docs/en/preface.tpl"}');
	}

	/**
	 *
	 *
	 */
	public function testNotTrustedUri()
	{
		$this->expectException(\Smarty\Exception::class);
		$this->expectExceptionMessage('URI \'https://example.net\' not allowed by security setting');
		$this->smarty->security_policy->trusted_uri = [];
		$this->assertStringContainsString(
			'<title>Preface | Smarty</title>',
			$this->smarty->fetch('string:{fetch file="https://example.net"}')
		);
	}

	/**
	 * In security mode, accessing $smarty.template_object should be illegal.
	 */
	public function testSmartyTemplateObject() {
		$this->expectException(CompilerException::class);
		$this->smarty->display('string:{$smarty.template_object}');
	}

}

class mysecuritystaticclass
{
	const STATIC_CONSTANT_VALUE = 3;
	static $static_var = 5;

	static function square($i)
	{
		return $i * $i;
	}
}

#[AllowDynamicProperties]
class ResourceStreamSecurity
{
	private $position;
	private $varname;

	public function stream_open($path, $mode, $options, &$opened_path)
	{
		$url = parse_url($path);
		$this->varname = $url["host"];
		$this->position = 0;

		return true;
	}

	public function stream_read($count)
	{
		$p = &$this->position;
		$ret = substr($GLOBALS[$this->varname], $p, $count);
		$p += strlen($ret);

		return $ret;
	}

	public function stream_write($data)
	{
		$v = &$GLOBALS[$this->varname];
		$l = strlen($data);
		$p = &$this->position;
		$v = substr($v ?? '', 0, $p) . $data . substr($v ?? '', $p += $l);

		return $l;
	}

	public function stream_tell()
	{
		return $this->position;
	}

	public function stream_eof()
	{
		if (!isset($GLOBALS[$this->varname])) {
			return true;
		}

		return $this->position >= strlen($GLOBALS[$this->varname]);
	}

	public function stream_seek($offset, $whence)
	{
		$l = strlen($GLOBALS[$this->varname]);
		$p = &$this->position;
		switch ($whence) {
			case SEEK_SET:
				$newPos = $offset;
				break;
			case SEEK_CUR:
				$newPos = $p + $offset;
				break;
			case SEEK_END:
				$newPos = $l + $offset;
				break;
			default:
				return false;
		}
		$ret = ($newPos >= 0 && $newPos <= $l);
		if ($ret) {
			$p = $newPos;
		}
		return $ret;
	}
}