summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-02Bump the changelogv0.7.0jvoisin
2021-01-02Do a clang-format passjvoisin
2021-01-02Remove the travis-ci badgejvoisin
2021-01-02Add stacktraces to dumpsjvoisin
2021-01-02Don't use travis-ci anymorejvoisin
2021-01-02Use gitlab-ci for all supported php versionsjvoisin
2021-01-02Fix a test on php8+jvoisin
2021-01-01Simplify a loop conditionjvoisin
2021-01-01Simplify sp_match_array_valuejvoisin
2021-01-01Constify a functionjvoisin
2021-01-01Enable a disabled testjvoisin
2020-12-31Add an article to our propaganda pagejvoisin
2020-12-31Mention PHP8's security featuresjvoisin
2020-12-31Refresh a bit the CVE in the documentationjvoisin
2020-12-31PHP7 is deprecated, consider it as such in the docjvoisin
2020-12-31Linkify a bit the faqjvoisin
2020-12-31Add php8 to the CIjvoisin
2020-12-31Fix a test on php8jvoisin
2020-12-31Enabled matching on local var in php8jvoisin
PHP8 failed hard when it couldn't find the local variable we're looking for. using ZEND_FETCH_CLASS_SILENT makes it silent.
2020-12-31Enable a PHP<8 testjvoisin
2020-12-31Add two tests for cookies encryption on php8jvoisin
2020-12-31Add tests for harden_randjvoisin
2020-12-31Add two tests for inexistant config filesjvoisin
2020-12-31Actually enable the testsjvoisin
2020-12-31Enable 3 more testsjvoisin
PHP8 is changing the capitalization of the error message
2020-12-31Add a tests for unserialize with php8jvoisin
2020-12-31Enable 3 more tests for php8jvoisin
2020-12-31Simplify a bit travis-ci.ymljvoisin
2020-12-31Add tests for broken configuration on php8jvoisin
2020-12-28Add a link to the propaganda pagejvoisin
2020-12-28Enable 2 more testsjvoisin
2020-12-28Enable more tests for php8jvoisin
2020-12-28Document the `tests` targetjvoisin
2020-12-25mark some tests as passing on php8jvoisin
2020-12-24Add PHP8 supportJulien Voisin
2020-12-19docs: fix simple typo, migitate -> mitigateTim Gates
There is a small typo in src/sp_utils.c. Should read `mitigate` rather than `migitate`.
2020-12-13Reduce the scope of a calljvoisin
2020-12-13Remove a duplicate includejvoisin
2020-12-13Enable vld for php7.4 in travisjvoisin
2020-12-13Get rid of pcre1jvoisin
2020-12-12Mark the relevant php8 tests as broken (#359)jvoisin
* Skip tests broken on php8 * Oops * Fix some tests * Add some XXE tests for php8 * Fix a test
2020-12-06Use the latest php7.4 version in travis-cijvoisin
2020-12-01In tests, don't `die("skip")` but `print "skip"` instead (#358)jvoisin
This is required since the `die` is making php8 choke
2020-11-30Fix an other type mismatch in zend_compile_stringjvoisin
2020-11-30Fix the type of zend_compile_string (#357)jvoisin
This was changed in https://github.com/php/php-src/commit/f5dbebd82e642b1d1af462b486fc392ecff2c67a
2020-11-29Fix some unused variables warnings introduced in ea7c76bjvoisin
2020-11-29Fix zend_write booking typejvoisin
The signature was changed in PHP8: https://github.com/php/php-src/commit/e15409b43cacf711608189c299191f2969ea331c
2020-11-29Don't call libxml_disable_entity_loader for php8+jvoisin
This functions is deprecated, but since PHP8+ requires libxml 2.9.0 where XXE are disabled by default, there is no need to call it anymore.
2020-11-29Make the `>` operator skip over functionsjvoisin
2020-11-29Document the `>` operatorjvoisin