input
stringlengths
32
47.6k
output
stringclasses
657 values
pragma solidity ^0.4.22; contract EthMashMount { address public owner; mapping (address => uint) public withdrawals; uint round; mapping (uint => address[]) participants; event Log(address indexed user, uint action, uint price); constructor() public { owner = msg.sender; ...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact 3) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-10-27 */ // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `s...
These are the vulnerabilities found 1) unused-return with Medium impact 2) uninitialized-local with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-03 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'TOOTYR' token contract // // Deployed to : 0x8A0eFc67e79e3227b742AfA749A9851965d845d9 // Symbol : YUSHIBO // Name : YummyShibaBone ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'FIXED' 'CRUISEBIT' token contract // Symbol : FIXED // Name : CRBT // Total supply: 500,000,000.000000000000000000 // Decimals : 18 // ------------------------------------...
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
/* * OverBurn Finance (OBURN) * * Total Supply: 10,000 * Starting Burn Rate: 5% * Maximum Burn Rate: 50% * * https://t.me/OverBurnFinance */ pragma solidity ^0.5.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256)...
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 2) 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) { uint256 c = a / b;return c; } function ...
These are the vulnerabilities found 1) unchecked-send with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-21 */ // SPDX-License-Identifier: MIT /* ______________________________________________________________________ Space Cats ________________________________________________________________ */ pragma solidity ^0.6.12; interface IERC20 { /** * @...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
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 Transfer(address indexed from, address indexed to, uint256 value); } con...
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
pragma solidity 0.4.22; /** * @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; } functi...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) 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
/** *Submitted for verification at Etherscan.io on 2021-06-30 */ 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
/* website: cityswap.io █████╗ ████████╗██╗ ██╗███████╗███╗ ██╗███████╗ ██████╗██╗████████╗██╗ ██╗ ██╔══██╗╚══██╔══╝██║ ██║██╔════╝████╗ ██║██╔════╝ ██╔════╝██║╚══██╔══╝╚██╗ ██╔╝ ███████║ ██║ ███████║█████╗ ██╔██╗ ██║███████╗ ██║ ██║ ██║ ╚████╔╝ ██╔══██║ ██║ ██╔══██║██╔══╝ ██║╚██...
No vulnerabilities found
// SPDX-License-Identifier: NONE pragma solidity ^0.8.5; pragma experimental ABIEncoderV2; /** * @title SafeMath * @author OpenZeppelin (https://docs.openzeppelin.com/contracts/3.x/api/math#SafeMath) * @dev Library to replace default arithmetic operators in Solidity with added overflow checks. */ library SafeMath...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) incorrect-equality with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.23; // ---------------------------------------------------------------------------- // 'OLIFE' token contract // // Deployed to : 0x6B9c68598159e0547775E838fD4548E665d2E895 // Symbol : OLIFE // Name : Olife // Total supply: 1000000000 // Decimals : 18 // // Enjoy. // // (c) ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-25 */ 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
/** *Submitted for verification at Etherscan.io on 2021-04-10 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-02-12 */ // File: contracts/common/Proxy/IERCProxy.sol pragma solidity 0.6.6; interface IERCProxy { function proxyType() external pure returns (uint256 proxyTypeId); function implementation() external view returns (address codeAddr); } // File: contr...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-04-07 */ /** *Submitted for verification at snowtrace.io on 2022-04-07 */ /** *Submitted for verification at moonbeam.moonscan.io on 2022-03-18 */ /** *Submitted for verification at FtmScan.com on 2022-03-18 */ /** *Submitted for verification at BscScan.c...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-25 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-12-07 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; library Math { 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;...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-02-12 */ // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 pri...
These are the vulnerabilities found 1) weak-prng with High impact 2) unused-return with Medium impact 3) tautology with Medium impact
// File: @openzeppelin\contracts\token\ERC20\IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view ret...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-24 */ 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
/** *Submitted for verification at Etherscan.io on 2021-04-28 */ pragma solidity ^0.5.0; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <[email protected]> contract MultiSigWallet { /* * Events */ event Confirmati...
These are the vulnerabilities found 1) locked-ether with Medium impact
// 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 * sender of the transaction and its data....
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-11-26 */ // YachtManagementCapitalAssociation pragma solidity 0.8.10; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact 3) incorrect-equality with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;PEPEso&#39; token contract // // Deployed to : 0xC18Fe0a2B3E0eFE79CF16ba411e26116D812d7d3 // Symbol : PEPE // Name : PEPEso // Total supply: 246675000000000000000000 // Decimals : 0 // // To ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.4.23; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-02-14 */ /* DARK DEFI is a non-inflationary DeFi ecosystem aiming to provide yield generating investments’ strategies to long-term crypto holders in both markets’ pump and dump. Nowadays, the most common way to secure assets during market dumps is converting a...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-25 */ 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
/** *Submitted for verification at Etherscan.io on 2021-06-21 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.6.12; contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructo...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-06 */ pragma solidity ^0.5.12; contract BDSCITransferableTrustFundAccount { address owner; constructor() public { owner = msg.sender; } function withdrawAll() public { require(owner == msg.sender); msg.sender.transfe...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'YFED' token contract // // Deployed to : 0x376A93b6fE73E1a3CD53e07E283Bc83230fcB58e // Symbol : YFED // Name : YFED.FINANCE // Total supply: 3500000000000 // Decimals : 8 // // Enjoy. // // -----...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-24 */ 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)...
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 pragma solidity ^0.7.0; contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner) publ...
These are the vulnerabilities found 1) locked-ether with Medium impact
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 2) constant-function-state with Medium impact
pragma solidity ^0.4.24; /* * -PlayerBook - v0.3.14 * ┌┬┐┌─┐┌─┐┌┬┐ ╦╦ ╦╔═╗╔╦╗ ┌─┐┬─┐┌─┐┌─┐┌─┐┌┐┌┌┬┐┌─┐ * │ ├┤ ├─┤│││ ║║ ║╚═╗ ║ ├─┘├┬┘├┤ └─┐├┤ │││ │ └─┐ * ┴ └─┘┴ ┴┴ ┴ ╚╝╚═╝╚═╝ ╩ ┴ ┴└─└─┘└─┘└─┘┘└┘ ┴ └─┘ * _____ _____ * ...
These are the vulnerabilities found 1) mapping-deletion with Medium impact 2) constant-function-asm with Medium impact 3) uninitialized-local with Medium impact 4) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-12-25 */ // File: contracts/Proxy.sol pragma solidity 0.6.12; contract Proxy { // Code position in storage is keccak256("PROXIABLE") = "0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7" uint256 constant PROXIABLE_MEM_SLOT = 0xc5f16f0f...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-28 */ /* Earn $FLASH ORACLE by becoming a Flasher moderator/community partner Have you ever thought about becoming a Flasher moderator or community partner? We are rewarding billions of $FLASH ORACLE for our moderators, and community partners! To apply for t...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
pragma solidity 0.4.24; // File: contracts/commons/SafeMath.sol /** * @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 ...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) locked-ether with Medium impact
pragma solidity ^0.4.25; contract Brave3d { struct Stage { uint8 cnt; uint256 blocknumber; bool isFinish; uint8 deadIndex; mapping(uint8 => address) playerMap; } HourglassInterface constant p3dContract = HourglassInterface(0xB3775fB83F7D12A36E0475aBdD1FCA35c091efB...
These are the vulnerabilities found 1) reentrancy-eth with High impact 2) weak-prng with High impact 3) incorrect-equality with Medium impact 4) unused-return with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-06 */ // SPDX-License-Identifier: MIT // For Farmers’ Eyes Only // https://twitter.com/Only_Farms // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ inter...
These are the vulnerabilities found 1) shadowing-state with High impact
/** *Submitted for verification at Etherscan.io on 2021-07-10 */ /* .-:. ::-. ... .::::::. :: .: ::::::::::::::: ... ::: . .,:::::: :::. :::. ';;. ;;;;' .;;;;;;;. ;;;` ` ,;; ;;, ;;;;;;;;;;;'''' .;;;;;;;. ;;; .;;,.;;;;'''' `;;;;, `;;; '[[,[[[' ,[[ \[[,'[==/...
No vulnerabilities found
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; // ---------------------------------------------------------------------------- // Symbol : PBX // Name : Princeberk Token // Total supply: 1,000,000.00 // Decimals : 2 // // Enjoy. // // (c) BokkyPooBah / Bok Consulting Pty Ltd 2018. The MIT Licence. // ------------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Ummah Dinar&#39; token contract // // Deployed to : 0x33B4a30d0feb63A2471Ec086724589d71Ca61630 // Symbol : UDIN // Name : Ummah Dinar // Total supply: 1000000000 // Decimals : 18 // ---------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-15 */ /** *Submitted for verification at Etherscan.io on 2020-05-19 */ 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 o...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-10 */ 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
/** *Submitted for verification at Etherscan.io on 2021-05-02 */ // File: ..\node_modules\@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...
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) { // Gas optimization: this is cheaper than a...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-06 */ 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); ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-14 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be *...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) unused-return with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-01 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : CFC // Name : CFC PROJECT Token // Total supply : 100000000000000000 // Decimals : 8 ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-24 */ 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 ERC20Interface { /** * @dev Returns the amount of tokens i...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.11; // Thanks to OpenZeppeline & TokenMarket for the awesome Libraries. contract SafeMathLib { function safeMul(uint a, uint b) returns (uint) { uint c = a * b; assert(a == 0 || c / a == b); return c; } function safeSub(uint a, uint b) returns (uint) { assert(b <= a); ret...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) reentrancy-no-eth with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-08-21 */ /* Medium: https://magicgameclub.medium.com/ Github: https://github.com/MagicGameClub Twitter: https://twitter.com/magicgameclub Telegram: https://telegram.me/magicgameclub Beta Launch — Magic Game Club (MAGICGAME) We’re extremely proud to announce th...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) 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; // ---------------------------------------------------------------------------- // &#39;Translateme&#39; token contract // // Deployed to : 0x006bdC2AB0217c3de5D90C8B44A8eACb4e423ef1 // Symbol : TME // Name : TranslateME Token // Total supply: 200000000 // Decimals : 18 // // En...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-11-22 */ pragma solidity 0.8.4; // SPDX-License-Identifier: MIT /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to fu...
No vulnerabilities found
pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-ow...
No vulnerabilities found
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.6.8; pragma experimental ABIEncoderV2; interface iERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint); function totalSupply() ext...
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 2019-07-08 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) in...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.21; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) i...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) tautology with Medium impact 3) erc20-interface with Medium impact
pragma solidity ^0.4.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.18; // ---------------------------------------------------------------------------- // &#39;CryptoKotik&#39; token contract // // Deployed to : 0x5A3b5a26D4e3285BC6279Ff836Fa8A4ECA4ac786 // Symbol : KOTIK // Name : CryptoKotik // Total supply: 1000000 // Decimals : 0 // // Enjoy. //...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-20 */ // 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 ...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'GCF' token contract // // Deployed to : 0x0AD132a8B4553b41ddF7A27B39Ae4e79c89DC6Fe // Symbol : GCF // Name : GrassCoin Finance // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c) b...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract ERC20 is ERC20Basic...
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 2020-09-08 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.12; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() extern...
No vulnerabilities found
pragma solidity 0.4.24; /** * * This contract is used to set admin to the contract which has some additional features such as minting , burning etc * */ contract Owned { address public owner; function owned() public { owner = msg.sender; } modifier onlyOwner { ...
No vulnerabilities found
pragma solidity ^0.4.25; // Author: Securypto Team | Iceman // // Name: Securypto // Symbol: SCU // Total Supply: 100,000,000 // Decimals: 18 /** * @title SafeMath * @dev Math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two numbers, reverts on overflow. *...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-07-28 */ // Sources flattened with hardhat v2.0.11 https://hardhat.org // File @boringcrypto/boring-solidity/contracts/interfaces/[email protected] // SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IERC20 { function totalSupply() external ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) uninitialized-local with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.21; contract ERC721 { // Required methods function approve(address _to, uint256 _tokenId) public; function balanceOf(address _owner) public view returns (uint256 balance); function implementsERC721() public pure returns (bool); function ownerOf(uint256 _tokenId) public view returns (addre...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) arbitrary-send with High impact
//pragma solidity ^0.4.0; pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;FREE&#39; &#39;Free token contract // // Symbol : FREE // Name : FREE token // Total supply: 10,000,000,000,000.000000000000000000 // Decimals : 18 // // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-09-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.3; /** * @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 prog...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-06 */ //SPDX-License-Identifier: Unlicense pragma solidity ^0.6.0; contract SealedTip { function tip() public payable { block.coinbase.transfer(msg.value); } }
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-04-21 */ //SPDX-License-Identifier: Unlicense pragma solidity ^0.8.7; // Don't get CUCKED by all these COCKED devs taking 2M from the LBP before launch. They're full of LIES. // Birds aren't real. // // t.me/birddevsarecuckoos // // 5% tax // LP locked & contra...
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-11-30 */ // 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.18; // ---------------------------------------------------------------------------- // &#39;SEKO&#39; token contract // // Deployed to : 0x6d8d30e6c418E322Fb20b9F01115858cDF1e979E // Symbol : SEKO // Name : SEK_Omnidollar // Total supply: 100000000000.000000000000000000 // Decimals ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-08-21 */ // 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
/** * Golden Union - Blockchain platform for direct investment in gold mining * https://goldenunion.org * ---------------------------- * telegram @golden_union * developed by Inout Corp */ pragma solidity ^0.4.23; contract ERC20Basic { function totalSupply() public view returns (uint256); func...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) unused-return with Medium impact 3) arbitrary-send with High impact 4) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-18 */ // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.7.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-09 */ // 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
/** *Submitted for verification at Etherscan.io on 2021-06-06 */ /** *Submitted for verification at Etherscan.io on 2021-05-31 */ // 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. Wh...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-05 */ 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 ...
No vulnerabilities found
pragma solidity ^0.4.21; contract Etherwow{ function userRollDice(uint, address) payable {uint;address;} } /** * @title FixBet76 * @dev fix bet num = 76, bet size = 0.1 eth. */ contract FixBet76{ modifier onlyOwner{ require(msg.sender == owner); _; } address public owner;...
These are the vulnerabilities found 1) locked-ether with Medium impact
/* / | __ / ____| / | |__) | | | / / | _ / | | / ____ | | | |____ /_/ _ |_| _ _____| * ARC: ArcProxy.sol * * Latest source (may be newer): https://github.com/arcxgame/contracts/blob/master/contracts/ArcProxy.sol * * Contract Dependencies: * - BaseAdminUpgradeabilityProxy * - Ba...
No vulnerabilities found
pragma solidity ^0.7.0; pragma experimental ABIEncoderV2; interface InstaMakerMerkleInterface { function claim( uint256 index, uint256 vaultId, address dsa, address owner, uint256 rewardAmount, uint256 networthAmount, bytes32[] calldata merkleProof ) ext...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws wh...
These are the vulnerabilities found 1) reentrancy-eth with High impact 2) divide-before-multiply with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.18; /* This is a token wallet contract Store your tokens in this contract to give them super powers Tokens can be spent from the contract with only an ecSignature from the owner - onchain approve is not needed */ contract ERC20Interface { function totalSupply() public constant return...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) unchecked-transfer with High impact 3) locked-ether with Medium impact
pragma solidity ^0.4.24; /* Copyright 2018 InterValue 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 applic...
These are the vulnerabilities found 1) erc20-interface with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-24 */ /** *Submitted for verification at Etherscan.io on 2019-01-08 */ pragma solidity ^0.5.9; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;ANDHRA&#39; token contract // // Deployed to : 0x3878c8700b65afcc237f0cf29dc7eae7fa236192 // Symbol : ANDHRA // Name : ANDHRA Token // Total supply: 1,000,000,000,000 - 1 Trillion // Decimals ...
These are the vulnerabilities found 1) 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); ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-04-15 */ /** * #HUSKYINU features: Total fee 13% 6% fee auto add to the liquidity pool to locked forever when selling 2% fee auto distribute to all holders 5% fee auto Manketing 50% Supply is burned at start lp lock 100% in 3 days #HUSKYINU fork, code is audit...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-02-08 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Disclaimer: This contract has been deployed for marketing purposes only. Please join our community and do not buy any unofficial contract you ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-01-24 */ //SPDX-License-Identifier: MIT pragma solidity 0.8.11; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external view retur...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) arbitrary-send with High impact 3) incorrect-equality with Medium impact 4) reentrancy-eth with High impact 5) weak-prng with High impact 6) unused-return with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-07 */ 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; require(c / _a == _b); return c; ...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) locked-ether with Medium impact