From d3f7dd74c9380ae9f884be2c6a08b60af7293f6c Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 6 Mar 2015 16:45:34 +0000 Subject: [PATCH] Add info about out-of-bouds read interfaces --- README | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README b/README index 936fa3c..8d3eba6 100644 --- a/README +++ b/README @@ -14,7 +14,10 @@ Why? level 2 is treated in the same way as level 1. - Avoids making function calls when UB has already been invoked. This is handled by using GCC's __builtin_trap(). -- All of the check functions are inlined into the resulting binary. +- Check functions for out-of-bounds read interfaces, such as send(), + write(), fwrite() etc. +- No ABI is enforced. All of the check functions are inlined into the + resulting binary. How to use?