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_expected/kinds_of_calls.sol.o.markdown

62 lines
1.7 KiB

# Analysis results for test-filename.sol
## Use of callcode
- SWC ID: 111
- Type: Warning
- Contract: Unknown
- Function name: `_function_0x141f32ff`
- PC address: 618
- Estimated Gas Usage: 389 - 1141
### Description
The function `_function_0x141f32ff` uses callcode. Callcode does not persist sender or value over the call. Use delegatecall instead.
## Unchecked CALL return value
- SWC ID: 104
- Type: Informational
- Contract: Unknown
- Function name: `_function_0x141f32ff`
- PC address: 626
- Estimated Gas Usage: 1104 - 35856
### Description
The return value of an external call is not checked. Note that execution continue even if the called contract throws.
## Unchecked CALL return value
- SWC ID: 104
- Type: Informational
- Contract: Unknown
- Function name: `_function_0x9b58bc26`
- PC address: 857
6 years ago
- Estimated Gas Usage: 1161 - 35913
### Description
The return value of an external call is not checked. Note that execution continue even if the called contract throws.
6 years ago
## External call to user-supplied address
- SWC ID: 107
7 years ago
- Type: Warning
- Contract: Unknown
7 years ago
- Function name: `_function_0xeea4c864`
- PC address: 1038
6 years ago
- Estimated Gas Usage: 471 - 1223
7 years ago
### Description
6 years ago
The contract executes a function call with high gas to a user-supplied address. Note that the callee can contain arbitrary code and may re-enter any function in this contract. Review the business logic carefully to prevent unanticipated effects on the contract state.
7 years ago
## Unchecked CALL return value
- SWC ID: 104
7 years ago
- Type: Informational
- Contract: Unknown
7 years ago
- Function name: `_function_0xeea4c864`
- PC address: 1046
6 years ago
- Estimated Gas Usage: 1186 - 35938
7 years ago
### Description
The return value of an external call is not checked. Note that execution continue even if the called contract throws.