You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
php5 itself is no longer supported as of December 2018, and php7 hasn't been since November 2022, so I doubt the taint extension will be updated to support it.
On a bit of a tangent, I am working on the successor to taint checking, which avoids escaping issues by simply identifying "developer defined strings". This can be done with the literal-string type via static analysis [1][2]. Or you can try the experimental is_literal() function, which can be applied to PHP 8.3-dev [3].
报错信息为:/opt/taint-master/taint.c:1625:2: error: unknown type name 'zend_string'
经过个人的查找资料发现zend_string应该是php7引入的zend虚拟机才出现的,不知最新的代码是否不支持php5?
The text was updated successfully, but these errors were encountered: