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

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
Smartcontract: https://basescan.org/address/0x63e6591b38d3859b656531c23a48baa8dd39816a#code