input
stringlengths
32
47.6k
output
stringclasses
657 values
/** *Submitted for verification at Etherscan.io on 2021-01-14 */ /** *Submitted for verification at Etherscan.io on 2021-01-10 */ pragma solidity 0.7.0; // SPDX-License-Identifier: none contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; addres...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-28 */ //https://t.me/AntiSocialETH pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed 0x7b527bd019E9f745497F2cB51C658cb10E2C914F interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amo...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) incorrect-equality with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.23; /** * @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 OwnershipRenounced(address indexed previousOwner); event Owner...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-07 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'FujiDoge' token contract // // Deployed to : 0xc8db6B6Fd2bBF049Be9F3dF47355d13A852f3241 // Symbol : FUJI // Name : FujiDoge // Tota...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-25 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : SOW // Name : Save Our World // Total supply : 7794798739 // Decimals : 0 // Owner Ac...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'Gay Banana' token contract // // Deployed to : 0x127094b40d413Ed499d460bcDd46ff0c55071C75 // Symbol : GNA // Name : Gay Banana Token // Total supply: 100000000 // Decimals : 18 // // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.9; library MerkleLib { function verifyProof(bytes32 root, bytes32 leaf, bytes32[] memory proof) public pure returns (bool) { bytes32 currentHash = leaf; for (uint i = 0; i < proof.length; i += 1) { currentHash = parentHash(...
No vulnerabilities found
pragma solidity ^0.4.24; // ERC20 token contract contract ERC20Interface { function totalSupply() public constant returns (uint); function balanceOf(address tokenOwner) public constant returns (uint balance); function transfer(address to, uint tokens) public returns (bool success); event Transfer(add...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-23 */ // SPDX-License-Identifier: MIT pragma solidity ^0.7.0; contract ERC20 { string public symbol; string public name; uint8 public decimals; uint256 public totalSupply; mapping (address=>uint256) balances; mapping (address=>mapping...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2019-07-08 */ pragma solidity ^0.4.26; // File: contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions"....
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-05 */ pragma solidity 0.5.16; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact 3) incorrect-equality with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-24 */ /** *Submitted for verification at Bscscan.com on 2020-09-09 */ pragma solidity 0.5.16; interface IHRC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Ret...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-07-24 */ // 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 SafeMath { function safeMul(uint a, uint b) internal returns (uint) { uint c = a * b; assert(a == 0 || c / a == b); return c; } function safeSub(uint a, uint b) internal returns (uint) { assert(b <= a); return a - b; ...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) reentrancy-no-eth with Medium impact 3) tautology with Medium impact 4) locked-ether with Medium impact
//pragma solidity ^0.4.0; pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;AORTA&#39; &#39;AORTA token contract // // Symbol : AORTA // Name : Aorta token // Total supply: 328,000,000.000000000000000000 // Decimals : 18 // // Enj...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-06 */ // SPDX-License-Identifier: MIT pragma solidity >=0.5.17; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ contract ERC20Interface { /** * @dev Returns the amount of tokens in existence. */ function totalSupply...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-11-26 */ pragma solidity ^0.8.9; // SPDX-License-Identifier:MIT interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uin...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-29 */ // 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 contra...
These are the vulnerabilities found 1) unused-return with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.23; /** * @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 OwnershipRenounced(address indexed previousOwne...
These are the vulnerabilities found 1) arbitrary-send with High impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-11 */ 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); event Transf...
These are the vulnerabilities found 1) locked-ether with Medium impact 2) shadowing-state with High impact 3) tautology with Medium impact 4) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-06-07 */ /** *Submitted for verification at Etherscan.io on 2021-06-01 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-11-13 */ /** *Submitted for verification at Etherscan.io on 2021-04-11 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // WGMI token contract // // Symbol : WGMI // Name : GM WGMI // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; /* ERC-721 NIFTY remote hackathon for: https://github.com/austintgriffith/nifties-vs-nfties Austin Thomas Griffith - https://austingriffith.com This Token is for the Nfties (no eye in Nfties) monsters They have the following metadata: struct Token{ uint8 body; uint8 feet...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) weak-prng with High impact 3) controlled-array-length with High 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
/** *Submitted for verification at Etherscan.io on 2022-04-25 */ pragma solidity =0.5.16; interface ISafeDEXFactory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (add...
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-11-10 */ pragma solidity ^0.4.12; /** * @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 ...
No vulnerabilities found
pragma solidity ^0.4.21; // File: contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event Ownership...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-02-13 */ pragma solidity 0.8.1; // SPDX-License-Identifier: MIT /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, th...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-20 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : FRIS // Name : FRISBEE TOKEN // Total supply : 222000000000000000 // Decimals : 8 // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// proxy.sol - execute actions atomically through the proxy&#39;s identity // Copyright (C) 2017 DappHub, LLC // 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 Licens...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.24; contract Ownable {} contract AddressesFilterFeature is Ownable {} contract ERC20Basic {} contract BasicToken is ERC20Basic {} contract ERC20 {} contract StandardToken is ERC20, BasicToken {} contract MintableToken is AddressesFilterFeature, StandardToken {} contract Token is MintableToken { ...
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-07-12 */ /** 🐦Twitter: https://twitter.com/Droopy_Inu 📣Telegram: https://t.me/DroopyINU 🌍Medium: https://droopyinu.medium.com/ */ // SPDX-License-Identifier: MIT pragma solidity =0.7.0; abstract contract Context { function _msgSender() internal ...
No vulnerabilities found
pragma solidity ^0.4.21; /* * Team Proof of Long Hodl presents V2 the rebirth... * All the goodness of POLH, now with 1% of deposits & withdrawals go into the weekly lottery. * https://polh.net/ */ contract ProofOfLongHodlV2 { using SafeMath for uint256; event Deposit(address user, uint amount); event W...
These are the vulnerabilities found 1) weak-prng with High 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.16; contract Ownable { address public owner; function Ownable() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } function transferOwnership(address newOwner) public onlyOwner { if (newOwner != addr...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-12-16 */ //SPDX-License-Identifier: MIT pragma solidity 0.6.12; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- contract SafeMath { ...
These are the vulnerabilities found 1) write-after-write with Medium impact 2) divide-before-multiply with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.23; contract SafeMath { function safeToAdd(uint a, uint b) pure internal returns (bool) { return (a + b >= a); } function safeAdd(uint a, uint b) pure internal returns (uint) { require(safeToAdd(a, b)); return a + b; } function safeToSubtract(uint a, ui...
These are the vulnerabilities found 1) weak-prng with High impact 2) tautology with Medium impact 3) incorrect-equality with Medium impact 4) arbitrary-send with High impact
/** *Submitted for verification at Etherscan.io on 2021-04-14 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (byte...
No vulnerabilities found
// Partial License: MIT pragma solidity ^0.6.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 such a direct * manner, since when dealing w...
These are the vulnerabilities found 1) locked-ether with Medium 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...
No vulnerabilities found
pragma solidity ^0.4.23; contract EthMash { address public owner; mapping (address => uint) public balances; address[6] public leaders; uint[6] public buyins; event Challenge(uint buyin, uint draw, address challenger, address defender, bool success); event Withdraw(address player, uint amoun...
These are the vulnerabilities found 1) weak-prng with High impact 2) tautology with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-10-03 */ pragma solidity ^0.5.0; /** * @title SunFuel * Function 5% burn on transfer. At 50% total supply, staking will be unlocked. New ways of burning will be implemented * * Found by Jay * Phase 1 in the Sunbois Crypto Story and game */ interfac...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-02-12 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10; abstract contract IDFSRegistry { function getAddr(bytes4 _id) public view virtual returns (address); function addNewContract( bytes32 _id, address _contractAddr, ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-28 */ // SPDX-License-Identifier: bsl-1.1 pragma solidity ^0.8.1; pragma experimental ABIEncoderV2; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-02-10 */ pragma solidity ^0.5.0; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; require(c >= a); } function sub(uint256 a, uint256 b) internal pure returns (uint256 c) { r...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-15 */ pragma solidity ^0.5.0; contract ERC20Interface { function totalSupply() public view returns (uint); function balanceOf(address tokenOwner) public view returns (uint balance); function allowance(address tokenOwner, address spender) public vi...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-02-04 */ // SPDX-License-Identifier: MIT // This is a ERC-20 token that is ONLY meant to be used as a extension for the Mysterious World NFT Project // The only use case for this token is to be used to interact with The Mysterious World. // This token has no mon...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'Mortal Kombat Revived' token contract // // Deployed to : 0x39d80d7De4345821B6691ee6D71347323a8178C9 // Symbol : MKTR // Name : Mortal Kombat Revived // Total supply: 13000 // Decimals : 18 // //...
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 { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(addr...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-03 */ /** *Submitted for verification at Etherscan.io on 2021-03-02 */ // SPDX-License-Identifier: AGPL-3.0-or-later /// join-auth.sol -- Non-standard token adapters // Copyright (C) 2018 Rain <[email protected]> // Copyright (C) 2018-2020 Maker Ecosystem...
No vulnerabilities found
/** *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
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Jorge Coin&#39; token contract // // Deployed to : 0x0d3b0c6C9ab43d304e15dddf35cc3d08a344240f // Symbol : GEORGE // Name : Jorge Coin // Total supply: 10000000000 // Decimals : 18 // // Enjoy...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.19; 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) { uint256 c = a / b; return c; } function sub(...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact 2) tautology with Medium impact 3) 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) { if (a == 0) { return 0; ...
These are the vulnerabilities found 1) tautology with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.25; // expansion on original contract from dav&#39;s stronghands contract // introducing features: // Jackpot - 1 in 1000 chance to get jackpot upon losing // Refund line for loser to get their initial eth back // eth distribution: // each game seeds 0.01 eth to buy P3D with // each game seeds 0....
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) incorrect-equality with Medium impact 3) uninitialized-local with Medium impact 4) weak-prng with High impact 5) unused-return with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-11-04 */ // SPDX-License-Identifier: GNU GPLv3 pragma solidity >=0.8.5; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ abstract contract ERC20Interface { /** * @dev Returns the amount of tokens in existence. */ functi...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.17; library SafeMathMod { // Partial SafeMath Library function mul(uint256 a, uint256 b) constant internal returns(uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) constant internal returns(uint256) { ...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) unchecked-transfer with High impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-11-30 */ // Dependency file: contracts/interfaces/IGainswapFactory.sol // pragma solidity =0.6.12; interface IGainswapFactory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view retur...
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
/** *Submitted for verification at Etherscan.io on 2022-04-12 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, beca...
These are the vulnerabilities found 1) weak-prng with High impact 2) uninitialized-local with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;BICOIN&#39; token contract // // Deployed to : 0x56B5b2A96e1438051CB197d53CCB076CD3f74ef0 // Symbol : BIC // Name : BICOIN CDV // Total supply: 100000000000 // Decimals : 18 // // Enjoy. // /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // File: contracts\Auction.sol /** * @title 竞拍接口 */ contract Auction { function bid() public payable returns (bool); function end() public returns (bool); event AuctionBid(address indexed from, uint256 value); } // File: contracts\Base.sol library Base { struct NTVUConfig...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) weak-prng with High impact 3) divide-before-multiply with Medium impact 4) tautology with Medium impact
pragma solidity ^0.4.21; 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; r...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) unchecked-transfer with High impact 3) locked-ether with Medium impact 4) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-07-13 */ // LovePaws🐶 (LOVEPAWS) is the new trend in the crypto scene. // A token without any great benefit. We love dogs, cats and basically everything that has paws. One thing that connects misanthropes is the contempt towards humans, but also the love for ou...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-11-13 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.7; /** * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM * instruction `delegatecall`. We refer to the second contract as the _im...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.16; contract owned { address public owner; function owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address newOwner) onlyOwner public { owner = newOwner; } } i...
These are the vulnerabilities found 1) erc20-interface with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Fortune&#39; token contract // // Deployed to : 0x6b3CfF064bfdBFd8a12A364d6E3cB4865806a115 // Symbol : FTU // Name : Fortune Token // Total supply: 50000000000 // Decimals : 0 // // Enjoy. //...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-16 */ // File: contracts/upgradeability/Proxy.sol pragma solidity 0.7.5; /** * @title Proxy * @dev Gives the possibility to delegate any call to a foreign implementation. */ abstract contract Proxy { /** * @dev Tells the address of the implement...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-12-24 */ // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.2; /** * @title ERC20 interface * @dev see https://eips.ethereum.org/EIPS/eip-20 */ interface IERC20 { function transfer(address to, uint256 value) external re...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) divide-before-multiply with Medium impact 3) locked-ether with Medium impact 4) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-08-10 */ // 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.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) locked-ether with Medium impact
pragma solidity ^0.4.16; /** * @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 ...
These are the vulnerabilities found 1) weak-prng with High impact 2) unused-return with Medium impact 3) incorrect-equality with Medium impact 4) arbitrary-send with High impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;BETSQUARE&#39; token contract // // Deployed to : 0x549841EFDf9F92164adEb3C9a74035eC28690fE9 // Symbol : BTSQ // Name : BETSQUARE // Total supply: 5000000000 // Decimals : 18 // // // -------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // File: contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event Ownership...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) unchecked-transfer with High impact 4) unused-return with Medium impact 5) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Token Bank&#39; token contract // // Deployed to : 0x6C3E2DcD5EDE4037d8EA404081385ff788c0C7B7 // Symbol : TKB // Name : Token Bank // Total supply: 1000000000 // Decimals : 8 // // Enjoy. // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-24 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of toke...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // &#39;Hong Kong Dollar Coin&#39; token contract // // Deployed to : 0xb54417AD43A1283cC446FCf527CE139D890867E7 // Symbol : HKDC // Name : Hong Kong Dollar Coin // Total supply: 200000000000 // Decimal...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;WAmlingCoin&#39; token contract // // Deployed to : 0x63425B871dEEf48296B9Ad8B70f0796Ecf32cB03 // Symbol : WAM // Name : WAmlingCoin // Total supply: 100000000 // Decimals : 18 // // Enjoy. /...
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
// forked from x10 with fixed bug // DEV :x20.finance // X20 (x20.finance) is a deflationary and gambling token // See https://github.com/IshikawaTravis/X10 for more info // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * se...
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-29 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'ECO' token contract // // Deployed to : 0xC1294254BA491941c858F2325ad5c883A3EB0Fd0 // Symbol : ECO // Name : eco.com // Total suppl...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.6.0; contract ERC20Basic { uint public _totalSupply; string public name; string public symbol; uint public decimals; function totalSupply() public view returns (uint){} function balanceOf(address who) public view returns (uint){} function transfer(address to, uint value)...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) erc20-interface with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-04-14 */ /** *Submitted for verification at Etherscan.io on 2017-08-16 */ pragma solidity ^0.4.13; contract SafeMath { function safeAdd(uint256 x, uint256 y) internal returns(uint256) { uint256 z = x + y; assert((z >= x) && (z >= y)); re...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Citizen&#39; token contract // // Deployed to : 0xFe905C1CC0395240317F4e5A6ff22823f9B1DD3c // Symbol : CIT // Name : Citizen // Total supply: 21000000000000000000000000000 // Decimals : 18 //...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-14 */ 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 2021-06-27 */ /** *Submitted for verification at Etherscan.io on 2020-09-01 */ //SPDX-License-Identifier: MIT /* * MIT License * =========== * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documenta...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-27 */ /** *Submitted for verification at hecoinfo.com on 2021-04-19 */ pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easi...
These are the vulnerabilities found 1) shadowing-state with High impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-13 */ 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
pragma solidity ^0.4.11; contract SafeMath { /* standard uint256 functions */ function add(uint256 x, uint256 y) constant internal returns (uint256 z) { assert((z = x + y) >= x); } function sub(uint256 x, uint256 y) constant internal returns (uint256 z) { assert((z = x - ...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;XZAR&#39; token contract // // Deployed to : 0xfE89c02a36eD8d113a4cfe258e82524F95140892 // Symbol : XZAR // Name : South African Tether // Total supply: 10000000000 // Decimals : 18 // // ---...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; interface ERC223 { function transfer(address _to, uint _value, bytes _data) public returns(bool); event Transfer(address indexed _from, address indexed _to, uint _value, bytes indexed data); } interface ERC20 { function transferFrom(address _from, address _to, uint _value) public return...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) locked-ether with Medium impact 3) controlled-array-length with High impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Made by Blocknix.com // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-16 */ /** *Submitted for verification at Etherscan.io on 2022-03-15 */ /** _________ _______ _________ _______ _________ _______ _______ _______ _______ _______ \__ __/|\ /|( ____ \ \__ __/( ____ )\__ __/( ____ \( ___ )( ...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
pragma solidity ^0.4.24; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract TokenERC20 { address public owner; // current owner of the contract uint256 public feesA = 1; uint256 public feesB = 1; uint256 publi...
These are the vulnerabilities found 1) erc20-interface with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // &#39;weR&#39; &#39;weR&#39; // // Symbol : weR // Name : weR // Total supply: 500,000 // Decimals : 18 // // // (c) BokkyPooBah / Bok Consulting Pty Ltd 2017. The MIT Licence. // -----------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;NeLunaCoin&#39; token contract // // Deployed to : // Symbol : NLC // Name : NeLunaCoin // Total supply: 1200000000 // Decimals : 18 // // (c) by KK // --------------------------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-25 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of toke...
No vulnerabilities found
pragma solidity ^0.5.0; /** *"SPDX-License-Identifier: MIT" *TrumpBurn Token Contract source code *TrumpBurn is a 5% deflationary token that aims to burn large amounts of the supply to reward holders and burn weak hands! * Initial supply is 1 billion tokens, 98% of which will be immediately listed on Uniswap w...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;QuarkChain&#39; token contract // // Deployed to : 0x8907a6757AfcA5276Cfca544671e9AAA98AbE2be // Symbol : QKC // Name : QuarkChain // Total supply: 10000000000 // Decimals : 18 // // Enjoy. /...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-11-26 */ pragma solidity ^0.4.26; // ---------------------------------------------------------------------------- // Ducks token contract // // Symbol : DKS // Name : Ducks // Total supply : 50000000000000000 // Decimals : 8 // Owner Accou...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-03 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : PARRY // Name : Land Art // Total supply : 10000 // Decimals : 2 // Owner Account : 0...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // THE LAST SMART CONTRACT HAD SOME SECURITY HOLES // THIS IS THE SECOND SMART CONTRACT FOR THE LIKE FEATURE // OLD CONTRACT CAN BE SEEN AT https://etherscan.io/address/0x6acd16200a2a046bf207d1b263202ec1a75a7d51 // DATA IS IMPORTED FROM THE LAST CONTRACT // BIG SHOUTOUT TO CASTILLO NETWORK FOR...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) unchecked-send with Medium impact