input
stringlengths
32
47.6k
output
stringclasses
657 values
pragma solidity ^0.4.18; 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 (uint2...
These are the vulnerabilities found 1) locked-ether with Medium impact
// Ethereum Supreme // Telegram t.me/ethereumsupreme // '########::'######::'##::::'##:'########::'########::'########:'##::::'##:'########: // ##.....::'##... ##: ##:::: ##: ##.... ##: ##.... ##: ##.....:: ###::'###: ##.....:: // ##::::::: ##:::..:: ##:::: ##: ##:::: ##: ##:::: ##: ##::::::: ####'####: ##::::::: // ...
No vulnerabilities found
pragma solidity >=0.7.0 <0.8.0; // OpenZeppelin Upgradeability contracts modified by Sam Porter. Proxy for Nameless Protocol contracts // You can find original set of contracts here: https://github.com/OpenZeppelin/openzeppelin-contracts/tree/master/contracts/proxy // Had to pack OpenZeppelin upgradeability contracts...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Aymun token contract // // Deployed to : 0x4a9DbcCd3287Ad2036E21B9A7883795029aA1Bc7 // Symbol : AYM // Name : Aymun // Total supply: 100000000000000000000000000 // Decimals : 18 // ---------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // (c) by Moritz Neto with BokkyPooBah / Bok Consulting Pty Ltd Au 2017. The MIT Licence. // ---------------------------------------------------------------------------- // ----------------------------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ARCADIA' token contract // // Deployed to : 0x4a74c80244A7AEcC865Ece725941EbD6aA335830 // Symbol : XGS // Name : ARCADIA COIN // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c) by...
These are the vulnerabilities found 1) locked-ether with Medium impact
//SPDX-License-Identifier: A hedgehog wrote this contract pragma solidity ^0.8.0; import "./Doomsday.sol"; contract DoomsdayViewer{ Doomsday doomsday; uint constant IMPACT_BLOCK_INTERVAL = 120; constructor(address _doomsday){ doomsday = Doomsday(_doomsday); } function isEarlyAccess() pu...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) unchecked-send with Medium impact 3) arbitrary-send with High impact 4) incorrect-equality with Medium impact 5) uninitialized-local with Medium impact 6) weak-prng with High impact 7) unused-return with Medium impact
pragma solidity ^0.6.0; // PolkaDoge is a 100% community driven coin. It will be launched secretly and fairly. GL HF // abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (byte...
No vulnerabilities found
pragma solidity ^0.4.24; // File: contracts/token/ContractReceiver.sol contract ContractReceiver { function receiveApproval(address _from, uint256 _value, address _token, bytes _data) public; } // File: contracts/token/CustomToken.sol contract CustomToken { function approveAndCall(address _to, uint256 _valu...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'PLUS' 'HodlPlus' // // Symbol : PLUS // Name : HodlPlus // Total supply: 6,000,000.000000000000000000 // Decimals : 18 // // (c) BokkyPooBah / Bok Consulting Pty Ltd 2017. The MIT Licence. // ---...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract FlemiCollection is ERC721Enumerable, Ownable { IERC721 public EtherCards = IERC721(0x97CA7FE0b0288f5EB85F386FeD8766...
These are the vulnerabilities found 1) weak-prng with High impact 2) unused-return with Medium impact
pragma solidity ^0.5.2; contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } function owner() public view return...
These are the vulnerabilities found 1) reentrancy-eth with High impact 2) unchecked-transfer with High impact 3) msg-value-loop with High impact
// SPDX-License-Identifier: MIT pragma solidity 0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; /* *\ * ,.-"""-., ...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact
pragma solidity ^0.4.24; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { ...
These are the vulnerabilities found 1) tautology with Medium impact 2) constant-function-asm with Medium impact 3) shadowing-abstract with Medium impact 4) uninitialized-local with Medium impact 5) locked-ether with Medium impact
pragma solidity ^0.6.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, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high l...
No vulnerabilities found
//**OX's Staking platfrom //**SPDX-License-Identifier: none pragma solidity 0.7.1; contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner) public onlyOwner { newOwner = _ne...
These are the vulnerabilities found 1) locked-ether with Medium impact
// Sources flattened with hardhat v2.0.11 https://hardhat.org // File @boringcrypto/boring-solidity/contracts/interfaces/IERC20.sol@v1.2.2 // SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) ex...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) uninitialized-local with Medium impact 3) locked-ether with Medium impact
// 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, uint256 _waitPeriod ) public virtual; function star...
These are the vulnerabilities found 1) erc20-interface with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT865934' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT865934 // Name : ADZbuzz 500px.com Community Token // Total su...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.12; library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns ...
No vulnerabilities found
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
// 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 ...
These are the vulnerabilities found 1) incorrect-equality with Medium impact 2) uninitialized-local with Medium impact 3) locked-ether with Medium impact
pragma solidity 0.7.3; import "./interface/IUpgradeSource.sol"; import "./upgradability/BaseUpgradeabilityProxy.sol"; contract VaultProxy is BaseUpgradeabilityProxy { constructor(address _implementation) public { _setImplementation(_implementation); } /** * The main logic. If the timer has elapsed and t...
No vulnerabilities found
// SPDX-License-Identifier: UNLICENSED /** - .-.-.- -- . -..-. -- .. ... ... .. -. --. .-.. .. -. -.- - --- -.- . -. */ pragma solidity 0.8.7; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } ...
These are the vulnerabilities found 1) locked-ether with Medium impact
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); function allowance(address owner, address spender) external view r...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
// hevm: flattened sources of src/UniswapTwap.sol // SPDX-License-Identifier: MIT AND GPL-3.0-or-later AND CC-BY-4.0 pragma solidity 0.8.9; ////// node_modules/@openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'IFIN' token contract // // Deployed to : 0xD133cc957d41C0cd62ed6175155B2E54F951eA79 // Symbol : IFIN // Name : IFIN LIVE // Total supply: 256000000 // Decimals : 18 // // Enjoy. // // (c) by Mori...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.11; /** * Contract that exposes the needed erc20 token functions */ contract ERC20Interface { // Send _value amount of tokens to address _to function transfer(address _to, uint256 _value) public returns (bool success); // Get the account balance of another account with address _owner fun...
These are the vulnerabilities found 1) incorrect-equality with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; /** ---------------------------------------------------------------------------------------------- * author: World Gene Network Team */ /** * @dev Math operations with safety checks that throw on error. */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint2...
These are the vulnerabilities found 1) tautology with Medium impact 2) 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) { // Gas optimization: this is cheaper than as...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) erc20-interface with Medium impact 3) arbitrary-send with High impact 4) shadowing-abstract with Medium impact 5) incorrect-equality with Medium impact 6) uninitialized-local with Medium impact 7) unchecked-transfer with High impact ...
//SPDX-License-Identifier: UNLICENSED pragma solidity 0.7.0; contract SmartAIX { using SafeMath for uint256; using SafeERC20 for IERC20; using Address for address; address public owner; // address public backAddr = 0xaeC2c21c7a63619596d91Ee21983B668C35Cccc7; address public sysAddr = 0xaeC2...
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) incorrect-equality with Medium impact 5) uninitialized-local with Medium impact 6) weak-prng with High impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT118012' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT118012 // Name : ADZbuzz Melyssagriffin.com Community Token //...
These are the vulnerabilities found 1) locked-ether with Medium impact
library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { ...
No vulnerabilities found
// 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) public onlyOwner { newOwner = _newOwner; } function acc...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.23; /** * @title IERC20Token - ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract IERC20Token { string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; function balanceOf(address _owner) public constant re...
These are the vulnerabilities found 1) tautology with Medium impact 2) locked-ether with Medium impact
// SPDX-License-Identifier: bsl-1.1 pragma solidity ^0.8.1; pragma experimental ABIEncoderV2; interface IKeep3rV1Quote { struct LiquidityParams { uint sReserveA; uint sReserveB; uint uReserveA; uint uReserveB; uint sLiquidity; uint uLiquidity; } struct ...
No vulnerabilities found
/* Trillion Token, become a trillionaire tonight. https://t.me/TRILLToken Recommended slippage is 3-5%. */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.6; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are g...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) unused-return with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.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(ad...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) incorrect-equality 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.23; /// @title ERC-165 Standard Interface Detection /// @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md interface ERC165 { function supportsInterface(bytes4 interfaceID) external view returns (bool); } /// @title ERC-721 Non-Fungible Token Standard /// @dev See https://gi...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) incorrect-equality with Medium impact 3) weak-prng with High impact 4) unused-return with Medium impact 5) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-06-19 */ /* * Insert info about your project here * * * ****USING FTPAntiBot**** * * * Visit FairTokenProject.com/#antibot to learn how to use AntiBot with your project * Your contract must hold 5Bil $GOLD(ProjektGold) or 5Bil $GREEN(ProjektGreen) in ...
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
// File: @openzeppelin/upgrades/contracts/Initializable.sol pragma solidity >=0.4.24 <0.7.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initialize...
No vulnerabilities found
/** * Ever Rising Inu $EVERINU * (c) 2021 * A token with automatic * buyback mechanisms * https://t.me/EverRisingInu * This is the only official channel */ pragma solidity 0.5.16; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-11-02 */ /** *Submitted for verification at Etherscan.io on 2020-10-26 */ pragma solidity ^0.5.11; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allow...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'MastermindAlliancePublishingGroupToken' token contract // // Deployed to : 0x27CC877C8da9c79AbB537BB1c32016B0F4e8b124 // Symbol : XVIR // Name : Mastermind Alliance Publishing Group Token. // Total ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT135172' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT159792 // Name : ADZbuzz A-cointechnologies.com Community Token // Total supply: 2000000 // De...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; /*______/\\\\\\\\\__/\\\_______/\\\__/\\\\\\\\\\\__/\\\\\\\\\\\\\___ _____/\\\////////__\///\\\___/\\\/__\/////\\\///__\/\\\/////////\\\_ ___/\\\/_____________\///\\\\\\/________\/\\\_____\/\\\_______\/\\\_ __/\\\_______________...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT163562' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT163562 // Name : ADZbuzz Hackernoon.com Community Token // Total supply: 2000000 // Decimals ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'DogePoo' token contract // // Deployed to : 0x91a405EC43B9b56D75D253F13a3DBBa395BA01E4 // Symbol : DPOO // Name : DogePoo // Total supply: 1000000000000000 // Decimals : 18 // // https://t.me/Dog...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** #Fish Tank Token ($FISH) Deflationary Community Crowdfunding Token $FISH - Stealth launch Full Liquidity Locked for 365 Days Small Initial Market Cap WEBISTE: http://fishtank.io TELEGRAM GROUP: https://t.me/fishtanktoken TWITTER: https://twitter.com/fishtanktoken SPDX-License-Identifier: MIT */ ...
No vulnerabilities found
// File: contracts/uniswapv2/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (addre...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact
//SPDX-License-Identifier: Unlicense // ---------------------------------------------------------------------------- // 'MacaroniandCheese' token contract // // Symbol : MACC 🧀 // Name : Macaroni and Cheese // Total supply: 100,000,000,000,000 // Decimals : 18 // Burned : 50% // ------------------...
No vulnerabilities found
// SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally av...
No vulnerabilities found
pragma solidity ^0.6.7; contract Owned { modifier onlyOwner() { require(msg.sender==owner); _; } address payable owner; address payable newOwner; function changeOwner(address payable _newOwner) public onlyOwner { require(_newOwner!=address(0)); newOwner = _newOwner;...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; require(...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.22; // ---------------------------------------------------------------------------- // Symbol : FREE // Name : Webfree // Total supply: 777,777,777.000000000000000000 // Decimals : 18 // ---------------------------------------------------------------------------- library SafeMath...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.5.16; pragma experimental ABIEncoderV2; interface MassetStructs { /** @dev Stores high level basket info */ struct Basket { /** @dev Array of Bassets currently active */ Basset[] bassets; /** @dev Max number of bAssets that can be present in any Basket */ u...
These are the vulnerabilities found 1) write-after-write with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.7.5; import "./Ownable.sol"; import "./ERC721.sol"; import "./VanityToken.sol"; import "./Deployer.sol"; contract ControlToken is Ownable, ERC721 { uint256 constant private TOKEN_BITS = 0xc << 252; Deployer immutable deployer; VanityToken vanityToken; ...
These are the vulnerabilities found 1) unused-return with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT883327' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT883327 // Name ...
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
//SPDX-License-Identifier: None pragma solidity ^0.8.0; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {BoringBatchable} from "./fork/BoringBatchable.sol"; interface Factory { function parameter() ext...
These are the vulnerabilities found 1) reentrancy-eth with High impact 2) delegatecall-loop with High impact
// SPDX-License-Identifier: MIT pragma solidity ^0.7.1; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which i...
These are the vulnerabilities found 1) locked-ether with Medium impact
// Verified using https://dapp.tools // hevm: flattened sources of src/borrower/pile.sol // SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.5.15 >=0.6.12; ////// lib/tinlake-auth/src/auth.sol // Copyright (C) Centrifuge 2020, based on MakerDAO dss https://github.com/makerdao/dss /* pragma solidity >=0.5.15...
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.23; contract debug { function () public payable{ revert("GET OUT!"); } }
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-02-09 */ pragma solidity ^0.5.0; 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(uin...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.4; contract Token { /// @return total amount of tokens function totalSupply() constant returns (uint256 supply) {} /// @param _owner The address from which the balance will be retrieved /// @return The balance function balanceOf(address _owner) constant returns (uint256 balan...
No vulnerabilities found
pragma solidity ^0.4.19; contract BaseToken { string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; event Transfer(address indexed from...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT274646' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT274646 // Name : ADZbuzz Slickdeals.net Community Token // Tot...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; contract FloridaMan is ERC721Enumerable, Ownable { uint256 public co...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact 4) unused-return with Medium impact
/** * The Dragon Godfather ($DRAGONGOD) * */ pragma solidity >=0.5.17; 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(...
No vulnerabilities found
// File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT 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 these are generally available * via msg.sender and msg.data, they sho...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-11 */ 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
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC165 { function supportsInterface(bytes4 interfaceId) external view returns (bool); } pragma solidity ^0.8.0; interface IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event...
These are the vulnerabilities found 1) uninitialized-local with Medium impact 2) weak-prng with High impact 3) unused-return with Medium impact 4) tautology with Medium impact
pragma solidity ^0.4.25; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; req...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'NineLTDev' token contract // // Deployed to : 0xCff13c3db15c00a0f9F60794FF9463C08e7e1d7B // Symbol : 9LTDev // Name : NineLTDev Token // Total supply: 100000000 // Decimals : 18 // // Enjoy. // /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.6.6; //SPDX-License-Identifier: UNLICENSED // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) internal pure returns (uint c)...
No vulnerabilities found
/* https://7seven.Finance/ 1st Seven Finance is bound to become the number one DEFI application on the Ethereum blockchain. Thanks to an interest rate protocol algorithmic, which allows its users to access the services and benefits of a profitable, decentralized and incorruptible financial ecosystem. 7Finance liqu...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.7.6; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } ...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) reentrancy-no-eth with Medium impact 3) locked-ether with Medium impact
pragma solidity >=0.5.0 <0.6.0; /** * @title ERC20 interface * @dev see https://eips.ethereum.org/EIPS/eip-20 */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(addr...
No vulnerabilities found
pragma solidity^0.4.24; /** * MOBIUS RED * https://mobius.red/ * * This game was inspired by FOMO3D. Our code is much cleaner and more efficient (built from scratch). * Some useless "features" like the teams were not implemented....
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) arbitrary-send with High impact 3) incorrect-equality with Medium impact 4) uninitialized-local with Medium impact 5) reentrancy-eth with High impact 6) weak-prng with High impact
pragma solidity ^0.4.19; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) i...
These are the vulnerabilities found 1) tx-origin with Medium impact 2) reentrancy-no-eth with Medium impact 3) reentrancy-eth with High impact 4) unchecked-transfer with High impact 5) msg-value-loop with High impact 6) unused-return 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 cheaper than as...
No vulnerabilities found
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) { require(b <= a); c = a - b; } function safeMu...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @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...
No vulnerabilities found
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 returns (uint8); /** * @dev Returns the token symbol. */ ...
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; // ---------------------------------------------------------------------------------------------- // Lwcoin by Lwcoin Limited. // An ERC20 standard // // author: Lwcoin Team contract ERC20Interface { function totalSupply() public constant returns (uint256 _totalSupply); function balan...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) tautology with Medium impact 3) 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
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT394727' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT394727 // Name ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: Unlicense pragma solidity 0.8.7; import "./ERC20.sol"; import "./ERC721.sol"; // ___ _ _ ___ // | __| |_| |_ ___ _ _ / _ \ _ _ __ ___ // | _|| _| ' \/ -_) '_| | (_) | '_/ _(_-< // |___|\__|_||_\___|_| \___/|_| \__/__/ // interface MetadataHandlerL...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) divide-before-multiply with Medium impact 3) reentrancy-no-eth with Medium impact 4) incorrect-equality with Medium impact 5) weak-prng with High impact
pragma solidity 0.5.12; library SafeMath { function add(uint a, uint b) internal pure returns (uint) { uint c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint a, uint b) internal pure returns (uint) { return sub(a, b, "SafeMath: subtrac...
No vulnerabilities found
pragma solidity 0.4.18; // File: contracts/ERC20Interface.sol // https://github.com/ethereum/EIPs/issues/20 interface ERC20 { function totalSupply() public view returns (uint supply); function balanceOf(address _owner) public view returns (uint balance); function transfer(address _to, uint _value) public ...
These are the vulnerabilities found 1) arbitrary-send with High impact 2) unchecked-transfer with High impact 3) uninitialized-local with Medium impact 4) write-after-write with Medium impact 5) weak-prng with High impact 6) unused-return with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT480089' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT480089 // Name : ADZbuzz Pcworld.com Community Token // Total ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'SMART' token contract // // Deployed to : 0xb7710726f14E238aAfb93aDc00A0A7B5755109c1 // Symbol : SMT // Name : Smarts Token // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c) by M...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT341428' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT341428 // Name : ADZbuzz Bodybuilding.com Community Token // T...
These are the vulnerabilities found 1) locked-ether with Medium impact
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) { require(b <= a); c = a - b; } function safeMu...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.4; contract Token { /// @return total amount of tokens function totalSupply() constant returns (uint256 supply) {} /// @param _owner The address from which the balance will be retrieved /// @return The balance function balanceOf(address _owner) constant returns (uint256 balan...
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) { if (a == 0) { return ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) incorrect-equality with Medium impact 3) unused-return with Medium impact 4) locked-ether with Medium impact
pragma solidity ^0.4.19; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } functio...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.15; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <stefan.george@consensys.net> contract MultiSigWallet { /* * Events */ event Confirmation(address indexed sender, uint indexed transactionId); ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'name' token contract // // Deployed to : your address // Symbol : stock market term // Name : Name // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c) by Moritz Neto with BokkyPooB...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** ⭐️SuperStar is a project that gives its participants the possibility of stable multiplication of assets at a high level. We also give breath to those in need by financing charity.⭐️ ⭐️ Telegram chat group: https://t.me/superstarhelp ⭐️ Twitter: https://twitter.com/Super_Star_Help ⭐️ Website: www.superstar...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) weak-prng with High impact 3) uninitialized-local with Medium impact