input
stringlengths
32
47.6k
output
stringclasses
657 values
/** *Submitted for verification at Etherscan.io on 2021-05-28 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : RUF // Name : PROTECT Token // Total supply : 420000000000 // Decimals : 4 // Owner A...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-04 */ pragma solidity ^0.8.0; // 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. */ funct...
No vulnerabilities found
pragma solidity 0.4.25; 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)...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-19 */ // SPDX-License-Identifier: MIT /* * Token has been generated for FREE using https://vittominacori.github.io/erc20-generator/ * * NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed * usi...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-11-01 */ pragma solidity ^0.4.24; 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 <= ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.16; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } fun...
These are the vulnerabilities found 1) shadowing-state with High impact 2) erc20-interface with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.23; library SafeMath { function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } contract Token { function ...
These are the vulnerabilities found 1) reentrancy-eth with High impact 2) reentrancy-no-eth with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-31 */ // SPDX-License-Identifier: GNU GPLv3 pragma solidity >=0.8.9; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ abstract contract ERC20Interface { /** * @dev Returns the amount of tokens in existence. */ functi...
These are the vulnerabilities found 1) locked-ether with Medium impact
// Dependency file: contracts/libraries/SafeMath.sol // pragma solidity >=0.5.0; // a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math) library SafeMath { function add(uint x, uint y) internal pure returns (uint z) { require((z = x + y) >= x, 'ds-math-add...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-19 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.2; //------------------------------------------------------------------------------------------------------------------ // // ethbox Token // // Token symbol: EBOX // Token name: ethbox Token...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-08-30 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : NCC // Name : Netcoincapital // Total supply : 102000000000000 // Decimals : 6 // Own...
These are the vulnerabilities found 1) locked-ether with Medium impact
// Created using Token Wizard https://github.com/poanetwork/token-wizard by POA Network pragma solidity ^0.4.11; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownab...
No vulnerabilities found
pragma solidity ^0.4.18; /** * Math operations with safety checks */ contract SafeMath { function safeMul(uint256 a, uint256 b) internal returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function safeDiv(uint256 a, uint256 b) internal returns (uint256) { assert(b...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'Clutch Token' token contract // // Deployed to : 0x6623A6076923Fea76B95D3C9f19D9C8363e35f64 // Symbol : CLUTCH // Name : Clutch Token // Total supply: 100 // Decimals : 4 // // Enjoy. // // (c) b...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-17 */ pragma solidity ^0.6.12; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external re...
No vulnerabilities found
pragma solidity ^0.4.18; contract AccessControl { address public creatorAddress; uint16 public totalSeraphims = 0; mapping (address => bool) public seraphims; bool public isMaintenanceMode = true; modifier onlyCREATOR() { require(msg.sender == creatorAddress); _; } modi...
These are the vulnerabilities found 1) weak-prng with High impact 2) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2022-03-30 */ pragma solidity ^0.4.26; contract SafeMath { function safeAdd(uint256 a, uint256 b) public pure returns (uint256 c) { c = a + b; require(c >= a); } function safeSub(uint256 a, uint256 b) public pure returns (uint256 c) { ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-02-04 */ // File contracts/interface/uniswap/IUniswapV2Router01.sol pragma solidity >=0.5.0; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity(...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-11 */ /** *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); ...
No vulnerabilities found
pragma solidity ^0.4.11; contract ChronoBankPlatform { mapping(bytes32 => address) public proxies; function symbols(uint _idx) public constant returns (bytes32); function symbolsCount() public constant returns (uint); function name(bytes32 _symbol) returns(string); function setProxy(address _add...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-31 */ /** *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
/** *Submitted for verification at Etherscan.io on 2021-06-13 */ // SPDX-License-Identifier: MIT /* * Token has been generated for FREE using https://vittominacori.github.io/erc20-generator/ * * NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed * usi...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-07-07 */ pragma solidity ^0.5.0; /** * @title Proxy * @dev Gives the possibility to delegate any call to a foreign implementation. */ contract Proxy { /** * @dev Fallback function allowing to perform a delegatecall to the given implementation. *...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-09-15 */ /** *Submitted for verification at Etherscan.io on 2019-03-22 */ pragma solidity ^0.5.0; /** * @title SafeMath * @dev Math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two numbers, reverts...
These are the vulnerabilities found 1) locked-ether with Medium impact 2) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-03-08 */ pragma solidity ^0.5.15; pragma experimental ABIEncoderV2; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() exter...
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) unchecked-lowlevel with Medium impact 5) uninitialized-local with Medium impact 6) weak-prng with High impact 7) unused-return with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-17 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'Liondoge' token contract // // Deployed to : 0x56F27098E70B59B0C166f3813737440277eF18c4 // Symbol : LDOGE // Name : Liondoge // To...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.13; contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); } contract MyToken { /* Public variables of the token */ string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; /...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-02 */ 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; ...
No vulnerabilities found
pragma solidity ^0.4.24; contract DSAuthority { function canCall( address src, address dst, bytes4 sig ) public view returns (bool); } contract DSAuthEvents { event LogSetAuthority (address indexed authority); event LogSetOwner (address indexed owner); } contract DSAuth is DSAuthEvents { ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-11-12 */ pragma solidity ^0.7.0; /*SPDX-License-Identifier: UNLICENSED*/ interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address who) external view returns (uint); function allowance(address owner, address s...
These are the vulnerabilities found 1) 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, initializer...
These are the vulnerabilities found 1) weak-prng with High impact 2) shadowing-state with High impact
/** *Submitted for verification at Etherscan.io on 2021-06-05 */ pragma solidity 0.5.16; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality 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 { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 valu...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // SPEC token contract // // Deployed to : 0x0BE562139564fd244FD523449f196f47Df26b420 // Symbol : SPEC // Name : Spectrium // Total supply: 1500000000 // Decimals : 18 // // Enjoy. // // (c) by Morit...
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
/** *Submitted for verification at Etherscan.io on 2021-06-08 */ /* This is Tobi! A Frictionless Yield Generation DEFI protocol on Ethereum. Supporting Beautiful Dogs across the world whilst rewarding you! */ pragma solidity ^0.5.17; library SafeMath { function add(uint a, uint b) internal pure ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-07-20 */ //"SPDX-License-Identifier: MIT" pragma solidity 0.7.2; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function allowance(address owner, addre...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;0Fucks&#39; token contract // // Deployed to : 0x8A1221947555321795f29eE63B47cC43Bd252A7A // Symbol : CPPG // Name : CPPG Token // Total supply: 100000000000 // Decimals : 0 // // ----------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(ad...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-04-07 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * send...
These are the vulnerabilities found 1) weak-prng with High impact 2) arbitrary-send with High impact
pragma solidity ^0.4.23; // File: node_modules/openzeppelin-solidity/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 { addres...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // &#39;BtcSweetCoin&#39; token contract // // Deployed to : 0xf1071b75AB3688bc9Be87D66892c2383d40a3EBd // Symbol : BTCS // Name : BtcSweet Coin // Total supply: 1000000000 // Decimals : 18 // // Enj...
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) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 ...
These are the vulnerabilities found 1) tautology with Medium impact 2) constant-function-asm with Medium impact 3) incorrect-equality with Medium impact 4) unchecked-transfer with High impact 5) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'Fibonacci Game & Experiment' token contract // // Deployed to : 0xA942F4db4b732A3cF73cf4e7Fba2Dc3Be905943E // Symbol : TFG // Name : Fibonacci Game & Experiment // Total supply: 455000 // Decimals ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-07 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : EGOLD // Name : Ethereum Gold // Total supply : 1000000000000000 // Decimals : 8 // O...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // CMY Token contract // // Symbol : MYDL // Name : MYDL Token // Total supply: 100000000 // Decimals : 18 // // ---------------------------------------------------------------------------- // ----...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity >=0.4.26; pragma experimental ABIEncoderV2; interface IKyberNetworkProxy { function maxGasPrice() external view returns(uint); function getUserCapInWei(address user) external view returns(uint); function getUserCapInTokenWei(address user, ERC20 token) external view returns(uint); fun...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity >=0.6.12 <0.7.0; interface FeeManagementLibrary { function calculate(address,address,uint256) external returns(uint256); } contract StandardToken { event Transfer(address indexed _from, address indexed _to, uint _value); event Approval(address indexed _own...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.16; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract TokenERC20 { // Public variables of the token string public name; string public symbol; uint8 public decimals = 18; // 18 decimals is the...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-27 */ pragma solidity ^0.6.0; contract CHI { string public name = "CHI"; string public symbol = "CHI"; uint256 public totalSupply; address payable private admin; event Transfer(address indexed _from, address indexed _to, uint256 _value...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-03-10 */ // SPDX-License-Identifier: evmVersion, MIT pragma solidity ^0.6.12; interface IERC20 { function totalSupply() external view returns(uint); function balanceOf(address account) external view returns(uint); function transfer(address recipien...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; /** * ether King contract **/ contract etherKing{ //contract owner address private owner; uint256 private battleCount = 1; uint256 private price; address[] private countryOwners = new address[](6); uint256 private win = 6; ...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) weak-prng with High impact
// File: contracts/IMultisigCarrier.sol pragma solidity ^0.5.0; /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract IMultisigCarrier { function approveFrom( address caller, address payable destination, address currencyAddress, uint256...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-11-24 */ // SPDX-License-Identifier: MIT pragma solidity >=0.8.0; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requiremen...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-16 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.6; contract SafeMath { function safeAdd(uint a, uint b) internal pure returns (uint c) { c = a + b; require(c >= a); } function safeSub(uint a, uint b) internal pure ret...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-09-21 */ 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 Confirmation(address inde...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.21; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract BTN { // Public variables of the token string public name; string public symbol; uint8 public decimals = 6; uint256 public totalSupply; ...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-30 */ pragma solidity ^0.4.24; 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 <=...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.6.8; // /** * @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 ret...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-12 */ /** */ /** */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.send...
No vulnerabilities found
pragma solidity ^0.4.23; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; contract Lottery { mapping(uint => address) public gamblers;// A mapping to store ethereum addresses of the gamblers uint8 public player_count; //keep track of how many people are signed up. uint public ante; //how big is the bet per person (in ether) uint8 public require...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact 3) arbitrary-send with High impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // &#39;KTIP&#39; &#39;Karsha Tip&#39; token contract // // Symbol : KTIP // Name : Karsha Tip // Total supply: 10,000,000.000000000000000000 // Decimals : 18 // // Enjoy. // // (c) BokkyPooBah / Bok...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.13; contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); } contract YCCToken { /* Public variables of the token */ string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; ...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-17 */ pragma solidity ^0.6.6; /** * Supporting Small Businesses * Boost Your Business * Collaboration Coin 1st Ever 🥇 * * NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNMMMMMMMMMMMMMMMMMMMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN NNNNNNNNNNNNNNNNNNNNNNNNNNN...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-06-14 */ // SPDX-License-Identifier: MIT /* * Token has been generated for FREE using https://vittominacori.github.io/erc20-generator/ * * NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed * usi...
No vulnerabilities found
pragma solidity ^0.4.24; /** * Math operations with safety checks */ library SafeMath { function safeMul(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a * b; require(a == 0 || c / a == b); return c; } function safeDiv(uint256 a, uint256 b) internal pure returns (uint256) { ...
These are the vulnerabilities found 1) tautology with Medium impact 2) locked-ether with Medium impact
// Created using Token Wizard https://github.com/poanetwork/token-wizard by POA Network pragma solidity ^0.4.11; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownab...
No vulnerabilities found
//////////////////////////////////////////////////// //******** In the name of god ********************** //******** https://Helixnebula.help *************** ////p2p blockchain based helping system///////////// ////////////Lottery for EOG Holders///////////////// //This is an endless profitable cycle for everyone// //...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact 3) controlled-array-length with High impact
pragma solidity ^0.4.21; // File: contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event Ownership...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-06 */ /** *Submitted for verification at Etherscan.io on 2020-11-06 */ /** *Submitted for verification at Etherscan.io on 2020-04-15 */ // File: openzeppelin-solidity/contracts/math/SafeMath.sol pragma solidity >=0.4.21 <0.7.0; /** * @dev Wrappers over...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; re...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;WEMACOIN&#39; token contract // // Deployed to : 0x390435245F2f95f7443eBb045357DA743E9A65a4 // Symbol : WMC // Name : WEMACOIN // Total supply: 900000000 // Decimals : 18 // // Enjoy. // // (...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.23; library SafeMath { function mul(uint a, uint b) internal pure returns (uint) { if (a == 0) { return 0; } uint c = a * b; assert(c / a == b); return c; } function div(uint a, uint b) internal pure returns (uint) { uint c...
These are the vulnerabilities found 1) weak-prng with High impact
// PonziRevolutionBeam erc-20 token 2018.05.16 for Koreans // Everything is from https://github.com/bitfwdcommunity/Issue-your-own-ERC20-token/blob/master/contracts/erc20_tutorial.sol pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Safe maths // ------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-02-15 */ // File: contracts/intf/IERC20.sol // This is a file copied from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity 0.6.9; pragma experimental ABIEncoderV...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-04-06 */ pragma solidity ^0.4.16; 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 ...
No vulnerabilities found
pragma solidity ^0.4.24; contract PixelFactory { address public contractOwner; uint public startPrice = 0.1 ether; bool public isInGame = false; uint public finishTime; uint public lastWinnerId; address public lastWinnerAddress; constructor() public { contractOwner...
These are the vulnerabilities found 1) weak-prng with High impact
/** *Submitted for verification at Etherscan.io on 2021-09-14 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ADF Gold' token contract // // Deployed to : 0x6EC17450AB36ad243812F9216d0A0d9F6bE87f90 // Symbol : ADG // Name : ADF Gold // To...
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...
No vulnerabilities found
/** * Copyright (C) 2017-2018 Hashfuture Inc. All rights reserved. */ pragma solidity ^0.4.19; contract owned { address public owner; function owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-30 */ pragma solidity 0.5.16; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact
pragma solidity ^0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint a, uint b) internal pure returns (uint) { uint c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint a, uint b) in...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) divide-before-multiply with Medium impact 3) reentrancy-no-eth with Medium impact 4) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-31 */ // Sources flattened with hardhat v2.1.2 https://hardhat.org // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, ...
These are the vulnerabilities found 1) weak-prng with High impact 2) uninitialized-local with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-03 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : INVEN // Name : INVEN Token // Total supply : 100000 // Decimals : 2 // Owner Account...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; require(...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.23; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } functio...
These are the vulnerabilities found 1) reentrancy-eth with High impact 2) reentrancy-no-eth with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-17 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------------------------------------------- contract ERC20Interface { ...
No vulnerabilities found
pragma solidity ^0.4.11; contract SafeMath { function safeMul(uint a, uint b) internal returns (uint) { uint c = a * b; assert(a == 0 || c / a == b); return c; } function safeDiv(uint a, uint b) internal returns (uint) { assert(b > 0); uint c = a / b; assert(a == b * c + a % b); retu...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) unchecked-lowlevel with Medium impact 3) constant-function-state with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-07 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // ⚙️ Newdemy // // // Symbol : DEMY // Name : Newdemy // Total supply: 1510000000.000000000000000000 // Decimals : 18 // // ®Part ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Following is the code for the generation of the BBC Prime Exchange Token // &#39;BBCPrimeEx&#39; token contract // // Deployed to : 0x344b2901938B7b13a8997e68eF6BD50Be3F240e0 // Symbol : PREX // Name ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-06 */ pragma solidity ^0.4.26;// SPDX-License-Identifier: MIT contract WhiteListHelper{ event NewWhiteList(uint _WhiteListCount, address _creator, address _contract, uint _changeUntil); modifier OnlyCreator(uint256 _Id) { require( ...
These are the vulnerabilities found 1) 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); } /**...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; contract ERC721 { // Required methods function totalSupply() public view returns (uint256 _totalSupply); function balanceOf(address _owner) public view returns (uint256 _balance); function ownerOf(uint _tokenId) external view returns (address _owner); function approve(addre...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact 3) uninitialized-local with Medium impact 4) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-06-28 */ // File: @openzeppelin/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 ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-14 */ /** Big Fat Shiba (BFSHIBA) - Community Token **/ // SPDX-License-Identifier: MIT pragma solidity ^0.5.0; // //---------------------------------------- contract ERC20Interface { function totalSupply() public view returns (uint); function b...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Get Rich Quick Contract // // Deployed to : 0x3eB8198e98E717f569Eeb06F98DAD8C9d1069374 // Symbol : GRQ // Name : Get Rich Quick // Total supply: 21000000 // Decimals : 18 // // https://medium.com/...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-13 */ pragma solidity ^0.4.24; 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 =...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-28 */ //SPDX-License-Identifier: Unlicensed pragma solidity ^0.7.0; contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;GeoGame&#39; token contract // // Deployed to : 0x56d8eFEE7c30F691D0922bB3AD813f5aa5Ed7bA3 // Symbol : GGC // Name : GeoGame // Total supply: 4000000000 // Decimals : 18 // // Enjoy. // // (c...
These are the vulnerabilities found 1) locked-ether with Medium impact