input
stringlengths
32
47.6k
output
stringclasses
657 values
/* Copyright 2017 Loopring Project Ltd (Loopring Foundation). Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law ...
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.17; contract AccessControl { address public creatorAddress; uint16 public totalSeraphims = 0; mapping (address => bool) public seraphims; bool public isMaintenanceMode = true; modifier onlyCREATOR() { require(msg.sender == creatorAddress); _; } modifi...
These are the vulnerabilities found 1) shadowing-state with High impact 2) tautology with Medium impact 3) incorrect-equality with Medium impact 4) uninitialized-local with Medium impact 5) weak-prng with High impact 6) controlled-array-length with High impact
pragma solidity ^0.4.24; // **************************************************************************** // Safe math // **************************************************************************** library SafeMath { function mul(uint _a, uint _b) internal pure returns (uint c) { if (_a == 0) { retu...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) tautology with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'Nudge' token contract // // Deployed to : 0x118ccBB296f934E33b9da1f9E8C7B68196C7b85D // Symbol : NUDGE // Name : Nudge Token // Total supply: 4007500000 // Decimals : 0 // Why? : Each Nudg...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity =0.5.16; import './interfaces/IChubbyERC20.sol'; import './libraries/SafeMath.sol'; contract ChubbyERC20 is IChubbyERC20 { using SafeMath for uint; string public constant name = 'ChubbySwap LPs'; string public constant symbol = 'CHINU LPs'; uint8 public constant decimals = 18; uin...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact
/* * SuperBurn (SBURN) is a extreme-deflationary, low-supply ERC 20 token, where on each transaction an insane percentage * of tokens are burned, thus reducing supply and pushing the price of the token. To kick things off, the burn rate will * be at an insane 10% after which every day, the burn rate will continue ...
No vulnerabilities found
// Partial License: MIT pragma solidity = 0.6.6; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without gen...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT127161' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT127161 // Name : ADZbuzz Twitter.com Community Token // Total supply: 2000000 // Decimals :...
These are the vulnerabilities found 1) locked-ether with Medium impact
// 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() external view returns (uint256); /** * @dev Returns the amount o...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact
// 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 returns (bool); function approve(address spender, uint256 value)...
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-09-04 */ /** *Submitted for verification at Etherscan.io on 2021-09-01 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its ...
These are the vulnerabilities found 1) tautology with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT237791' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT237791 // Name : ADZbuzz Slashdot.org Community Token // Total...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; // Part: IAddressResolver interface IAddressResolver { function key2address(bytes32 key) external view returns(address); function address2key(address addr) external view returns(bytes32); function requireAndKey2Address(bytes32 name, string ca...
No vulnerabilities found
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...
No vulnerabilities found
/** @title Interactive Coin Offering * @author Clément Lesaege - <clement@lesaege.com> */ pragma solidity ^0.4.23; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint...
These are the vulnerabilities found 1) uninitialized-local with Medium impact 2) unchecked-send with Medium impact 3) arbitrary-send with High impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT256005' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT256005 // Name : ADZbuzz Allaboutbirds.org Community Token // Total supply: 2000000 // Decimal...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.8.6; contract SillyContract { address private owner; event Block(address indexed _from, uint indexed blockNumber, uint blockDifficulty, uint blockTimestamp); constructor() public { owner = msg.sender; } modifier wasteEther(uint256 _lowestLimit) { uint256 counter =...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.6.6; pragma experimental ABIEncoderV2; import "./Address.sol"; import "./IACOPool2.sol"; /** * @title ACOPoolFactory * @dev The contract is the implementation for the ACOProxy. */ contract ACOPoolFactory2 { /** * @dev Struct to store the ACO pool basic data. */ struct ACOP...
These are the vulnerabilities found 1) locked-ether with Medium impact
// Verified using https://dapp.tools // hevm: flattened sources of /nix/store/lqfvmi1l4qw2x0zz33hxkj4icxkn6fx5-geb-polling-emitter/dapp/geb-polling-emitter/src/GebPollingEmitter.sol pragma solidity >=0.6.7 <0.7.0; ////// /nix/store/lqfvmi1l4qw2x0zz33hxkj4icxkn6fx5-geb-polling-emitter/dapp/geb-polling-emitter/src/GebP...
No vulnerabilities found
/* This is not an insider - April Fools You're not ready Anon - No TAXES */ // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generall...
These are the vulnerabilities found 1) shadowing-state with High impact 2) locked-ether with Medium impact
pragma solidity ^0.5.7; 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 (uin...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-08-05 */ /** *Submitted for verification at Etherscan.io on 2018-06-12 */ pragma solidity ^0.4.24; //**************************** INTERFACE *************************************** interface ERC20 { function transferFrom(address _from, address _to, uint256 _valu...
No vulnerabilities found
pragma solidity 0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two numbers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than re...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) shadowing-state with High impact 3) constant-function-asm with Medium impact 4) incorrect-equality with Medium impact 5) weak-prng with High impact 6) unused-return with Medium impact
pragma solidity ^0.4.19; contract AccessControl { address public owner; // address[] public moderators; uint16 public totalModerators = 0; mapping (address => bool) public moderators; bool public isMaintaining = false; function AccessControl() public { owner = msg.sender; moder...
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) constant-function-asm with Medium impact 5) weak-prng with High impact 6) unused-return with Medium impact
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "./Ownable.sol"; // just in case functions import "./IERC20.sol"; import "./IERC721.sol"; import "./IERC1155.sol"; interface IPunkChickens { function chickensNestMint(address to_, uint mintAmount_) external; function transferFrom(address...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) erc20-interface with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // 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.6.12; pragma experimental ABIEncoderV2; contract AtomicTypes{ struct SwapParams{ Token sellToken; uint256 input; Token buyToken; uint minOutput; } struct DistributionParams{ IAtomicExchange[] exchangeModules; bytes[] exchangeData; ...
These are the vulnerabilities found 1) controlled-delegatecall with High impact 2) erc20-interface with Medium impact 3) arbitrary-send with High impact 4) incorrect-equality with Medium impact 5) delegatecall-loop with High impact 6) uninitialized-local with Medium impact 7) unused-return with Medium impact 8)...
pragma solidity ^0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than a...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'FAKENEWS' token contract // // Deployed to : 0xA91e24CE3736B2723015C109eb82447430bcC3A5 // Symbol : FAKENEWS // Name : Fake News Token // Total supply: 10000000000 // Decimals : 18 // // Enjoy. /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.8.6; import "JellyMinterAccess.sol"; contract JellyAccessControls is JellyMinterAccess { /// @notice Role definitions bytes32 public constant SMART_CONTRACT_ROLE = keccak256("SMART_CONTRACT_ROLE"); event SmartContractRoleGranted( address indexed beneficiary, address ind...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; /* * ZETHR PRESENTS: SLOTS * * Written August 2018 by the Zethr team for zethr.io. * * Code framework written by Norsefire. * EV calculations written by TropicalRogue. * Audit and edits written by Klob. * * Rolling Odds: * 49.31% Lose * 35.64% Two Matching Icons * - 10.00% : 2x...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) weak-prng with High impact 3) reentrancy-no-eth with Medium impact 4) uninitialized-local with Medium impact
/*Spellsword Introduction Decentralized collectible card games are built on blockchain technology with play to earn mechanics, which means, players are now rewarded for their play time. Blockchain technology introduced the concepts of true digital scarcity and complete transparency, players can now own their digital a...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
//SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./ERC721Enumerable.sol"; import "./Ownable.sol"; contract LdcNFT is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; bool public preSaleOn = false; bool public publicSaleOn = f...
These are the vulnerabilities found 1) unused-return with Medium impact 2) weak-prng with High impact 3) reentrancy-no-eth with Medium impact 4) uninitialized-local with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // This is the ONLY ONE token contract. There is only ONE coin in circulation. For collectors only. // You can buy it on Uniswap / Bounce. Liquidity is locked for Uniswap via Unicrypt. There will be 3 (three) aucti...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'MILK.FINANCE' token contract // // Deployed to : 0xC5Cdd375E770c48cE84bF57A963d4B0eB647D12d // Symbol : MILK // Name : MILK.FINANCE // Total supply: 40000 // Decimals : 18 // // // // (c) by Mori...
These are the vulnerabilities found 1) locked-ether with Medium impact
// File: @openzeppelin/contracts/GSN/Context.sol // SPDX-License-Identifier: 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...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) erc20-interface with Medium impact 4) unchecked-transfer with High 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.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; // ---------------------------------------------------------------------------- // 'IMCO' 'IMCO' token contract // // Symbol : IMCO // Name : IMCO // Total supply: 1,000,000,000.0000000 // Decimals : 7 // // Enjoy. // // ----------------------------------------------------------...
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) controlled-array-length with High impact 3) unchecked-transfer with High impact 4) unused-return with Medium impact 5) 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; // ---------------------------------------------------------------------------- // 'ACT221863' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT221863 // Name : ADZbuzz Hootsuite.com Community Token // Tota...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.21; contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract ERC20 is...
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.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.23; // ---------------------------------------------------------------------------- // 'Harvested Baby Brain' token contract // // Deployed to : 0x5A86f0cafD4ef3ba4f0344C138afcC84bd1ED222 // Symbol : HBB // Name : Harvested Baby Brain // Total supply: 100000000 // Decimals : 18 // /...
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
// 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 returns (bool); function approve(address spender, uint256 value)...
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
pragma solidity ^0.4.24; //Safe Math Interface contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; require(c >= a); } function safeSub(uint a, uint b) public pure returns (uint c) { require(b <= a); c = a - b; } fun...
These are the vulnerabilities found 1) locked-ether with Medium impact
/* Copyright 2017 Loopring Project Ltd (Loopring Foundation). Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law ...
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
// 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
pragma solidity ^0.6.0; interface IMVDProxy { function init(address votingTokenAddress, address functionalityProposalManagerAddress, address stateHolderAddress, address functionalityModelsManagerAddress, address functionalitiesManagerAddress, address walletAddress, address doubleProxyAddress) external; funct...
These are the vulnerabilities found 1) locked-ether with Medium impact
// File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol 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 exi...
No vulnerabilities found
pragma solidity >=0.4.24 <0.6.0; import "./ERC20Detailed.sol"; //import "./ERC20.sol"; import "./ERC20Burnable.sol"; import "./Stopable.sol"; contract EXEToken is ERC20Detailed, /*ERC20,*/ ERC20Burnable, Stoppable { constructor ( string memory name, string memory symbol, uint2...
These are the vulnerabilities found 1) locked-ether with Medium impact
// File: contracts/common/lib/ECVerify.sol pragma solidity ^0.5.2; library ECVerify { function ecrecovery(bytes32 hash, bytes memory sig) public pure returns (address) { bytes32 r; bytes32 s; uint8 v; if (sig.length != 65) { return address(...
No vulnerabilities found
// SPDX-License-Identifier: NONE pragma solidity 0.6.8; // Part: IERC721 interface IERC721 { function ownerOf(uint256 tokenId) external view returns (address owner); } // File: refund.sol contract refund { IERC721 public froggies; address private owner; mapping(uint256 => bool) tokenRedeemed; ...
No vulnerabilities found
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; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function d...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact
pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Move...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
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); /** * @dev Returns the amount of tokens owned by `account`. ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'GIT' token contract // // Deployed to : 0x712f0EAA88233650d904d9791467FAF13c728080 // Symbol : GIT // Name : GIT TOKEN // Total supply: 10000000000 // Decimals : 2 // // Enjoy. // // (c) by Morit...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.16; contract Token { uint256 public totalSupply; function balanceOf(address _owner) constant public returns (uint256 balance); function transfer(address _to, uint256 _value) public returns (bool success); function transferFrom(address _from, address _to, uint256 _value) public ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.6; import "@yield-protocol/utils-v2/contracts/utils/RevertMsgExtractor.sol"; import "@yield-protocol/utils-v2/contracts/utils/IsContract.sol"; /// @dev Router forwards calls between two contracts, so that any permissions /// given to the original caller are str...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.5.0; // https://github.com/OpenZeppelin/openzeppelin-solidity/blob/v2.3.0/contracts/utils/Address.sol /** * @dev Collection of functions related to the address type, */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and the...
These are the vulnerabilities found 1) weak-prng with High impact
//author: 谛听 // File: localhost/contracts/interfaces/IOKra.sol pragma solidity >=0.5.0; interface IOKra { function mint(address _to, uint256 _amount) external returns (uint); function balanceOf(address owner) external view returns (uint); } // File: localhost/contracts/interfaces/IUniswapV2Pair.sol pragma ...
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) weak-prng with High impact 5) unused-return with Medium impact
pragma solidity >=0.4.22 <0.7.0; // ---------------------------------------------------------------------------- // 'DGR' ERC20 Smart Contract // // Deployed to : 0xD040a50e46E254121f73A906b0e60194bcd4D5Ac // Symbol : DGR // Name : DIGER COIN // Total supply: 100,000,000,000 // Decimals : 18 // // Contr...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.8.7; /* ______ __ ________ __ __ _______ ______ / \ | \ | \| \ | \ | \ / \ | $$$$$$\| $$ ______ ______\$$$$$$$$| $$____ ______ _| $$_ | ...
These are the vulnerabilities found 1) weak-prng with High impact
/** *Submitted for verification at Etherscan.io on 2022-03-08 */ /** *Submitted for verification at Etherscan.io on 2022-03-08 */ pragma solidity ^0.4.24; contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transf...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) shadowing-state with High impact 3) tautology with Medium impact 4) controlled-array-length with High impact 5) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'AdMonstar' token contract // // Deployed to : 0xA7b1d0CB1Cd2d41BE0660f617dbfa771D54Ad319 // Symbol : ADMR // Name : AdMonstar // Total supply : 10000000000000000 // Decimals : 8 // ----------...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.8.7; /// @notice Interface of the `SmartWalletChecker` contracts of the protocol interface SmartWalletChecker { function check(address) external view returns (bool); } /// @title SmartWalletWhitelist /// @author Curve Finance and adapted by Blackpool Core Team (h...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT238715' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT238715 // Name : ADZbuzz Carscoops.com Community Token // Tota...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.4.21; /** * Math operations with safety checks */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a * b; require(a == 0 || c / a == b); } function div(uint256 a, uint256 b) internal pure returns (uint256 c) { require(b > 0...
These are the vulnerabilities found 1) shadowing-state with High impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ShogunDoge' token contract // // Deployed to : 0x0e207FfDB2A9f63E8e284b8155B017319c47d1e2 // Symbol : SHOGE // Name : ShogunDoge // Total supply: 100000000000000000 // Decimals : 18 // // Enjoy. ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'BitcoinWorld' token contract // // Deployed to : 0x2d57365a7ab22425f09D49bB0baFB0426EB8dDF9 // Symbol : BTCW // Name : BitcoinWorld // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2019-12-26 */ pragma solidity ^0.5.3; interface IProxyCreationCallback { function proxyCreated(Proxy proxy, address _mastercopy, bytes calldata initializer, uint256 saltNonce) external; } /// @title IProxy - Helper interface to access masterCopy of the Proxy...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.23; contract EthMashMount { address public owner; mapping (address => uint) public withdrawals; int round; mapping (int => address[3]) public participants; constructor() public { owner = msg.sender; round = 1; participants[1][0] = owner; } ...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact
/* ---------------------------------------------------------------------------- Fengzhi Liquor Industry has the right to final interpretation and reserves the right to modify with all issued Lao Shi Jiu (LSJ). For the latest revision of the operating policies and trading models of LSJ, please refer to the official ann...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; //Safe Math Interface contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; require(c >= a); } function safeSub(uint a, uint b) public pure returns (uint c) { require(b <= a); c = a - b; } fun...
These are the vulnerabilities found 1) locked-ether with Medium impact
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/math/SafeMath.sol // 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. T...
No vulnerabilities found
pragma solidity ^0.4.25; contract Ownable { address public owner; constructor() public { owner = msg.sender; } event OwnerUpdate(address _prevOwner, address _newOwner); modifier onlyOwner { assert(msg.sender == owner); _; } function transferOwnership(address _newOwner) public onlyOwne...
No vulnerabilities found
/** *Submitted for verification at moonbeam.moonscan.io on 2022-05-01 */ /** *Submitted for verification at BscScan.com on 2021-11-06 */ // SPDX-License-Identifier: MIT library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4....
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.4.24; 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...
These are the vulnerabilities found 1) locked-ether with Medium impact 2) controlled-array-length with High impact
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.0; import "./Ownable.sol"; import "./Strings.sol"; import "./ITraits.sol"; import "./IWoolf.sol"; contract Traits is Ownable, ITraits { using Strings for uint256; // struct to store each trait's data for metadata and rendering struct Trait { str...
These are the vulnerabilities found 1) tx-origin with Medium impact 2) divide-before-multiply with Medium impact 3) reentrancy-no-eth with Medium impact 4) incorrect-shift with High impact 5) incorrect-equality with Medium impact 6) uninitialized-local with Medium impact 7) weak-prng with High impact 8) unused-...
// 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, because programmers usually assume that an overflow raises an * error, ...
No vulnerabilities found
pragma solidity ^0.4.23; // File: contracts/ERC20.sol /** * @title ERC20 * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); ...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) locked-ether with Medium impact 3) controlled-array-length with High impact
pragma solidity ^0.4.18; contract ERC20Interface { function totalSupply() public constant returns (uint256 _totalSupply); function balanceOf(address _owner) public constant returns (uint256 balance); function transfer(address _to, uint256 _value) public returns (bool success); function transferFrom(add...
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.4.24; // ---------------------------------------------------------------------------- // 'HUDDcoinProject' token contract // // Deployed to : 0x880D8f14c94d76CbE6c3D74E853E3004185003a5 // Symbol : HUDDp // Name : HUDDcoinProjectToken // Total supply: 100000000000000000000000000 // Decima...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import "./TokenVesting.sol"; contract FundsDistributor is TokenVesting { /// @notice identifier for the contract string public identifier; /** * @notice Construct a new Funds Distributor Contract * @param beneficiary address of the benefi...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2020-08-26 */ // File: contracts/LiteSig.sol pragma solidity 0.6.12; /** * LiteSig is a lighter weight multisig based on https://github.com/christianlundkvist/simple-multisig * Owners aggregate signatures offline and then broadcast a transaction with the required...
These are the vulnerabilities found 1) arbitrary-send with High impact 2) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.4.24; 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...
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; library Address { function isContract(address account) internal view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } } library SafeMath { /** * @dev Multiplies two numbers, t...
These are the vulnerabilities found 1) unused-return with Medium impact 2) uninitialized-local with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'YESFinance' token contract // // Deployed to : 0x38e20a3ea77da32E72eb716a4e3f2883F7578Cf9 // Symbol : YESF // Name : YESFinance // Total supply: 500000 // Decimals : 18 // // Enjoy. // // (c) by W...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * 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(addres...
No vulnerabilities found
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.8.4; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PausableUpgradeable.sol"; ...
No vulnerabilities found
// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity >=0.6.0 <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 totalSupp...
These are the vulnerabilities found 1) uninitialized-local with Medium impact 2) controlled-delegatecall with High impact 3) delegatecall-loop with High impact
// SPDX-License-Identifier: MIT pragma solidity =0.6.12; import './libraries/SafeMath.sol'; import './libraries/TransferHelper.sol'; import './interfaces/IERC20.sol'; import './interfaces/IWETH.sol'; import './interfaces/ICentaurFactory.sol'; import './interfaces/ICentaurPool.sol'; import './interfaces/ICentaurRouter...
These are the vulnerabilities found 1) write-after-write with Medium impact 2) unchecked-transfer with High impact 3) unused-return with Medium impact 4) locked-ether with Medium impact
pragma solidity ^0.4.18; /** ---------------------------------------------------------------------------------------------- * ZJLTToken by ZJLT Distributed Factoring Network Limited. * An ERC20 standard * * author: ZJLT Distributed Factoring Network Team */ /** * @title SafeMath * @dev Math operations with safe...
These are the vulnerabilities found 1) tautology with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner,...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) divide-before-multiply with Medium impact 3) unused-return with Medium impact 4) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "./ERC20.sol"; import "./ERC20Burnable.sol"; import "./Pausable.sol"; import "./Ownable.sol"; /// @custom:security-contact [email protected] contract EthereumTx is ERC20, ERC20Burnable, Pausable, Ownable { constructor() ERC20("Ethereum-tx", "ETX") { ...
No vulnerabilities found