summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/faq.rst4
-rw-r--r--doc/source/features.rst6
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/source/faq.rst b/doc/source/faq.rst
index 09cb244..0f70c17 100644
--- a/doc/source/faq.rst
+++ b/doc/source/faq.rst
@@ -222,8 +222,8 @@ Contact `NBS System <https://nbs-system.com>`_.
222Unimplemented mitigations and abandoned ideas 222Unimplemented mitigations and abandoned ideas
223--------------------------------------------- 223---------------------------------------------
224 224
225Contant time comparisons 225Constant time comparisons
226"""""""""""""""""""""""" 226"""""""""""""""""""""""""
227We didn't manage to perform time-based side-channel attacks on strings 227We didn't manage to perform time-based side-channel attacks on strings
228against real world PHP application, and the results that we gathered on 228against real world PHP application, and the results that we gathered on
229tailored test cases weren't concluding: for simplicity's sake, we chose 229tailored test cases weren't concluding: for simplicity's sake, we chose
diff --git a/doc/source/features.rst b/doc/source/features.rst
index 076e4e4..bf535e1 100644
--- a/doc/source/features.rst
+++ b/doc/source/features.rst
@@ -6,8 +6,8 @@ killers and virtual-patching. The first category provides primitives to kill var
6bug families (like arbitrary code execution via ``unserialize`` for example) or rise the 6bug families (like arbitrary code execution via ``unserialize`` for example) or rise the
7cost of exploitation, the second one is a highly configurable system to patch functions in php itself. 7cost of exploitation, the second one is a highly configurable system to patch functions in php itself.
8 8
9Bug classes killed 9Bug classes killed or mitigated
10------------------ 10-------------------------------
11 11
12``system`` injections 12``system`` injections
13^^^^^^^^^^^^^^^^^^^^^ 13^^^^^^^^^^^^^^^^^^^^^
@@ -22,7 +22,7 @@ Unfortunately, passing user-controlled parameters to it often leads to an arbitr
22 22
23 --- `The PHP documentation about system <https://secure.php.net/manual/en/function.system.php>`_ 23 --- `The PHP documentation about system <https://secure.php.net/manual/en/function.system.php>`_
24 24
25We're kind of killing it by filtering the ``$``, ``|``, ``;``, ````` and ``&`` chars in our 25We're mitigating it by filtering the ``$``, ``|``, ``;``, `````, ``\n`` and ``&`` chars in our
26default configuration, making it a lot harder for an attacker to inject arbitrary commands. 26default configuration, making it a lot harder for an attacker to inject arbitrary commands.
27 27
28This family of vulnerabilities lead to various CVE, like: 28This family of vulnerabilities lead to various CVE, like: