From 2849cca43c1c16bd5a9bcdcaa1f873b0a6785cdc Mon Sep 17 00:00:00 2001 From: Bernhard Mueller Date: Mon, 20 Nov 2017 09:55:37 +0700 Subject: [PATCH] Update security_checks.md --- security_checks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/security_checks.md b/security_checks.md index 673f728a..d21b84f9 100644 --- a/security_checks.md +++ b/security_checks.md @@ -4,9 +4,9 @@ |------:|-------------|------------| |Unprotected functions| Critical functions such as sends with non-zero value or suicide() calls are callable by anyone, or msg.sender is compared against an address in storage that can be written to. E.g. Parity wallet bugs. | [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| | | +|Re-entrancy| | [call to untrusted contract with gas](mythril/analysis/modules/call_to_dynamic_with_gas.py) | |Multiple transfers in a single transaction| | | | -|Function call to untrusted contract| | | | +|Function call to untrusted contract| | |[call to untrusted contract with gas](mythril/analysis/modules/call_to_dynamic_with_gas.py) | |Delegatecall or callcode to untrusted contract| | [delegatecall_forward](mythril/analysis/modules/delegatecall_forward.py), [delegatecall_to_dynamic.py](mythril/analysis/modules/delegatecall_to_dynamic.py) | |Integer overflow/underflow| | [integer_underflow](mythril/analysis/modules/integer_underflow.py) | |Type confusion| | |