input
stringlengths
32
47.6k
output
stringclasses
657 values
// Copyright (C) 2020 Zerion Inc. <https://zerion.io> // // 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 ...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;TonhaoCoin&#39; token contract // // Deployed to : 0xbB5Ecb8deD7Bc5FD35efFF59F6a5baB901378715 // Symbol : tonhao // Name : Tonhao Coin // Total supply: 1000 // Decimals : 0 // // Enjoy. // //...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.4.24; contract Owned { /* Variables */ address public owner = msg.sender; /* Constructor */ constructor(address _owner) public { if ( _owner == 0x00 ) { _owner = msg.sender; } owner = _owner; } /* Externals */ function replaceOwner(addres...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-03 */ // 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.18; // ---------------------------------------------------------------------------- // &#39;XEP&#39; token contract // // Deployed to : 0xd4e84d2fD4BD67bB3Dc55a9212bA7C1884D62feE // Symbol : XEP // Name : ephelants360 Token // Total supply: 7000000000 // Decimals : 18 // // Enjoy. /...
These are the vulnerabilities found 1) locked-ether with Medium impact
/* * Nomin Token Contract Proxy * ======================== * * This contract points to an underlying target which implements its * actual functionality, while allowing that functionality to be upgraded. */ pragma solidity 0.4.24; /** * @title A contract with an owner. * @notice Contract ownership can be tra...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-02-21 */ /** *Submitted for verification at Etherscan.io on 2019-08-08 */ /* =============================================== * Flattened with Solidifier by Coinage * * https://solidifier.coina.ge * =============================================== */ /* -----...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) unused-return with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-27 */ /** *Submitted for verification at Etherscan.io on 2021-06-15 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // Website: https://www.firstordertoken.com/ pragma solidity ^0.8.0; /** * @dev Interface o...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Coinware&#39; token contract // // Deployed to : 0xa81E21Cb715db6f3CAdd82B69C1dF082dF85C32F // Symbol : CWT // Name : Coinware Token // Total supply: 260000000 // Decimals : 18 // // Enjoy. /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; 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 wh...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-06 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'BlondiDoge' token contract // // Deployed to : 0x550490A674360FeD71eef59ab3a86251879aa764 // Symbol : BLONDI // Name : BlondiDoge /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;CBXE&#39; token contract // // Deployed to : 0xdacd7939Dcf31801e4D23aB297a3239AbF815AFa // Symbol : CBXE // Name : Cryptobulls Coin // Total supply: 12000000 // Decimals : 0 // // Enjoy. // /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.4.21; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------------------------- // Enetrix Coinby ENC Limited. // An ERC20 standard // // author: ENC Team contract ERC20Interface { function totalSupply() public constant returns (uint256 _totalSupply); function balanc...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) tautology with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2019-07-07 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // &#39;CHFT&#39; token contract // // Deployed to : 0x5375bD481a1442694893eDA7d47FcEb04e8776fD // Symbol : CHFT // Name : Crypto Holdi...
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-05-31 */ pragma solidity >=0.5.0; interface ISumswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view ret...
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-06-12 */ // 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.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...
No vulnerabilities found
pragma solidity ^0.4.21; contract Token{ uint256 public totalSupply; function balanceOf(address _owner) public view returns (uint256 balance); function transfer(address _to, uint256 _value) public returns (bool success); function transferFrom(address _from, address _to, uint256 _value) public returns (...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-20 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'CyborgDoge' token contract // // Deployed to : 0xcf14271EA36dd9d733461DE918B87f47aa79d9Db // Symbol : CyborgDoge // Name : CYDOGE /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;BROffice Hub utility&#39; token contract // // Deployed to : 0x9dbB62e1f6187B2E0c4580fa32Ce958dBb22F6ED // Symbol : HUBU // Name : BROffice Hub Utility Token // Total supply: 500000000 // Decima...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.20; // Official public ICO sales address for QuarkChain tokens(QKC) 2018/06 // 1 ETH = 31533 QKC // https://quarkchain.io/ // Other ETH addresses are SCAMS /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint25...
No vulnerabilities found
pragma solidity ^0.4.23; contract HashBet { constructor() public {} event Result(uint256 hashVal, uint16 result); mapping( address => Bet ) bets; struct Bet { uint value; uint height; } function() payable public {} // Sorry not sorry function makeBet...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-20 */ /* * @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 such a direct * manner, sin...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2020-11-15 */ /** *Submitted for verification at Etherscan.io on 2020-11-15 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* Created and tested by the Tree team! */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-06 */ pragma solidity 0.6.7; contract GebMath { uint256 public constant RAY = 10 ** 27; uint256 public constant WAD = 10 ** 18; function ray(uint x) public pure returns (uint z) { z = multiply(x, 10 ** 9); } function rad(uint x) ...
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) uninitialized-local with Medium impact 5) weak-prng with High impact
// ---------------------------------------------------------------------------------------------- // Developer Nechesov Andrey: Facebook.com/Nechesov // Enjoy. (c) PRCR.org ICO Business Platform 2017. The PRCR Licence. // Eth address: 0x788C45Dd60aE4dBE5055b5Ac02384D5dc84677b0 // ------------------------------------...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) divide-before-multiply with Medium impact 3) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-07-15 */ 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); /*...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-15 */ // SPDX-License-Identifier: MIT pragma solidity >=0.7.0 <0.8.0; // A modification of OpenZeppelin ERC20 // Original can be found here: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol // Very slow erc2...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-10-22 */ pragma solidity ^0.6.12; // tg: https://t.me/PiccoloInu // Friday 10/22/21 // Piccolo Inu STEALTH Launch 🚀!! interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-02-26 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.12; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-09-29 */ // SPDX-License-Identifier: AGPL-3.0-or-later // hevm: flattened sources of contracts/CollateralLocker.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 ...
No vulnerabilities found
pragma solidity ^0.4.23; /** * @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 tha...
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 { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfe...
No vulnerabilities found
pragma solidity ^0.4.23; contract owned { address public owner; constructor() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address newOwner) onlyOwner public { owner = newOwner; } } inte...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-30 */ pragma solidity 0.5.16; interface IBEP20 { /** * @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
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;USACoin&#39; token contract // // Deployed to : 0xdb94ea3f744Ef5f4b385938ec0c118A4b65d5EbF // Symbol : USA // Name : USACoin // 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-18 */ /** *Submitted for verification at Etherscan.io on 2021-09-18 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; }...
No vulnerabilities found
pragma solidity ^0.6.0; /** * @title ERC20Basic */ interface ERC20Basic { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function transferFrom(address _from,...
No vulnerabilities found
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 (uint256) { return a / b; } functio...
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) locked-ether with Medium impact
pragma solidity ^0.4.23; // File: zeppelin-solidity/contracts/math/SafeMath.sol /** * @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 (uint...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-10-30 */ /** *Submitted for verification at Etherscan.io on 2020-10-30 */ pragma solidity ^0.6.2; contract PProxyStorage { function readBool(bytes32 _key) public view returns(bool) { return storageRead(_key) == bytes32(uint256(1)); } fun...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.4.21; contract Ownable { address public owner; address public newOwner; event OwnershipTransferred(address indexed _from, address indexed _to); function Ownable() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;KANYE&#39; token contract // // Deployed to : 0x432a39e0884a0bAA16e2b304b344E47f8CCe8B87 // Symbol : KANYE // Name : KANYE // Total supply: 100000000000 // Decimals : 18 // // Enjoy. // // (c...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;CIFRCOIN&#39; token contract // // Deployed to : 0xA53DA82444c353ED0cF0FaC92628127a4900266d // Symbol : CIFR // Name : CIFRCOIN TOKEN // Total supply: 100000000 // Decimals : 18 // // Enjoy. ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // &#39;Icarus&#39; token contract // // Deployed to : 0xC2C1f53d0886C2a677159327c17EE42afFc1652b // Symbol : ICRS // Name : Icarus // Total supply: 1500000 // Decimals : 0 // // // // // ---------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.23; /** * Math operations with safety checks */ library SafeMath { function mul(uint a, uint b) internal pure returns (uint) { uint c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint a, uint b) internal pure returns (uint) { // assert(b > 0); // Solidit...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact 2) erc20-interface with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;JO&#39; token contract // // Deployed to : 0x432a39e0884a0bAA16e2b304b344E47f8CCe8B87 // Symbol : OPRAH // Name : OPRAH // Total supply: 50000000000000 // Decimals : 18 // // Enjoy. // // (c)...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-05 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While t...
No vulnerabilities found
pragma solidity ^0.4.18; // File: src/Token/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 OwnershipTransferre...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-12-14 */ pragma solidity =0.5.16; interface IFireBirdFactory { event PairCreated(address indexed token0, address indexed token1, address pair, uint32 tokenWeight0, uint32 swapFee, uint256); function feeTo() external view returns (address); function form...
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.5.1; // ---------------------------------------------------------------------------- // 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
pragma solidity ^0.4.25; /* * CryptoMiningWar - Mining Contest Game * Author: InspiGames * Website: https://cryptominingwar.github.io/ */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == ...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact
pragma solidity ^0.5.17; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uin...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Lexcoin&#39; token contract // // Deployed to : 0x36Ad5f6227505BeF01a7bf5b4Ce939f71B023ab5 // Symbol : LXC // Name : Lexcoin // Total supply: 1000000000 // Decimals : 18 // // Enjoy. ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.23; 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; ...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) 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
pragma solidity ^0.4.16; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract BTK { // Public variables of the token string public name; string public symbol; uint8 public decimals = 18; // 18 decimals is the strong...
These are the vulnerabilities found 1) erc20-interface with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 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
/** *Submitted for verification at Etherscan.io on 2021-03-13 */ pragma solidity ^0.4.24; contract Migrations { address public owner; uint public last_completed_migration; modifier restricted() { if (msg.sender == owner) _; } function Migrations() { owner = msg.sender; } function setComplete...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-09-22 */ pragma solidity ^0.4.26; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : FMC // Name : FMCOIN // Total supply : 10000000000000000000000 // Decimals : 8 //...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.13; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) intern...
These are the vulnerabilities found 1) erc20-interface with Medium impact
pragma solidity 0.4.24; /** * @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; address public newOwner; address public adminer; ...
These are the vulnerabilities found 1) locked-ether with Medium impact 2) tautology with Medium impact 3) controlled-array-length with High impact
pragma solidity 0.4.16; contract Token { function totalSupply() constant returns (uint supply) {} function balanceOf(address _owner) constant returns (uint balance) {} function transfer(address _to, uint _value) returns (bool success) {} function transferFrom(address _from, address _to, uint _value) r...
These are the vulnerabilities found 1) shadowing-state with High impact
pragma solidity ^0.4.23; /** ███████╗███████╗████████╗██╗ ██╗██████╗ ╚══███╔╝██╔════╝╚══██╔══╝██║ ██║██╔══██╗ ███╔╝ █████╗ ██║ ███████║██████╔╝ ███╔╝ ██╔══╝ ██║ ██╔...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) unchecked-send with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-01 */ /** * Welcome to Holostarter * * Holostarter is the first decentralized launchpad and project accelerator for Holochain applications. * * * We help new projects from development phase to working product and we bring these projects to our commun...
No vulnerabilities found
pragma solidity ^0.4.0; /// @title Andxor hash logger /// @author Andxor Soluzioni Informatiche srl <http://www.andxor.it/> contract AndxorLogger { event LogHash(uint256 hash); function AndxorLogger() { } /// logs an hash value into the blockchain function logHash(uint256 value) { LogHash...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-27 */ 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
// https://hypeburn.finance // https://t.me/hypeburn_finance // __ __ // | |--.--.--.-----.-----| |--.--.--.----.-----. // | | | | _ | -__| _ | | | _| | // |__|__|___ | __|_____|_____|_____|__| |__|__| // |_____|__| // erc20 hburn token hypeburn...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;CTB&#39; &#39;CrypTollBooth Token&#39; token contract // // Symbol : CTB // Name : CrypTollBooth // Total supply: 50,000,000.000000000 // Decimals : 9 // // Enjoy. // // (c) BokkyPooBah / Bok...
These are the vulnerabilities found 1) erc20-interface with Medium impact 2) locked-ether with Medium impact
pragma solidity 0.4.24; /** * @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 transfer(addr...
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-26 */ //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 2022-04-17 */ 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
pragma solidity ^0.4.18; contract DogCoreInterface { address public ceoAddress; address public cfoAddress; function getDog(uint256 _id) external view returns ( uint256 cooldownIndex, uint256 nextActionAt, uint256 siringWithId, uint256 birthTime, ...
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) incorrect-equality with Medium impact 5) uninitialized-local with Medium impact 6) weak-prng with High impact 7) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-08-18 */ /** *Submitted for verification at Etherscan.io on 2021-08-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. Wh...
No vulnerabilities found
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.11; /* Ethart unindexed Factory Contract: Ethart ARCHITECTURE ------------------- _________________________________________ V V Controller --> Registrar <--> Factory Contract1 --> Artwork Contract1 Factory Contract2 Artwork Contract2 ... ... ...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) tautology with Medium impact 3) reentrancy-eth with High impact 4) weak-prng with High impact 5) controlled-array-length with High impact
/* NOBLE NATION SOVEREIGN TOKEN - ISSUANCE POLICIES & TERMS OF SERVICE Background Noble Nation is a global social, economic and political movement based around a revolutionary new crypto-block-chain technology and platform called Chakra. This platform is a cohesive and self sustaining society, economy and a governance...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-02-02 */ 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.23; /** * @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 as...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) shadowing-abstract with Medium impact 3) uninitialized-local with Medium impact 4) 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
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // THIS IS NOT A CONTRACT USED FOR ANYTHING // THIS IS JUST A TEST CONTRACT // // // ---------------------------------------------------------------------------- // ---------------------------------------...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
/** * Investors relations: dodododo **/ pragma solidity ^0.4.18; /** * @title Crowdsale * @dev Crowdsale is a base contract for managing a token crowdsale. * Crowdsales have a start and end timestamps, where investors can make * token purchases and the crowdsale will assign them tokens based * on a token per ET...
These are the vulnerabilities found 1) erc20-interface with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;NOBS&#39; token contract // // Deployed to : 0x5ac3b46bb953c5dd2f0c0861a22fc3c75462270e // Symbol : NOBS // Name : NOBS Token // Total supply: 100000000 // Decimals : 18 // // ---------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-08-20 */ /** *Submitted for verification at Etherscan.io on 2021-05-14 */ // SPDX-License-Identifier: AGPL-3.0-or-later // hevm: flattened sources of contracts/oracles/ChainlinkOracle.sol pragma solidity =0.6.11 >=0.6.0 <0.8.0; ////// contracts/interfaces/IM...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-04-14 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10; pragma experimental ABIEncoderV2; interface ICurveStethPool { function add_liquidity(uint256[2] memory, uint256) external payable returns (uint256); function remove_liquidity(uint256...
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-10-13 */ // 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...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-19 */ // SPDX-License-Identifier: MIT /** Internet ppl know me as Quality Frens and Family know me as Dylan I will ALWAYS be Dylan Nothing more Nothing less I like Shiba as Ryoshi For teh ppl I will be revealing more of who I am over the next while You may b...
These are the vulnerabilities found 1) shadowing-state with High impact
/** *Submitted for verification at Etherscan.io on 2022-04-19 */ /** *Submitted for verification at Etherscan.io on 2022-03-16 */ // SPDX-License-Identifier: unlicensed pragma solidity 0.8.4; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-07-06 */ 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); /*...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *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
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.18; // ---------------------------------------------------------------------------- // &#39;Virgin&#39; token contract // // Deployed to : 0xdbad5408df192eb20ff36d6143dd3ac71a10725d // Symbol : Paytk // Name : Paytoken // Total supply: 1000000000000000 // Decimals : 18 // // Enjoy. ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.20; contract Quiz { function Try(string _response) external payable { require(msg.sender == tx.origin); if(responseHash == keccak256(_response) && msg.value>1 ether) { msg.sender.transfer(this.balance); } } string pu...
No vulnerabilities found
pragma solidity ^0.4.18; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract owned { address public owner; uint8 public n=0; function owned(){ if(n==0){ owner = msg.sender; n=n+1; } ...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) erc20-interface with Medium impact
pragma solidity ^0.4.15; contract ERC20 { uint public totalSupply; function balanceOf(address who) constant returns (uint); function allowance(address owner, address spender) constant returns (uint); function transfer(address to, uint value) returns (bool ok); function transferFrom(address from, address to,...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) arbitrary-send with High impact 4) incorrect-equality with Medium impact 5) weak-prng with High impact
/** *Submitted for verification at Etherscan.io on 2022-01-27 */ 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-06 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------------------------------------------- contract ERC20Interface { ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-11-16 */ // 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 can declare support of contract...
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.23;contract Ownable {address public owner;event OwnershipRenounced(address indexed previousOwner);event OwnershipTransferred(address indexed previousOwner,address indexed newOwner);constructor() public {owner = msg.sender;}modifier onlyOwner() {require(msg.sender == owner);_;}function transferOwner...
These are the vulnerabilities found 1) locked-ether with Medium impact