From 433c8805127597eedce130f37a41e5829b5d95cc Mon Sep 17 00:00:00 2001 From: Bernhard Mueller Date: Wed, 15 Nov 2017 18:03:23 +0700 Subject: [PATCH] Update security_checks.md --- security_checks.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/security_checks.md b/security_checks.md index d1ca7fcd..370ecc81 100644 --- a/security_checks.md +++ b/security_checks.md @@ -1,11 +1,13 @@ # Smart Contract Security Issues -| Issue | Description | Mythril Detection Module(s) | +| Issue | Description | Mythril Detection Module(s) | |------:|-------------|------------| |Unprotected functions| | [unchecked_suicide](mythril/analysis/modules/unchecked_suicide.py), [ether_send](mythril/analysis/modules/ether_send.py) | |Missing check on CALL return value| | [unchecked_retval](mythril/analysis/modules/unchecked_retval.py) |Re-entrancy| | | |Multiple transfers in a single transaction| | | | +|Function call to untrusted contract| | | | +|Delegatecall or callcode to untrusted contract| | | | |Integer overflow/underflow| | [integer_underflow](mythril/analysis/modules/integer_underflow.py) | |Type confusion| | | |Predictable RNG| | |