From 64b8d2fb7832684bea6cd166922e8f3f0d7228c0 Mon Sep 17 00:00:00 2001 From: Bernhard Mueller Date: Thu, 9 Nov 2017 16:48:54 +0700 Subject: [PATCH] Create security_checks.md --- security_checks.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 security_checks.md diff --git a/security_checks.md b/security_checks.md new file mode 100644 index 00000000..24cb9232 --- /dev/null +++ b/security_checks.md @@ -0,0 +1,15 @@ +# Smart Contract Security Issues + +| Issue | Description | Detection | Mythril Module(s) | +|------:|-------------|-----------|-----------| +|Unprotected functions| | | [unchecked_suicide](mythril/analysis/modules/unchecked_suicide.py); [ether_send](mythril/analysis/modules/ether_send.py) | +|Re-entrancy| | | | +|Multiple transfers in a single transaction| | | | +|Integer overflow/underflow| | | | +|Type confusion| | | | +|Predictable RNG| | | | +|Transaction order dependence| | | | +|Timestamp dependence| | | | +|Information exposure| | | | +|Missing check on CALL return value| | | +|Call depth attack| | | |