mirror of https://github.com/ConsenSys/mythril
Use symbolic storage for concrete=False (#1039)
parent
845a7f3a1c
commit
062a07c2c7
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,5 +1,32 @@ |
|||||||
{ |
{ |
||||||
"error": null, |
"error": null, |
||||||
"issues": [], |
"issues": [ |
||||||
|
{ |
||||||
|
"address": 722, |
||||||
|
"contract": "Unknown", |
||||||
|
"debug": "<DEBUG-DATA>", |
||||||
|
"description": "Anyone can withdraw ETH from the contract account.\nArbitrary senders other than the contract creator can withdraw ETH from the contract account without previously having sent an equivalent amount of ETH to it. This is likely to be a vulnerability.", |
||||||
|
"function": "withdrawfunds()", |
||||||
|
"max_gas_used": 1749, |
||||||
|
"min_gas_used": 1138, |
||||||
|
"severity": "High", |
||||||
|
"sourceMap": null, |
||||||
|
"swc-id": "105", |
||||||
|
"title": "Unprotected Ether Withdrawal" |
||||||
|
}, |
||||||
|
{ |
||||||
|
"address": 883, |
||||||
|
"contract": "Unknown", |
||||||
|
"debug": "<DEBUG-DATA>", |
||||||
|
"description": "The binary addition can overflow.\nThe operands of the addition operation are not sufficiently constrained. The addition could therefore result in an integer overflow. Prevent the overflow by checking inputs or ensure sure that the overflow is caught by an assertion.", |
||||||
|
"function": "invest()", |
||||||
|
"max_gas_used": 26883, |
||||||
|
"min_gas_used": 6598, |
||||||
|
"severity": "High", |
||||||
|
"sourceMap": null, |
||||||
|
"swc-id": "101", |
||||||
|
"title": "Integer Overflow" |
||||||
|
} |
||||||
|
], |
||||||
"success": true |
"success": true |
||||||
} |
} |
@ -1,3 +1,27 @@ |
|||||||
# Analysis results for None |
# Analysis results for test-filename.sol |
||||||
|
|
||||||
The analysis was completed successfully. No issues were detected. |
## Unprotected Ether Withdrawal |
||||||
|
- SWC ID: 105 |
||||||
|
- Severity: High |
||||||
|
- Contract: Unknown |
||||||
|
- Function name: `withdrawfunds()` |
||||||
|
- PC address: 722 |
||||||
|
- Estimated Gas Usage: 1138 - 1749 |
||||||
|
|
||||||
|
### Description |
||||||
|
|
||||||
|
Anyone can withdraw ETH from the contract account. |
||||||
|
Arbitrary senders other than the contract creator can withdraw ETH from the contract account without previously having sent an equivalent amount of ETH to it. This is likely to be a vulnerability. |
||||||
|
|
||||||
|
## Integer Overflow |
||||||
|
- SWC ID: 101 |
||||||
|
- Severity: High |
||||||
|
- Contract: Unknown |
||||||
|
- Function name: `invest()` |
||||||
|
- PC address: 883 |
||||||
|
- Estimated Gas Usage: 6598 - 26883 |
||||||
|
|
||||||
|
### Description |
||||||
|
|
||||||
|
The binary addition can overflow. |
||||||
|
The operands of the addition operation are not sufficiently constrained. The addition could therefore result in an integer overflow. Prevent the overflow by checking inputs or ensure sure that the overflow is caught by an assertion. |
||||||
|
@ -1 +1,22 @@ |
|||||||
The analysis was completed successfully. No issues were detected. |
==== Unprotected Ether Withdrawal ==== |
||||||
|
SWC ID: 105 |
||||||
|
Severity: High |
||||||
|
Contract: Unknown |
||||||
|
Function name: withdrawfunds() |
||||||
|
PC address: 722 |
||||||
|
Estimated Gas Usage: 1138 - 1749 |
||||||
|
Anyone can withdraw ETH from the contract account. |
||||||
|
Arbitrary senders other than the contract creator can withdraw ETH from the contract account without previously having sent an equivalent amount of ETH to it. This is likely to be a vulnerability. |
||||||
|
-------------------- |
||||||
|
|
||||||
|
==== Integer Overflow ==== |
||||||
|
SWC ID: 101 |
||||||
|
Severity: High |
||||||
|
Contract: Unknown |
||||||
|
Function name: invest() |
||||||
|
PC address: 883 |
||||||
|
Estimated Gas Usage: 6598 - 26883 |
||||||
|
The binary addition can overflow. |
||||||
|
The operands of the addition operation are not sufficiently constrained. The addition could therefore result in an integer overflow. Prevent the overflow by checking inputs or ensure sure that the overflow is caught by an assertion. |
||||||
|
-------------------- |
||||||
|
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue