Skip to content

Token mintable method not detected by GO+ Security #3

@spartanz51

Description

@spartanz51

GO+ Security indicates that a token is not mintable, but in reality, the smart contract can easily circumvent your mintable detection.

The owner has renounced ownership of the contract (see this transaction)

However, the JODAV() (mint) function can still be externally called, even after ownership has been renounced.

Token mintable detection should not be easily bypassed

constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        ZHHNRLCGAB = msg.sender;
    }
    function JODAV(uint256 amount) external {
             _mint(ZHHNRLCGAB, amount);
     }

Smartcontract: https://basescan.org/address/0x63e6591b38d3859b656531c23a48baa8dd39816a#code

image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions