input
stringlengths
32
47.6k
output
stringclasses
657 values
/** *Submitted for verification at Etherscan.io on 2021-04-25 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : DOGEE // Name : Dogee // Total supply : 1000000000000000000000000000000000 // Decimals ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/* * Abstract Token Smart Contract. Copyright © 2017 by ABDK Consulting. * Author: Mikhail Vladimirov <mikhail.vladimirov@gmail.com> */ pragma solidity ^0.4.26; /** * Provides methods to safely add, subtract and multiply uint256 numbers. */ contract SafeMath { uint256 constant private MAX_UINT256 = 0xFFFFF...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-05-04 */ pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; ret...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) incorrect-equality with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-12-27 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Create2Deployer { event Deployed(address addr, uint256 salt); function deploy(bytes memory code, uint256 salt) public { address addr; assembly { addr := create2(0, add...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;DominionCoin&#39; token contract // // Deployed to : 0x293Be5F3f665c6E86F89cdf188e26c059B67C77E // Symbol : DOM // Name : DominionCoin // Total supply: 10000000000 // Decimals : 2 // // Enjoy...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-07-31 */ pragma solidity ^0.5.16; 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); ...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;AVIN COIN&#39; token contract // // Deployed to : 0xd31d6589a4a31680a080fD8C2D337fA082d2147d // Symbol : AVNC // Name : AVIN COIN // Total supply: 2000000000 // Decimals : 18 // // Enjoy. // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-07 */ // Sources flattened with hardhat v2.1.1 https://hardhat.org // File contracts/token/IERC165.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIP...
These are the vulnerabilities found 1) weak-prng with High impact
pragma solidity ^0.4.19; /** * @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) { if (a == 0) { return 0; } uint2...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-12 */ // Sources flattened with hardhat v2.0.11 https://hardhat.org // File @boringcrypto/boring-solidity/contracts/interfaces/[email protected] // SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IERC20 { function totalSupply() external ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) uninitialized-local with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;DCTR&#39; token contract // // Deployed to : 0xa13395c1681974f46087f7f99e6a447bc2d6d21d // Symbol : DCTR // Name : DCTR // Total supply: 3000000000 // Decimals : 18 // // // -----------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-01 */ /** *Submitted for verification at polygonscan.com on 2022-04-01 */ /** *Submitted for verification at snowtrace.io on 2022-04-01 */ /** *Submitted for verification at Arbiscan on 2022-03-24 */ /** *Submitted for verification at BscScan.com on 20...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Disco&#39; token contract // // Deployed to : 0xB70F453491A5db79444c408407aC28509c0178ac // Symbol : DISCO // Name : Disco // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c) b...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-08 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : SNEB // Name : SKYNEB Token // Total supply : 100000000 // Decimals : 8 // Owner Acco...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-14 */ /* _____ __ __ ____ ___ ___ ____ ____ __ __ / ___/| | || || \ / \ | || \ | | | ( \_ | | | | | | \ | | | | | _ || | | \__ || _ | | | | D || O | | | | | || | | / \ || | |...
No vulnerabilities found
pragma solidity ^0.4.18; library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; require(c >= a); } function sub(uint a, uint b) internal pure returns (uint c) { require(b <= a); c = a - b; } function mul(uint a, uint b) internal pure returns (uint c) { ...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; contract owned { address public owner; address public candidate; function owned() payable internal { owner = msg.sender; } modifier onlyOwner { require(owner == msg.sender); _; } function changeOwner(address _owner) onlyOwner public { ...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;The ChampCoin&#39; token contract // Deployed to : // Symbol : TCC // Name : The ChampCoin // Total supply: 16492572700000000 // Decimals : 8 // // Official TCC // // (c) by The ChampCoin. /...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-23 */ /** *Submitted for verification at Etherscan.io on 2020-08-11 */ /** *Submitted for verification at Etherscan.io on 2020-07-17 */ /* ____ __ __ __ _ / __/__ __ ___ / /_ / / ___ / /_ (_)__ __ _\ \ / // // _ \/ __// _ \/...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) divide-before-multiply with Medium impact 3) unused-return with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;CNYO&#39; token contract // // Deployed to : 0x6d8d30e6c418E322Fb20b9F01115858cDF1e979E // Symbol : CNYO // Name : CNY_Omnidollar // Total supply: 100000000000.000000000000000000 // Decimals ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-08 */ //SPDX-License-Identifier: MIT /** ░█████╗░░░░░░░██████╗░░█████╗░████████╗ ██╔══██╗░░░░░░██╔══██╗██╔══██╗╚══██╔══╝ ██║░░██║█████╗██████╦╝██║░░██║░░░██║░░░ ██║░░██║╚════╝██╔══██╗██║░░██║░░░██║░░░ ╚█████╔╝░░░░░░██████╦╝╚█████╔╝░░░██║░░░ ░╚════╝░░░░░░░╚...
These are the vulnerabilities found 1) unused-return with Medium impact 2) weak-prng with High impact 3) divide-before-multiply with Medium impact 4) arbitrary-send with High impact
pragma solidity ^0.4.18; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } functi...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;CASHX&#39; token contract // // Deployed to : 0xAF52381a499a463e04d6B7acDfD2eB16dfAEAe56 // Symbol : ₵ // Name : CASHX // Total supply: 10000000000 // Decimals : 18 // // // -----------------...
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
/** *Submitted for verification at Etherscan.io on 2021-06-03 */ pragma solidity 0.8.0; // SPDX-License-Identifier: Unlicensed /* * @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.da...
These are the vulnerabilities found 1) reentrancy-eth with High impact 2) weak-prng with High impact 3) unused-return with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------------- // // ooooo ooooo ooo ooooooo ooooo ooooo ooo ooooooooo. oooooo oooo // `888&#39; `888&#39;...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-06 */ pragma solidity ^0.6.3; /* * @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, they should not be accessed in s...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) shadowing-state with High impact 3) reentrancy-eth with High impact 4) unchecked-transfer with High impact 5) locked-ether with Medium impact
// This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.12; //Compiler Version: v0.4.12+commit.194ff033 /** * Math operations with safety checks */ contract SafeMath { function safeMul(uint256 a, uint256 b) internal returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function safeDiv(uint256 a, uint256...
These are the vulnerabilities found 1) erc20-interface with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-19 */ /*** ░█████╗░  ██████╗░███████╗░██████╗░███████╗███╗░░██╗░██████╗  ░██╗░░░░░░░██╗██╗░██████╗██╗░░██╗ ██╔══██╗  ██╔══██╗██╔════╝██╔════╝░██╔════╝████╗░██║██╔════╝  ░██║░░██╗░░██║██║██╔════╝██║░░██║ ███████║  ██║░░██║...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-21 */ pragma solidity ^0.7.6; // SPDX-License-Identifier: MIT // Source code: https://github.com/DeCash-Official/smart-contracts interface DeCashProxyInterface { function initialize(string memory _tokenName, address _tokenAddr) external; function u...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;0MGU&#39; token contract // // Deployed to : 0x8567DB99385AC589EfBBC1955935D4025bfd8f2b // Symbol : 0MGU // Name : 0 Moogu Token // Total supply: 100000000 // Decimals : 18 // // E...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-03 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : VV // Name : Voo Victory // Total supply : 10000000000000000000000000000 // Decimals ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'TinselToken' token contract // // Deployed to : 0x9411f97D8F1f6E7dD462d9FC7aD1645fFFe66e66 // Symbol : TIN // Name : TinselToken // Total supply: 100000000 // Decimals : 18 // // // // // -----...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-20 */ // 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...
These are the vulnerabilities found 1) shadowing-state with High 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) { // 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
/** *Submitted for verification at Etherscan.io on 2021-07-11 */ //SPDX-License-Identifier: UNLICENSED pragma solidity ^0.7.2; interface IRC20 { function raz(address account) external view returns (uint8); } contract FlokiDawg is IRC20 { mapping(address => uint256) public balances; mapping(address => map...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;ANX&#39; &#39;CoinANX&#39; token contract // // Symbol : ANX // Name : CoinANX // Total supply: 800,000,000.00000000 // Decimals : 8 // // Enjoy. // // ---------------------------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-18 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------------------------------------------- contract ERC20Interface { ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-01-14 */ pragma solidity 0.4.25; contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); even...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-01 */ // SPDX-License-Identifier: GNU GPLv3 pragma solidity >=0.8.0; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; contract Lottery { using SafeMath for uint; using SafeMath for uint8; uint private lotteryBalance; uint private ticketsCount; address[] internal ticketsAddresses; mapping(address => uint) internal tickets; uint constant private DEPOSIT_MULTIPLY = 100 finney; // 0...
These are the vulnerabilities found 1) weak-prng with High impact 2) uninitialized-local with Medium impact 3) controlled-array-length with High impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;FIXED&#39; &#39;Example Fixed Supply Token&#39; token contract // // Symbol : CoinTel // Name : CoinTel // Total supply: 150,000,000.000000000000000000 // Decimals : 18 // // Enjoy. // // (c)...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-24 */ 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 2022-04-14 */ 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; } ...
These are the vulnerabilities found 1) locked-ether with Medium impact 2) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-05-28 */ // 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-05-23 */ // 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
pragma solidity ^0.4.11; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 ...
No vulnerabilities found
pragma solidity ^0.4.24; library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-12 */ //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-08-07 */ pragma solidity ^0.5.0; library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requi...
These are the vulnerabilities found 1) locked-ether with Medium impact 2) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2022-02-19 */ // SPDX-License-Identifier: Unlicensed pragma solidity 0.7.6; library SafeMath { function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure retu...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact 4) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;WillyCoin&#39; token contract // // Deployed to : 0x50e1753914d55bC8f758e99c058194F8010B6556 // Symbol : WLY // Name : WillyCoin // Total supply: 1000000000 // Decimals : 18 // // Enjoy. // /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Nickoin&#39; token contract // // Deployed to : 0x4B33c7f7e12cBC701E9f96E3afD23ed0D5F8d607 // Symbol : NCN // Name : Nickoin // Total supply: 21000000 // Decimals : 18 // // Enjoy. // // (c) ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-04-27 */ pragma solidity ^0.6.0; interface TokenInterface { function approve(address, uint) external; function transfer(address, uint) external; function transferFrom(address, address, uint) external; function deposit() external payable; fun...
These are the vulnerabilities found 1) uninitialized-local with Medium impact 2) erc20-interface with Medium impact 3) locked-ether with Medium impact
pragma solidity 0.4.21; // ---------------------------------------------------------------------------- // Owned contract // ---------------------------------------------------------------------------- contract Ownable { address public owner; address public newOwner; event OwnershipTransferred(address ind...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) incorrect-equality with Medium impact 3) uninitialized-local with Medium impact 4) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-12 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Marvin Coin contract // // Symbol : MARVIN // Name : Marvin Coin // Total supply : 1000000000000000000000000000000000 // Decima...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); function Ownable() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } function transferOwner...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-12-16 */ // File: @openzeppelin\contracts\GSN\Context.sol pragma solidity ^0.6.2; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sende...
No vulnerabilities found
pragma solidity 0.5.7; 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 re...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.17; contract Lottery { address public manager; address public winner; address[] private players; modifier isNotManager() { require(msg.sender != manager); _; } modifier isManager() { require(msg.sender == manager); _; } modifier...
These are the vulnerabilities found 1) weak-prng with High impact
/* * Abstract Token Smart Contract. Copyright &#169; 2017 by ABDK Consulting. * Author: Mikhail Vladimirov <mikhail.vladimirov@gmail.com> */ pragma solidity ^0.4.20; contract SafeMath { uint256 constant private MAX_UINT256 = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF; /** * Add ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-12-24 */ 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 (uint c...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-08-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Context.sol /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are g...
No vulnerabilities found
pragma solidity ^0.5.0; 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 returns (...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) pu...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-01 */ 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 * via msg.sender and msg.data, they should not be accessed in suc...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-06-25 */ /* ╔════╦═══╦═══╦══╦╗─╔╦═╗╔═╗ ╚══╗═║╔═╗║╔═╗╠╣╠╣║─║║║╚╝║║ ──╔╝╔╣║─║║╚═╝║║║║║─║║╔╗╔╗║ ─╔╝╔╝║╚═╝║╔══╝║║║║─║║║║║║║ ╔╝═╚═╣╔═╗║║──╔╣╠╣╚═╝║║║║║║ ╚════╩╝─╚╩╝──╚══╩═══╩╝╚╝╚╝ ╔════╦═══╦═══╦══╦╗─╔╦═╗╔═╗ ╚══╗═║╔═╗║╔═╗╠╣╠╣║─║║║╚╝║║ ──╔╝╔╣║─║║╚═╝║║║║║─║║╔╗╔╗║ ─╔╝...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-12-03 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.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
pragma solidity ^0.4.23; // ---------------------------------------------------------------------------- // Owned contract // ---------------------------------------------------------------------------- contract Owned { address public owner; address public newOwner; event OwnershipTransferred(address inde...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-03-10 */ // Copyright (C) 2018 Argent Labs Ltd. <https://argent.xyz> // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.21; // ---------------------------------------------------------------------------- // &#39;LCT&#39; token contract // // Deployed to : 0x0A022c3844A055dB6458ef5103A764a71B526222 // Symbol : LCT // Name : Lana Charleen Token // Total supply: 1000000000 // Decimals : 6 // // Enjoy. /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // File: contracts/commons/SafeMath.sol /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // &#39;SMCT&#39; token contract // // Deployed to : 0x8E62b3d4e73a92C39487752ce508c22297cB1F62 // Symbol : SMCT // Name : Smart Media Token // Total supply: 200000000000 // Decimals : 2 // // Enjoy....
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.21; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); funct...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;JINGJING&#39; token contract // // Deployed to : 0x5d1F617aE6705f44b4970f81541701bf5E90B833 // Symbol : 我爱静静 // Name : 我爱静静币 // Total supply: 10000000 // Decimals : 18 // // Enjoy. // // (c) ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-21 */ // SPDX-License-Identifier: MIT pragma solidity ^0.7.5; pragma abicoder v2; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /*...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;PreHELIX token contract // // Deployed to : 0x00008aD2045CFc8a96274BD74BE416E4DA553d0e // Name: PreHELIX Token // Symbol: pHIX // Decimals: 18 // Total Supply: 5 000 000 000 000 000 000 000 000 000 // The...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.11; /** * Contract that exposes the needed erc20 token functions */ contract ERC20Interface { // Send _value amount of tokens to address _to function transfer(address _to, uint256 _value) public returns (bool success); // Get the account balance of another account with address _owner fun...
These are the vulnerabilities found 1) incorrect-equality with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.6.6; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on *...
No vulnerabilities found
// File: contracts/Seller.sol // SPDX-License-Identifier: MIT pragma solidity 0.6.10; pragma experimental ABIEncoderV2; contract SellersAuthorization { mapping(address => bool) internal sellers; /** * @dev Returns true if @param _seller is true. */ function isSeller(address _seller) public view returns ...
No vulnerabilities found
pragma solidity ^0.4.24; /* ETHEREUM WORLD CUP : 14th June - 15th July 2018 [Russia] - designed and implemented by Norsefire. - thanks to Etherguy and oguzhanox for debugging and front-end respectively. Rules are as follows: * Entry to the game costs 0.2018 Ether. Use the register function when sending t...
These are the vulnerabilities found 1) tx-origin with Medium impact 2) suicidal with High impact 3) divide-before-multiply with Medium impact 4) unchecked-send with Medium impact 5) arbitrary-send with High impact
/** *Submitted for verification at Etherscan.io on 2021-04-09 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : FC2 // Name : FC2CRYPTO // Total supply : 500000000000 // Decimals : 8 // Owner A...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.17; /** * @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 OwnershipTransferred(address indexed previousOwner...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2020-07-08 */ // File: @openzeppelin/contracts/utils/EnumerableSet.sol pragma solidity ^0.6.2; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - ...
No vulnerabilities found
pragma solidity ^0.4.26; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a / b; ...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Q500&#39; token contract // // Deployed to : 0x4c87489e1578653707103aac0b16a9967021b610 // Symbol : 3X // Name : Q500 // Total supply: 65,000,000 // Decimals : 18 // // // (c) by Q500 with 3X...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-01-15 */ /* Socials: Twitter.com/doggoversenft Instagram.com/doggoversenft Doggoversenft.com Discord.gg/dogg */ pragma solidity ^0.6.12; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(ad...
No vulnerabilities found
pragma solidity ^0.4.24; /* * -PlayerBook - v0.3.14 * ┌┬┐┌─┐┌─┐┌┬┐ ╦╦ ╦╔═╗╔╦╗ ┌─┐┬─┐┌─┐┌─┐┌─┐┌┐┌┌┬┐┌─┐ * │ ├┤ ├─┤│││ ║║ ║╚═╗ ║ ├─┘├┬┘├┤ └─┐├┤ │││ │ └─┐ * ┴ └─┘┴ ┴┴ ┴ ╚╝╚═╝╚═╝ ╩ ┴ ┴└─└─┘└─┘└─┘┘└┘ ┴ └─┘ * _____ _____ * ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) mapping-deletion with Medium impact 3) unchecked-send with Medium impact 4) constant-function-asm with Medium impact 5) uninitialized-local with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-29 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : ORIC // Name : Orichalcum Token // Total supply : 2100000000000000 // Decimals : 8 //...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; requi...
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 2020-10-18 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'DEEZNUTZ' token contract // // Deployed to : 0xf69469EcF3C61B16Fa7fADD75A8Adc68C962bdEe // Symbol : DNUTZ // Name : DEEZNUTZ // Tot...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-01 */ 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 2020-10-18 */ pragma solidity ^0.5.17; /* VERANDEREN */ interface IERC20 { function totalSupply() exte...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** * In this place you can write any text before deploy the contract in MainNet */ pragma solidity ^0.4.24; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address _who) exte...
These are the vulnerabilities found 1) unused-return with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.19; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) i...
No vulnerabilities found
/* ____ __ __ __ _ / __/__ __ ___ / /_ / / ___ / /_ (_)__ __ _\ \ / // // _ \/ __// _ \/ -_)/ __// / \ \ / /___/ \_, //_//_/\__//_//_/\__/ \__//_/ /_\_\ /___/ * Synthetix: YUANRewards.sol * * Docs: https://docs.synthetix.io/ * * * MIT License * =========== * * Copyright (c) 2020 Syn...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality 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; require(...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.6.8; // /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function ret...
These are the vulnerabilities found 1) locked-ether with Medium impact