From d02ecc4cdfae9e266032f314ab9f7a245d47c42f Mon Sep 17 00:00:00 2001 From: Bernhard Mueller Date: Wed, 15 Nov 2017 18:17:32 +0700 Subject: [PATCH] Update security_checks.md --- security_checks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security_checks.md b/security_checks.md index aeeabec7..673f728a 100644 --- a/security_checks.md +++ b/security_checks.md @@ -2,7 +2,7 @@ | Issue | Description | Mythril Detection Module(s) | |------:|-------------|------------| -|Unprotected functions| | [unchecked_suicide](mythril/analysis/modules/unchecked_suicide.py), [ether_send](mythril/analysis/modules/ether_send.py) | +|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| | | |Multiple transfers in a single transaction| | | |