Closed carlossampol closed 5 years ago
Auditing time 1 day
@MrCrambo assigned
Estimated auditing time is 1 day.
My report is finished.
@gorbunovperm assigned
My report is finished
Auditing time: 1 day.
My report is finished.
@danbogd assigned
Maximine Coin (MXM) smart contract security audit report performed by Callisto Security Audit Department
Audit Top 200 CoinMarketCap tokens.
Maximine Coin (MXM)
In total, 5 issues were reported including:
4 low severity issues.
1 owner privileges (the ability of an owner to manipulate contract, may be risky for investors).
No critical security issues were found.
It is possible to double withdrawal attack. More details here.
Lack of transaction handling mechanism issue. WARNING! This is a very common issue and it already caused millions of dollars losses for lots of token users! More details here.
Add the following code to the transfer(_to address, ...)
function:
require( _to != address(this) );
According to ERC20 standard when coins are minted(or burned) a Transfer
event should be emitted.
According EIP20 Standard the transfer
function should returns boolean value function transfer(address _to, uint256 _value) public returns (bool success)
. But here it is not implemented.
EIP20 says that:
Transfers of 0 values MUST be treated as normal transfers and fire the Transfer event. But in this contract, function
transfer
has a condition:require(balanceOf[_to] + _value > balanceOf[_to]);
The contract owner allowed to ban transfer functions for certain user.
The audited smart contract can be deployed. Only low severity issues were found during the audit.
https://gist.github.com/yuriy77k/47daa3e68f380c48e40ff1d101b83d64
https://gist.github.com/yuriy77k/d59b2a1e8b4801fff49b18b6456d7435
https://gist.github.com/yuriy77k/f5baefc0963cc674897d5f81413fa605
Audit request
Audit Top 200 CoinMarketCap tokens.
Maximine Coin (MXM)
https://maximine.io/
Source code
https://etherscan.io/address/0x8e766f57f7d16ca50b4a0b90b88f6468a09b0439#code
Disclosure policy
public
Platform
Ethereum
Number of lines:
88