php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Sec Bug #79156 Another OOB read in php_strip_tags_ex
Submitted: 2020-01-22 19:22 UTC Modified: 2020-01-23 07:15 UTC
From: ryat@php.net Assigned: stas (profile)
Status: Closed Package: Strings related
PHP Version: 7.2Git-2020-01-22 (Git) OS: *
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: ryat@php.net
New email:
PHP Version: OS:

 

 [2020-01-22 19:22 UTC] ryat@php.net
Description:
------------
string.c:
```
PHPAPI size_t php_strip_tags_ex(char *rbuf, size_t len, uint8_t *stateptr, const char *allow, size_t allow_len, zend_bool allow_tag_spaces)
{
	...
			case '>':
                ...
					case 2: /* PHP */
						if (!br && lc != '\"' && *(p-1) == '?') {
```

PoC:
```
<?php

$stream = fopen('php://memory', 'w+');
fputs($stream, "<?\n>");
rewind($stream);
var_dump(fgetss($stream));
var_dump(fgetss($stream));
fclose($stream);

?>
```

Fix:
```
if (!br && lc != '\"' && p >= buf + 1 && *(p-1) == '?') {
```


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2020-01-22 19:43 UTC] ryat@php.net
-Summary: OOB read in php_strip_tags_ex +Summary: Another OOB read in php_strip_tags_ex
 [2020-01-23 07:15 UTC] stas@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: stas
 [2020-01-23 07:15 UTC] stas@php.net
The fix for this bug has been committed.
If you are still experiencing this bug, try to check out latest source from https://github.com/php/php-src and re-test.
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 09:01:28 2024 UTC