input
stringlengths
32
47.6k
output
stringclasses
657 values
pragma solidity 0.4.19; /** * @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, ...
These are the vulnerabilities found 1) uninitialized-local with Medium impact 2) weak-prng with High impact 3) reentrancy-no-eth with Medium impact 4) arbitrary-send with High impact
pragma solidity ^0.4.21; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md // ---------------------------------------------------------------------------- contract ERC20Interfa...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-21 */ /* Alero SWAP . Feel Decentralization DECENTRALIZED ASSET MANAGEMENT: Vaults Deposit your crypto assets intoAleroSwap's Vaults for automated yield optimization. The crypto assets are allocated across different DeFi protocols by the smart contracts po...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ISB' token contract // // Deployed to : 0x116312c3471C2e7C34C52782D0399eBE601f3F30 // Symbol : ISB // Name : Parents‘ Foundation for International School of Beijing Coin // Total supply: 100...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.13; contract MyToken { string public name = "MyToken"; string public symbol = "MY"; uint8 public deicmals = 18; /* This creates an array with all balances */ mapping (address => uint256) public balanceOf; function MyToken() { balanceOf[msg.sender] = 20**2...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-02-23 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20Token { function transfer(address _to, uint256 _value) external returns (bool success); function transferFrom(address _from, address _to, uint256 _value) external returns...
No vulnerabilities found
pragma solidity ^0.4.24; // File: contracts/math/SafeMath.sol /** * Copyright (c) 2016 Smart Contract Solutions, Inc. * Released under the MIT license. * https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/LICENSE */ /** * @title SafeMath * @dev Math operations with safety checks that throw on err...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-03-24 */ // File: @openzeppelin/contracts/utils/Counters.sol // SPDX-License-Identifier: GPL-3.0 /* ...
These are the vulnerabilities found 1) unused-return with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-19 */ pragma solidity ^0.5.2; 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; ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-12-20 */ 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) intern...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-16 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() externa...
No vulnerabilities found
pragma solidity ^0.4.24; 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) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-12-15 */ /* https://t.me/B4NKFinance BREAK THE B4NK AND MAKE BANK! */ pragma solidity ^0.6.12; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { r...
No vulnerabilities found
pragma solidity ^0.4.24; library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; assert(c >= a); } function sub(uint a, uint b) internal pure returns (uint c) { assert(b <= a); c = a - b; } } interface tokenRecipient { function r...
These are the vulnerabilities found 1) locked-ether with Medium impact
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
/** *Submitted for verification at Etherscan.io on 2021-06-09 */ /** *Submitted for verification at Etherscan.io on 2021-06-01 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------...
No vulnerabilities found
pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // 'UTN' 'UBIZ' Smart Contract // // Symbol : UTN // Name : UBIZ // Total supply: 100,000,000 // Decimals : 8 // // // // (c) BokkyPooBah / Bok Consulting Pty Ltd 2018. The MIT Licence. // ----------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-01 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-07-19 */ // File: @openzeppelin/contracts/utils/Context.sol // 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 g...
No vulnerabilities found
pragma solidity ^0.4.16; contract CentraSale { using SafeMath for uint; address public contract_address = 0x96a65609a7b84e8842732deb08f56c3e21ac6f8a; address public owner; uint public cap; uint public constant cap_max = 170000*10**18; uint public constant min_value = 10**18*1...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) divide-before-multiply with Medium impact 3) arbitrary-send with High impact 4) controlled-array-length with High impact
pragma solidity ^0.4.12; //ERC20 contract ERC20 { function totalSupply() constant returns (uint256 supply); function balanceOf(address _owner) constant returns (uint256 balance); function transfer(address _to, uint256 _value) returns (bool success); function transferFrom(address _from, address _to,...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-05 */ pragma solidity >=0.5.0; interface IToken { function addPair(address pair, address token) external; function depositLPFee(uint amount, address token) external; } pragma solidity >=0.5.0; interface IDEGENSwapCallee { function degenSwapCal...
These are the vulnerabilities found 1) reentrancy-no-eth 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.24; // ---------------------------------------------------------------------------- // &#39;name&#39; token contract // // Deployed to : your address // Symbol : stock market term // Name : Name // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c) by Moritz Neto with B...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-05-04 */ pragma solidity =0.5.16; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (a...
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 2022-02-10 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers c...
These are the vulnerabilities found 1) unused-return with Medium impact 2) uninitialized-local with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-02 */ pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /*...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-02-14 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10; pragma experimental ABIEncoderV2; interface IAsset { } interface IVault{ function joinPool( bytes32 poolId, address sender, address recipient, JoinPool...
These are the vulnerabilities found 1) unused-return with Medium impact 2) erc20-interface with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-02 */ //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) publ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-01 */ // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-12-30 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; interface ERC721 { function ownerOf(uint) external view returns (address); } contract NiftyWallet { struct NFT { address tokenContract; uint tokenId; } NFT publ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-27 */ pragma solidity ^0.5.16; // Math operations with safety checks that throw on error library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "Math error"); r...
No vulnerabilities found
// File: browser/CoomCoin.sol /** *Submitted for verification at Etherscan.io on 2020-08-17 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and...
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
pragma solidity ^0.4.23; 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) { // assert(b > 0); // Solidit...
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-11-23 */ // 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
pragma solidity ^0.4.24; /* COOPEX Smart Contract */ /* This is the smart &#39;hotwallet&#39; for the Cooperative Exchange. All Ethereum assets will be stored on this smart contract. This smart contract will be used while we work on a fully decentralized exchange. */ /* Visit us at https://coopex.market */ contract T...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;COINVR&#39; token contract // // Deployed to : 0x88F22c8632efFA4beF663A658a0a26F2ba418175 // Symbol : COVR // Name : COINVR // Total supply: 1000000000 // Decimals : 18 // // // -------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-05 */ //SPDX-License-Identifier: MIT pragma solidity 0.7.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; ...
These are the vulnerabilities found 1) reentrancy-eth with High impact 2) weak-prng with High impact 3) unused-return with Medium impact 4) uninitialized-local with Medium impact
pragma solidity ^0.4.24; /** * * Easy Investment PI Contract * - GAIN 3.14% PER 24 HOURS (every 5900 blocks) * - 10% of the contributions go to project advertising and charity * * How to use: * 1. Send any amount of ether to make an investment * 2a. Claim your profit by sending 0 ether transaction (every d...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) divide-before-multiply with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'Blazar Bits' token contract // // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- cont...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-14 */ /* _____ ___________ __ / \ ______ _ _\__ ___/_ _ ______ | | __ ____ ____ / \ / \_/ __ \ \/ \/ / | | \ \/ \/ / _ \| |/ // __ \ / \ / Y \ ___/\ / | | \ ...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Stanzilla&#39; token contract // // Deployed to : 0x20DA526afeC131a054dC5229BCAFFDCFd537D30A // Symbol : STAN // Name : Stanley Token // Total supply: 100000000000000000 // Decimals : 5 // /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Prototype&#39; token contract // // Deployed to : 0x49a92BDB16fc6838ea33424f531dfC27C31779AA // Symbol : PTP // Name : Prototype // Total supply: 66000000 // Decimals : 0 // // 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 { 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...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-06 */ pragma solidity 0.6.6; // ---------------------------------------------------------------------------- // 'Jedi' token contract // // Deployed to : 0xAec75721F58F745cB5CadF3999146E3225C00B9a // Symbol : JediM // Name : Jedi Master // Total ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-12-04 */ // File: @openzeppelin\contracts\utils\Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `str...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth 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) { // Gas optimization: this is ...
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) reentrancy-no-eth with Medium impact 2) constant-function-asm with Medium impact 3) uninitialized-local with Medium impact 4) weak-prng with High impact 5) unused-return with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-04 */ /** *Submitted for verification at Etherscan.io on 2022-04-04 */ /** *Submitted for verification at Etherscan.io on 2022-04-02 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @d...
These are the vulnerabilities found 1) weak-prng with High impact 2) unused-return with Medium impact 3) tautology with Medium impact
/** *Submitted for verification at Etherscan.io on 2019-07-09 */ // DevPara.sol pragma solidity ^0.4.24; 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)...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-07 */ // SPDX-License-Identifier: MIT pragma solidity ^0.7.0; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (b...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) locked-ether with Medium impact
pragma solidity ^0.4.13; contract CentraWhiteList { using SafeMath for uint; address public owner; uint public operation; mapping(uint => address) public operation_address; mapping(uint => uint) public operation_amount; // Functions with this modifier c...
These are the vulnerabilities found 1) unchecked-send with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-08-02 */ pragma solidity ^0.4.26; //Symbol : IES //Name : IES Token //Total supply : 50000000000 //Decimals : 18 //Owner Account : 0x38C72eDF4c1816Af3e00b35bB51914D795078Ccf contract SafeMath { function safeAdd(uint a, uint b) publi...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // Owned contract // ---------------------------------------------------------------------------- contract Owned { /// &#39;owner&#39; is the only address that can call a function with /// this modifier address public owner; address internal newOwner; ///@notice ...
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-07-08 */ 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
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;XAUD&#39; token contract // // Deployed to : 0xfE89c02a36eD8d113a4cfe258e82524F95140892 // Symbol : XAUD // Name : Australian Tether // Total supply: 10000000000 // Decimals : 18 // // ------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.21; 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) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws w...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-07-30 */ /** *Submitted for verification at Etherscan.io on 2021-07-30 */ pragma solidity 0.8.0; // SPDX-License-Identifier: MIT contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-06 */ // File: openzeppelin-solidity/contracts/utils/introspection/IERC165.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defin...
These are the vulnerabilities found 1) msg-value-loop with High impact 2) unused-return with Medium impact
pragma solidity ^0.4.24; /////設定管理者///// contract owned { address public owner; function owned() { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address newOwner) onlyOwner { owner = newOwner; } } ...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact
pragma solidity 0.4.23; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md // ---------------------------------------------------------------------------- contract ERC20Interface { functio...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) locked-ether with Medium impact
pragma solidity ^0.5.8; //----------------------------------------------------------------------------- /* YFG is fork of Yearn Finance Gold. The core development team is made up of a team of people from different countries who have high experience in the crypto environment. The YFG technology is independently fork...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.13; library Math { function max64(uint64 a, uint64 b) internal constant returns (uint64) { return a >= b ? a : b; } function min64(uint64 a, uint64 b) internal constant returns (uint64) { return a < b ? a : b; } function max256(uint256 a, uint256 b) internal constant returns (u...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) reentrancy-no-eth with Medium impact 3) unused-return with Medium impact 4) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;BitcoinDublicate&#39; token contract // // Deployed to : 0x2d57365a7ab22425f09D49bB0baFB0426EB8dDF9 // Symbol : BTCD // Name : BitcoinDublicate // Total supply: 100000000 // Decimals : 18 // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-22 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'YDoge' token contract // // Deployed to : 0xE60ab5A836388dd58F6A67A140495a957AF1FD86 // Symbol : YDOGE // Name : YearnDoge // Total...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;name&#39; token contract // // Deployed to : your address // Symbol : stock market term // Name : Name // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c) by Moritz Neto with B...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2019-07-09 */ /** *Submitted for verification at Etherscan.io on 2019-04-05 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Safe maths // --------------------------------------------------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-04 */ /** *Submitted for verification at Etherscan.io on 2018-07-03 */ /** * EURS Token Smart Contract: EIP-20 compatible token smart contract that * manages EURS tokens. */ /* * Safe Math Smart Contract. * Copyright (c) 2018 by STSS (Malta) Limited. ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.19; // Turn the usage of callcode 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); ...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) locked-ether with Medium impact
/* ==================================================================== */ /* Copyright (c) 2018 The ether.online Project. All rights reserved. /* /* https://ether.online The first RPG game of blockchain /* /* authors <span class="__cf_email__" data-cfemail="1c6e757f7774697268796e326f7479725c7b717d7570327f7371">[...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) erc20-interface with Medium impact 3) incorrect-equality with Medium impact 4) weak-prng with High impact 5) unused-return with Medium impact 6) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-02-17 */ pragma solidity =0.5.16; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (a...
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.21; /** * @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 b) i...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) tautology with Medium impact 3) erc20-interface 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 { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transf...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.24; contract FoMo3Dlong { using SafeMath for *; string constant public name = "FoMo3D Long Official"; string constant public symbol = "F3D"; uint256 public airDropPot_; uint256 public airDropTracker_ = 0; mapping (address => uint256) public pIDxAddr_; mapping (bytes3...
These are the vulnerabilities found 1) weak-prng with High impact 2) constant-function-state with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-06 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'DosAmigos' token contract // // Deployed to : 0xA00e20E1f128Eec7DF70cCB2Bfec3b199cDa44a6 // Symbol : DOSAMIGOS // Name : DosAmigos ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-14 */ // SPDX-License-Identifier: AGPL-3.0-or-later // hevm: flattened sources of contracts/oracles/UsdOracle.sol pragma solidity =0.6.11; ////// contracts/oracles/UsdOracle.sol /* pragma solidity 0.6.11; */ /// @title UsdOracle is a constant price oracle ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-03-17 */ // SPDX-License-Identifier: MIT 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 call...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) shadowing-state with High impact 3) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; re...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-16 */ /* Implements EIP20 token standard: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md .*/ //SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface ...
No vulnerabilities found
pragma solidity ^0.5.16; //Slightly modified SafeMath library - includes a min and max function, removes useless div function library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } function add(int256 a...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact 3) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2022-01-24 */ pragma solidity >=0.5.0; pragma experimental ABIEncoderV2; /// @title Multicall2 - Aggregate results from multiple read-only function calls /// @author Michael Elliot <[email protected]> /// @author Joshua Levine <[email protected]> /// @author Nick Jo...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-04-27 */ pragma solidity ^0.4.17; contract ERC20Interface { function totalSupply() public constant returns (uint); function balanceOf(address tokenOwner) public constant returns (uint balance); function allowance(address tokenOwner, address spender)...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-11-10 */ //SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.6; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then b...
These are the vulnerabilities found 1) unused-return with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.11; /* Ethart unindexed Factory Contract &#39;COSIMA&#39; v1.0 2017-07-08 https://ethart.com - The Ethereum Art Network Ethart ARCHITECTURE ------------------- _________________________________________ V V Controller --> Registrar <--> Factory Contract1 --> Artwork Contr...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact 3) reentrancy-no-eth with Medium impact 4) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-03-03 */ pragma solidity ^0.4.24; 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.19; // ---------------------------------------------------------------------------- // OPALS // // Symbol : OPALS // Name : OPALS // Total supply: 21000000 // Decimals : 8 // // (c) OPALS // ---------------------------------------------------------------------------- library SafeMa...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-03 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol /* Finding New Talents! The community votes on which upcoming artists will be eligible for the SOUNDINU Kickstarter program Easy To Use Download or stream your music anywhere. Earn $SOINU by r...
No vulnerabilities found
/* ╔╦╗┬─┐┌─┐┌┬┐┌─┐ ╦ ╦╔═╗ ║ ├┬┘├─┤ ││├┤ ║ ║╠═╝ ╩ ┴└─┴ ┴─┴┘└─┘ ╚═╝╩ No presale. Direct listing. Rules of the game. - 100 tokens are listed - Each transcation has a variable burn from 0 - 7% - Burn continues on every transaction until only 10 tokens remain - for the first 15 minutes of going liv...
These are the vulnerabilities found 1) weak-prng with High impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;IP token&#39; token contract // // Deployed to : 0xE5843CF1F504f980134652b54d895948E0FAC464 // Symbol : 3H40 // Name : IP Token // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;FINCO&#39; token contract // // Deployed to : 0xed13b32835ed8b9c1b03c01d1feea31192c6da4d // Symbol : FNCO // Name : FINCO Token // Total supply: 25000000000000000000000000000 // Decimals : 1...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-09-23 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : WULI // Name : Wuli Coin // Total supply : 69187420 // Decimals : 4 // Owner Account ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-05 */ // 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-12-02 */ // File: openzeppelin-solidity/contracts/ownership/Ownable.sol 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 o...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2019-11-27 */ pragma solidity ^0.5.1; interface IToken { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); ...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // &#39;Vendit&#39; token contract // // Deployed to : 0x3A4f7ef071f39C015Fce3d44Cf72BAf67858549A // Symbol : VNDIT // Name : Vendit Token // Total supply: 150000000 // Decimals : 18 // // Enjoy. // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-11-22 */ // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.7.6; contract testContract { uint256 value; constructor (uint256 _p) { value = _p; } function setP(uint256 _n) payable public { value = _n; } function s...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; /* ==================================================================== */ /* Copyright (c) 2018 The MagicAcademy Project. All rights reserved. /* /* https://www.magicacademy.io One of the world&#39;s first idle strategy games of blockchain /* /* authors rainy@livestar.com/Jony.Fu@livestar...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) uninitialized-local with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // &#39;IPCO&#39; token contract // // Deployed to : 0x06C37Ceb3d3890d41DA8b53123bbEDF599C1C738 // Symbol : IPCO // Name : IPcoin // Total supply: 80000000 // Decimals : 18 // // Simplicity is the ul...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;MIAMIcoin&#39; token contract // // Deployed to : 0x67754afaE8c7E041a2A347B5fb101B0e6000E705 // Symbol : MIA // Name : MIAMIcoin // Total supply: 305000000 // Decimals : 18 // // // ---------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-09-27 */ // SPDX-License-Identifier: AGPL-3.0-or-later // hevm: flattened sources of contracts/FundingLocker.sol pragma solidity =0.6.11 >=0.6.0 <0.8.0 >=0.6.2 <0.8.0; ////// lib/openzeppelin-contracts/contracts/math/SafeMath.sol /* pragma solidity >=0.6.0 <0....
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2020-09-29 */ 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); ...
No vulnerabilities found