#39153 [SC-Insight] Unauthorized Token Creation and Minting Vulnerability
Description
Brief/Intro
Vulnerability Details
function createCollateralToken(
string memory name,
string memory symbol,
uint256 initialSupply,
address owner
) external returns (address) {
PlayCollateralToken newToken = new PlayCollateralToken(
name,
symbol,
initialSupply,
CONDITIONAL_TOKENS,
owner
);
emit PlayCollateralTokenCreated(address(newToken));
return address(newToken);
}Impact Details
Recommendation
Proof of Concept
Previous#39181 [SC-Insight] Bond Fund will be Lost When Question is Asked AgainNext#39243 [SC-Insight] Misleading Comment in merge Function Regarding Token Transfers to wrapped1155Fac
Last updated
Was this helpful?