Security analysis tool for EVM bytecode. Supports smart contracts built for Ethereum, Hedera, Quorum, Vechain, Roostock, Tron and other EVM-compatible blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
mythril/tests/testdata/outputs/kinds_of_calls.sol.json

28 lines
1.3 KiB

{
"success": true,
"error": null,
"issues": [
{
"title": "Message call to external contract",
"description": "This contract executes a message call to an address provided as a function argument. Generally, it is not recommended to call user-supplied adresses using Solidity's call() construct. Note that attackers might leverage reentrancy attacks to exploit race conditions or manipulate this contract's state.",
"function": "_function_0xeea4c864",
"type": "Warning",
"address": 1038,
"debug": "<DEBUG-DATA>",
"filename": "<TESTDATA>/inputs/kinds_of_calls.sol",
"lineno": 6,
"code": "_e.call(bytes4(sha3(\"setN(uint256)\")), _n)"
},
{
"title": "Unchecked CALL return value",
"description": "The return value of an external call is not checked. Note that execution continue even if the called contract throws.",
"function": "_function_0xeea4c864",
"type": "Informational",
"address": 1038,
"debug": "<DEBUG-DATA>",
"filename": "<TESTDATA>/inputs/kinds_of_calls.sol",
"lineno": 6,
"code": "_e.call(bytes4(sha3(\"setN(uint256)\")), _n)"
}
]
}