input
stringlengths
32
47.6k
output
stringclasses
657 values
// Created using Token Wizard https://github.com/poanetwork/token-wizard by POA Network pragma solidity ^0.4.11; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownab...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-02-02 */ // File: contracts\index\util\IEthItemOrchestrator.sol //SPDX-License-Identifier: MIT pragma solidity ^0.7.6; interface IEthItemOrchestrator { function createNative(bytes calldata modelInitPayload, string calldata ens) external re...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) msg-value-loop with High impact 3) arbitrary-send with High impact
pragma solidity ^0.4.21; // File: contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event Ownership...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'GoodBoyPoints' token contract // // Deployed to : 0x065B31b52d899c7DA58B6196fBA8Ae47B9A5f952 // Symbol : GBP // Name : GoodBoyPoints // Total supply: 10000000 // Decimals : 18 // // Enjoy...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-25 */ pragma solidity ^0.4.18; contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; require(c >= a); } function safeSub(uint a, uint b) public pure returns (uint c) { require(b <= ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; re...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.21; // File: zeppelin-solidity/contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; ...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) reentrancy-no-eth with Medium impact 3) locked-ether with Medium impact 4) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-06-03 */ //SPDX-License-Identifier: MIT pragma solidity 0.6.0; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-02-17 */ /* SweetBenINU Telegram: t.me/SweetBenInu Twitter: @SweetBenInu */ pragma solidity ^0.5.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); ...
No vulnerabilities found
pragma solidity ^0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than a...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) locked-ether with Medium impact 3) tautology with Medium impact 4) controlled-array-length with High impact
pragma solidity ^0.4.24; /* You&#39;ve seen all of this before. Here are the differences. // A. A quarter of your clones die when you sell ideas. Market saturation, y&#39;see? // B. You can "become" Norsefire and take the dev fees, since he&#39;s involved in everything. // B. 1. The Norsefire boon is a hot potato. If...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) divide-before-multiply with Medium impact 3) incorrect-equality with Medium impact 4) arbitrary-send with High impact
/** *Submitted for verification at Etherscan.io on 2021-06-09 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : OAC // Name : Only Adult Content // Total supply : 300000000 // Decimals : 8 // Owner...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-11-06 */ // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg....
No vulnerabilities found
// File: @openzeppelin/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT /* __ __ / | / | $$ | $$ | $$ |__$$ | $$ $$ | Just Hodl $$$$$$$$ | $JH $$ | $$ | $$ | $$ | $$ / $$ / The Token For The Hodlers. More informations at https://justhodl.financ...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-08-16 */ pragma solidity 0.4.24; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(uint a, uint...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-22 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------------------------------------------- contract ERC20Interface { ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-29 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ShibaProtocolDAO' token contract // // Deployed to : 0xEFa8D096544d7f3Cd968E958c441ad23EaC3361E // Symbol : SHIPRODAO // Name : Shi...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-05 */ /* Pandalinu - Pinu FUCK ALL RUGS LET's GET ON MARS */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.12; interface IERC20 { ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-04-02 */ // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-02-01 */ pragma solidity 0.7.0; // SPDX-License-Identifier: MIT contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner) publ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-29 */ pragma solidity ^0.4.24; //Safe Math Interface contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; require(c >= a); } function safeSub(uint a, uint b) public pure returns (ui...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-16 */ pragma solidity ^0.5.17; interface IERC20 { function totalSupply() external view returns(uint); function balanceOf(address account) external view returns(uint); function transfer(address recipient, uint amount) external returns(bool); ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-03 */ pragma solidity 0.5.16; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact 3) incorrect-equality with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-11-30 */ // SPDX-License-Identifier: MIT /** * KEEPERFI.COM * Optimized Dapp * Clean & tested code */ pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed ...
These are the vulnerabilities found 1) weak-prng with High impact 2) unused-return with Medium impact 3) incorrect-equality with Medium impact 4) uninitialized-local with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-30 */ //SPDX-License-Identifier: MIT pragma solidity ^0.7.0; contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner) publi...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-05 */ pragma solidity 0.5.16; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-02 */ pragma solidity 0.6.12; pragma experimental ABIEncoderV2; // SPDX-License-Identifier: MIT /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-01 */ /* Atlantis or ATIS, is Mammoth Corp's primary ecosystem token where profits from its games and future platforms are shared. ATIS is a low supply, deflationary token backed by a locked liquidity pool on Uniswap, where it primarily trades. It will be...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
pragma solidity ^0.6.6; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin,...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) unused-return with Medium impact 3) unchecked-send with Medium impact
pragma solidity ^0.4.21; contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { ...
These are the vulnerabilities found 1) tautology with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-18 */ // SPDX-License-Identifier: Unlicensed // Kiyoshi Shiba Inu Token pragma solidity ^0.7.0; contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeO...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-03 */ /* * Copyright © 2021 junedog.finance. ALL RIGHTS RESERVED. */ pragma solidity ^0.5.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available ...
These are the vulnerabilities found 1) weak-prng with High impact
/** *Submitted for verification at Etherscan.io on 2021-09-20 */ /** join the drunks @ t.me/DrunkDogeToken __ (\,--------'()'--o (_ ___ /~" (_)_) (_)_) */ /** *Submitted for verification at Etherscan.io on 2021-07-01 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token...
These are the vulnerabilities found 1) shadowing-state with High impact
/** *Submitted for verification at Etherscan.io on 2021-05-21 */ // SPDX-License-Identifier: MIT /* * Token has been generated for FREE using https://vittominacori.github.io/erc20-generator/ * * NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed * usi...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-07-01 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Dollarydoos (DOO) token contract // // Symbol : DOO // Name : Dollarydoos // Total supply : 25000000000000000000000000 // Decim...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-30 */ pragma solidity ^0.4.26; contract SafeMath { function safeAdd(uint256 a, uint256 b) public pure returns (uint256 c) { c = a + b; require(c >= a); } function safeSub(uint256 a, uint256 b) public pure returns (uint256 c) { ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-21 */ pragma solidity ^0.4.16; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract TokenERC20 { string public name; string public symbol; uint8 public decimals...
No vulnerabilities found
pragma solidity ^0.4.18; // solhint-disable-line contract ERC20Interface { function transfer(address to, uint256 tokens) public returns (bool success); } contract Elyxr { function buy(address) public payable returns(uint256); function transfer(address, uint256) public returns(bool); function myToken...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) constant-function-asm with Medium impact 3) incorrect-equality with Medium impact 4) unchecked-transfer with High impact 5) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'BABAYAGA' token contract // // Deployed to : 0x50cB4738fb410bFD2445b2303e3995e711B5D98d // Symbol : BABAYAGA // Name : BABAYAGA // Total supply: 52 // Decimals : 4 // // Enjoy. // // (c) by Morit...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-19 */ // File: @openzeppelin\upgrades\contracts\Initializable.sol pragma solidity >=0.4.24 <0.7.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) locked-ether with Medium impact
/** * Golden Union - Blockchain platform for direct investment in gold mining * https://goldenunion.org * ---------------------------- * telegram @golden_union * developed by Inout Corp */ pragma solidity ^0.4.23; contract ERC20Basic { function totalSupply() public view returns (uint256); func...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) unused-return with Medium impact 3) arbitrary-send with High impact 4) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-17 */ /* ❗️ PikaApp - Mobile App (Track Anime Tokens) ❗️ PikaSwap - DEX displaying newly listed, as well as top gainers all on the same page ❗️ PikaDash - Displays how much $PIKACHU you have earned ❗️ PikaTools - Track all Anime Tokens with a graph, transact...
These are the vulnerabilities found 1) shadowing-state with High impact
pragma solidity ^0.4.25; // ---------------------------------------------------------------------------- // &#39;SUBS&#39; &#39;Substancia&#39; token contract // // Symbol : SUBS // Name : Substancia // Total supply: 15,500,000.000000000000000000 // Decimals : 18 // // Enjoy. // // (c) BokkyPooBah / Bok...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.14; contract ERC20Interface { function totalSupply() constant returns (uint256 totalSupply); function balanceOf(address _owner) constant returns (uint256 balance); function transfer(address _to, uint256 _value) returns (bool success); function transferFrom(address _from, addre...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.24; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-09-22 */ /** *Submitted for verification at BscScan.com on 2021-09-11 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; // /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. ...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) unchecked-transfer with High impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-05 */ pragma solidity ^0.5.2; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address private...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-02-03 */ //SPDX-License-Identifier: Delayed Release MIT pragma solidity ^0.8.0; /* ERC20I (ERC20 0xInuarashi Edition) Minified and Gas Optimized From the efforts of the 0x Collective https://0xcollective.net */ contract ERC20I { // Token Pa...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-04-24 */ pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @dev Returns the amount of tokens in existe...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-09 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'RedFoxShiba' token contract // // Deployed to : 0xD3cE646187C28Ed84372CF5aE78dCF30B4010c56 // Symbol : ROXSHI // Name : RedFoxShiba...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;TECHToken&#39; token contract // // Deployed to : 0xF6a2DBBE98af02952b149d5BdfF4c106FCAcb7aB // Symbol : TECH // Name : TECHToken // Total supply: 10000000 // Decimals : 18 // // Enjoy. // //...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c...
These are the vulnerabilities found 1) mapping-deletion with Medium impact 2) locked-ether with Medium impact 3) controlled-array-length with High impact
pragma solidity ^0.4.11; contract ERC20Standard { mapping (address => uint256) balances; mapping (address => mapping (address => uint)) allowed; //Fix for short address attack against ERC20 modifier onlyPayloadSize(uint size) { assert(msg.data.length == size + 4); _; } function balanceOf(address _owner)...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-15 */ // SPDX-License-Identifier: MIT /* _____ _ _ _ _ | ____| | ___ _ __ | | | | ___ __ _ _ __| |_ ___ | _| | |/ _ \| '_ \| |_| |/ _ \/ _` | '__| __/ __| | |___| | (_) | | | | _ | __/ (_| | | | |_\__ \ |__...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.23; // sol token // // Rui-Shan Lu Team // Lursun <<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="bdd1c8cfcec8d3848c898d8c8efddad0dcd4d193ded2d0">[email&#160;protected]</a>> // reference https://ethereum.org/token contract owned { address public owner; function ...
These are the vulnerabilities found 1) erc20-interface with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.16; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract TokenERC20 { // Public variables of the token string public name; string public symbol; uint8 public decimals = 18; // 18 decimals is the s...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-11-26 */ // SPDX-License-Identifier: MIT pragma solidity >=0.8.0; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requiremen...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-30 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'E=mc2' token contract // // Deployed to : 0x8ebA395544eC9886A426374c280a9C91E9bfd51f // Symbol : EMC2 // Name : E=mc2 // Total supp...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Crystal Skull&#39; token contract // // Deployed to : 0x52468214E30c7B8385bd718c92FB3737abb141B6 // Symbol : SKULL // Name : Crystal Skull One // Total supply: 13 // Decimals : 1 // // Enjoy....
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.6; interface IProxy { function upgradeTo(address newImplementation) external; } contract TimelockProposal { function execute() external { IProxy proxy = IProxy(0xc4347dbda0078d18073584602CF0C1572541bb15); address veToken = 0x5CCAfe74b0271AC805...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-06-22 */ /******************************** * Welcome to * * FOREVER SHIBA * * * * $FOREVERSHIBA * * * * Automatic * * buyback mech...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact 3) incorrect-equality with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-03 */ /** *Submitted for verification at Etherscan.io on 2021-04-07 */ pragma solidity =0.5.16; interface IMulanV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view retur...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-19 */ // SPDX-License-Identifier: MIT /* * Token has been generated for FREE using https://vittominacori.github.io/erc20-generator/ * * NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed * usi...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-03-31 */ // SPDX-License-Identifier: AGPL-3.0-only pragma solidity 0.8.12; /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation. /// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC20.sol) /// @author Modified fr...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-09-14 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It ...
No vulnerabilities found
pragma solidity 0.4.18; // File: contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipT...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) divide-before-multiply with Medium impact 3) unused-return with Medium impact 4) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-11 */ pragma solidity ^0.5.2; contract ERC20Interface { string public name; string public symbol; uint8 public decimals; uint public totalSupply; function transfer(address _to, uint256 _value) public returns (bool success); function transferFrom(...
No vulnerabilities found
/** * SourceUnit: /home/jgcarv/Dev/NFT/Orcs/etherOrcs-contracts/src/mainnet/EtherOrcs.sol */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-only pragma solidity 0.8.7; /// @notice Modern and gas efficient ERC-721 + ERC-20/EIP-2612-like implementation, /// including the MetaData, and ...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) weak-prng with High impact 3) reentrancy-no-eth with Medium impact 4) incorrect-equality with Medium impact
pragma solidity ^0.5.17; /* ,ggggggggggg, dP"""88""""""Y8, I8 Yb, 88 `8b I8 `" 88 ,8P gg 88888888 ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Symbol : SPE // Name : Super Ecology Outlying System // Total supply: 2000000000.000000 // Decimals : 6 // ---------------------------------------------------------------------------- // -----...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.4.25; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); uin...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact 4) unchecked-transfer with High impact 5) locked-ether with Medium impact
pragma solidity ^0.4.16; contract SafeMath { function safeMul(uint a, uint b) internal returns (uint) { uint c = a * b; assert(a == 0 || c / a == b); return c; } function safeSub(uint a, uint b) internal returns (uint) { assert(b <= a); return a - b; ...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) tautology with Medium impact 4) arbitrary-send with High impact 5) incorrect-equality with Medium impact 6) unchecked-transfer with High impact 7) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-11-12 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of toke...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-07 */ //Telegram: t.me/bigblackchihuahua //Website: https://big-black-chihuahua.square.site/ /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-02-13 */ pragma solidity 0.7.0; // SPDX-License-Identifier: MIT contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner) publ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;CETH&#39; token contract // // Deployed to : 0xE07a70247262A0C69CA5EE556B232dbE3611F159 // Symbol : CETH // Name : CreaEther // Total supply: 80000000000 // Decimals : 18 // // Enjoy. // // (...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-31 */ pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-25 */ pragma solidity ^0.4.26; contract SafeMath { function safeAdd(uint256 a, uint256 b) public pure returns (uint256 c) { c = a + b; require(c >= a); } function safeSub(uint256 a, uint256 b) public pure returns (uint256 c) { ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.25; // expansion on original contract from dav&#39;s stronghands contract // introducing features: // Jackpot - 1 in 1000 chance to get jackpot upon losing // Refund line for loser to get their initial eth back // eth distribution: // each game seeds 0.01 eth to buy P3D with // each game seeds 0....
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) incorrect-equality with Medium impact 3) uninitialized-local with Medium impact 4) weak-prng with High impact 5) unused-return with Medium impact
pragma solidity 0.4.21; contract MultiSigWallet { uint constant public MAX_OWNER_COUNT = 50; event Confirmation(address indexed sender, uint indexed transactionId); event Revocation(address indexed sender, uint indexed transactionId); event Submission(uint indexed transactionId); event Execution(...
No vulnerabilities found
// текущая версия - 12 тестовая. уменьшены объемы!!!! // добавлены комменты в require // исправлена ф-ия refund // блокировки переводов сделаны на весь период ICO и Crowdsale // добавлен лог в refund // добавлены функции блокировки\разблокировки внешних переводов в рабочем режиме контракта // для возможности расчета ди...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) unchecked-transfer with High impact 4) unused-return with Medium impact 5) locked-ether with Medium impact
pragma solidity ^0.4.10; contract SafeMath { function safeAdd(uint256 x, uint256 y) internal returns(uint256) { uint256 z = x + y; assert((z >= x) && (z >= y)); return z; } function safeSubtract(uint256 x, uint256 y) internal returns(uint256) { assert(x >= y); uint256 z = x ...
No vulnerabilities found
pragma solidity ^0.4.18; contract ArgumentsChecker { /// @dev check which prevents short address attack modifier payloadSizeIs(uint size) { require(msg.data.length == size + 4 /* function selector */); _; } /// @dev check that address is valid modifier validAddress(address addr) { ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; contract BREBuy { struct ContractParam { uint32 totalSize ; uint256 singlePrice; // 一个eth &#39; uint8 pumpRate; bool hasChange; } address owner = 0x0; uint32 gameIndex = 0; uint256 totalPrice= 0; ContractParam public setCon...
These are the vulnerabilities found 1) weak-prng with High impact 2) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-07-25 */ // SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.6; interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint256 ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-04-25 */ /** *Submitted for verification at Etherscan.io on 2021-04-24 */ pragma solidity ^0.6.6; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easi...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-03-01 */ pragma solidity 0.6.0; abstract contract IERC20 { function totalSupply() virtual public view returns (uint); function balanceOf(address tokenOwner) virtual public view returns (uint); function allowance(address tokenOwner, address spe...
These are the vulnerabilities found 1) tautology with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.6.6; //import "../../GSN/Context.sol"; //import "./IERC20.sol"; //import "../../math/SafeMath.sol"; //import "../../utils/Address.sol"; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-04-30 */ pragma solidity ^0.6.6; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an ov...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-07-24 */ /** */ pragma solidity ^0.4.24; // official website: // ---------------------------------------------------------------------------- // ' // // Deployed to : BMBCoin // Symbol : BMB // Name : BMBCoin // Decimals : 18 // // Enjoy. BMB...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-23 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'DataInu' token contract // // Deployed to : 0x20D90e1b283F44326b23Df9230F8DcE296674F40 // Symbol : DAINU // Name : DataInu // Total...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-04 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, th...
No vulnerabilities found
pragma solidity ^0.4.25; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external r...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.7.0; contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner) public onlyOwner { newOwner = _newOwner; } function acceptOwnership() public { ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.16; contract owned { address public owner; function owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address newOwner) onlyOwner public { owner = newOwner; } } i...
These are the vulnerabilities found 1) erc20-interface with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.11; /** * Math operations with safety checks */ library SafeMath { function mul(uint a, uint b) internal returns (uint) { uint c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint a, uint b) internal returns (uint) { // assert(b > 0); // Solidity automati...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/// This code was taken from: https://github.com/ConsenSys. Please do not change or refactor. pragma solidity 0.4.11; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <<span class="__cf_email__" data-cfemail="b4c7c0d1d2d5da9ad3d1dbc6d3d1...
No vulnerabilities found
pragma solidity 0.4.15; // This code was taken from https://etherscan.io/address/0x3931E02C9AcB4f68D7617F19617A20acD3642607#code // This was a presale from ProofSuite.com // This was based on https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/crowdsale/Crowdsale.sol from what I saw /** * @title ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) unused-return with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // &#39;BRLT&#39; token contract // // Deployed to : 0x41C01275784c14B692e73d1dfD09859f1f04b079 // Symbol : BRLT // Name : Brazilian Real Token // Total supply: 1,000,000,000,000.000000000000000000 // D...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.16; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract TokenERC20 { // Public variables of the token string public name; string public symbol; uint8 public decimals = 18; // 18 decimals is the...
These are the vulnerabilities found 1) erc20-interface with Medium impact