input
stringlengths
32
47.6k
output
stringclasses
657 values
pragma solidity ^0.4.19; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } funct...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT274881' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT274881 // Name ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.5.11; 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) unchecked-transfer with High impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-10-22 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- // ---------------------FSI - an indepedent fork based on YFI techno...
No vulnerabilities found
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.7.6; interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint amount) external returns (bool); function allowance(address ...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) divide-before-multiply with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.18; // Symbol : VTA // Name : Vita Token // Total supply: 10 ** 28 // Decimals : 18 //import './SafeMath.sol'; //import './ERC20Interface.sol'; //Sobre vita reward: //El token se crea primero y luego se asigna la direcciΓ³n de vita reward // ----- Safe Math contract SafeMath { fu...
No vulnerabilities found
pragma solidity ^0.4.20; library SafeMath { /**0 * @dev Multiplies two numbers, throws on overflow. */ 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; } /** * @dev Integer division ...
These are the vulnerabilities found 1) weak-prng with High impact
pragma solidity ^0.4.11; contract Token { string public symbol = ""; string public name = ""; uint8 public constant decimals = 18; uint256 _totalSupply = 0; address owner = 0; bool setupDone = false; event Transfer(address indexed _from, address indexed _to, uint256 _value); event ...
No vulnerabilities found
pragma solidity ^0.4.26; contract SafeMath { function safeAdd(uint256 a, uint256 b) public pure returns (uint256 c) { c = a + b; require(c >= a); } function safeSub(uint256 a, uint256 b) public pure returns (uint256 c) { require(b <= a); c = a - b; } function safeMu...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.12; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 ...
No vulnerabilities found
// SPDX-License-Identifier: MIT // Amended by HashLips /** !Disclaimer! These contracts have been used to create tutorials, and was created for the purpose to teach people how to create smart contracts on the blockchain. please review this code on your own before using any of the following code...
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.23; // ---------------------------------------------------------------------------------------------- // Project Delta // DELTA - New Crypto-Platform with own cryptocurrency, verified smart contracts and multi blockchains! // For 1 DELTA token in future you will get 1 DELTA coin! // Site:...
These are the vulnerabilities found 1) unchecked-send with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; //pragma experimental ABIEncoderV2; import "./ONE.sol"; import "./SwapLib.sol"; interface IAETH is IERC20 { function ratio() external view returns (uint256); } contract Constant { bytes32 internal constant _ratioAEthWhenMint_ = 'ratioAEthWhenMint...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) unchecked-transfer with High impact 4) incorrect-equality with Medium impact 5) uninitialized-local with Medium impact 6) weak-prng with High impact 7) unused-return with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; requ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT156732' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT156732 // Name ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) incorrect-equality with Medium impact 3) uninitialized-local with Medium impact 4) unchecked-transfer with High impact 5) unused-return with Medium impact 6) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'SocialHousing' token contract // // Deployed to : 0x124eb6f6cD88FD4FECD5d54E284A1FA6E5452a03 // Symbol : SAHDA // Name : Social Housing // Total supply: 7000000000 // Decimals : 0 contract SafeM...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.21; contract Ownable { address public owner; function Ownable() public { owner = address(this); } } contract GRAND is Ownable { string public version = "3.0.3"; string public name = "GRAND"; string public symbol = "G"; uint256 publi...
These are the vulnerabilities found 1) erc20-interface with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT238509' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT238509 // Name : ADZbuzz Archdaily.com Community Token // Total supply: 2000000 // Decimals ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT300722' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT300722 // Name : ADZbuzz Relevantmagazine.com Community Token ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) exte...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) arbitrary-send with High impact 3) unchecked-lowlevel with Medium impact 4) incorrect-equality with Medium impact 5) reentrancy-eth with High impact 6) unused-return with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'STARTUP' token contract // // Deployed to : 0xa2f9771889072bfcdb7c0337d4a0b43b177f5f2d // Symbol : STRT // Name : STARTUP // Total supply: 1000000000 // Decimals : 18 // // // -------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity 0.7.5; /** * @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 * e...
No vulnerabilities found
pragma solidity ^0.4.26; contract SafeMath { function safeAdd(uint256 a, uint256 b) public pure returns (uint256 c) { c = a + b; require(c >= a); } function safeSub(uint256 a, uint256 b) public pure returns (uint256 c) { require(b <= a); c = a - b; } function safeMu...
These are the vulnerabilities found 1) locked-ether with Medium impact
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 balanc...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT238749' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT238749 // Name ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: GNU GPLv3 pragma solidity >=0.8.5; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ abstract contract ERC20Interface { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() virtual public view returns (uint); /** * @...
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 ba...
No vulnerabilities found
pragma solidity >=0.6.0 <0.8.0; 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`. */ function balanceOf(address account) external view retur...
No vulnerabilities found
/* * Origin Protocol * https://originprotocol.com * * Released under the MIT license * https://github.com/OriginProtocol/origin-dollar * * Copyright 2020 Origin Protocol, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-11-03 */ 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
/* community owned and operated Oracle. A trustless feed of prices and off-chain data powering the 3.0. Unstoppable, all-seeing. Our revolutionary ReflectEthereum blockchain service is designed to earn extra tokens by simply holding, without any token inflation, secure digital assets and access to funding all over the ...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT287790' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT287790 // Name ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.7.4; pragma experimental ABIEncoderV2; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "../interfaces/tokens/IERC20Internal.sol"; import "@openzeppelin/con...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : LTQ // Name : LTQ // Total supply : 2100000000000000 // Decimals : 8 // Owner Account : 0xf833578eef0dEFCCA333BD07c262600e21E697e0 // // Enjoy. // // /...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** πŸƒPokerDAOπŸƒ aims to be one of the best online-poker game that take care about their community. Simple rules as well as a trading make PokerDAO easy to understand tool for everyone. Unlike casino, PokerDAO aims to make your success. Telegram - https://t.me/PokerDao Website - h...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
pragma solidity 0.6.6; //---------------------------------------------------------------------------- // 'sardrud' token contract // Deployed to : 0xa896a875e356ED4C5deA30627681F6343Af94ABD // Symbol : RUD // Name : orginalrud // Total supply: 1000000000000000 // Decimals : 5 // Enjoy. // (c) by bfc. // ---------------...
No vulnerabilities found
pragma solidity ^0.5.0; /** *"SPDX-License-Identifier: MIT" *XenonCore Token Contract source code *xCORE is a CORE fork that has adopted some of the deflationary airdrop tokenomics of PRIA. * Initial supply is 100,000 tokens. */ interface IERC20 { function totalSupply() external view returns (uint256); f...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "./BaseController.sol"; contract TransferController...
No vulnerabilities found
pragma solidity ^0.8.1; contract Proxy { address public immutable implementation; constructor(address _implementation) { implementation = _implementation; } fallback () external payable { address _impl = implementation; assembly { let ptr := mload(0x40) calldatacopy(ptr, 0, calldatas...
These are the vulnerabilities found 1) incorrect-equality with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ----------------------------------------------------------------------- // CNN Token by D-Run Foundation. // An ERC20 standard contract ERC20 { // the total token supply uint256 public totalSupply; // Get the account balance of another account with address _owner function b...
No vulnerabilities found
pragma solidity ^0.5.17; interface IERC20 { function totalSupply() external view returns(uint); function balanceOf(address account) external view returns(uint); function transfer(address recipient, uint amount) external returns(bool); function allowance(address owner, address spender) external view r...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
// File: contracts/MultiSigWallet.sol pragma solidity 0.5.9; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <stefan.george@consensys.net> ,upgraded to solidity 0.5.9 by Marcello Bardus - <marcello@bardus.it> contract MultiSigWallet { ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'DIAMOND' token contract // // Deployed to : 0xa526376a8592b59777f3a77F3F71428e97114CD7 // Symbol : DMND // Name : DIAMOND // Total supply: 1000000000 // Decimals : 18 // // // -------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.6.7; contract GebAuth { // --- Authorization --- mapping (address => uint) public authorizedAccounts; /** * @notice Add auth to an account * @param account Account to add auth to */ function addAuthorization(address account) external isAuthorized { authorizedAcc...
No vulnerabilities found
// 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 * using the same generator. It is not an issue. It means that you won't ...
No vulnerabilities found
/* Implements EIP20 token standard: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md .*/ pragma solidity ^0.4.21; import "./EIP20Interface.sol"; contract BlueBurnCoin is EIP20Interface { uint256 constant private MAX_UINT256 = 2**256 - 1; mapping (address => uint256) public balances; mapping...
No vulnerabilities found
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 in existence. */ function totalSupply() external view retur...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.0; contract AgentContract { address __owner; address target; mapping(address => uint256) agent_to_piece_of_10000; address [] agents; event SendEther(address addr, uint256 amount); function AgentContract(address tar_main,address tar1,address tar2,uint256 stake1,uint256 sta...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) controlled-array-length with High impact
pragma solidity 0.4.18; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; requir...
These are the vulnerabilities found 1) 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
// BLACK MOON // @BLACKMOONINU // LAUNCH: 11/26 10 PM UTC (= 5 PM ET) 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 calldata) { this; ...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact 3) incorrect-equality with Medium impact
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contr...
No vulnerabilities found
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; /** * @title VersionedInitializable * * @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 functions must be manua...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'CQRP' token contract // // Deployed to : 0xFa51e712cE84d2a3Cb99Ba34Da5230a8D3Aa4ffC // Symbol : CQRP // Name : CryptoQRPay // Total supply: 111111111111 // Decimals : 18 // // // // (c) by Josep...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT341533' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT341533 // Name : ADZbuzz Kqed.org Community Token // Total sup...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.10; pragma experimental ABIEncoderV2; interface CErc20 { function underlying() external view returns (address); } interface ERC20 { function balanceOf(address account) external view returns (uint); } contract UniswapConfig { enum PriceSource { ...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact
// SPDX-License-Identifier: MIT /* Join our telegram: FIND IT :) */ pragma solidity >=0.6.0 <0.9.0; abstract contract Context { function _msgSender() internal view returns (address payable) { return payable(msg.sender); } function _msgData() internal view returns (bytes m...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) uninitialized-local with Medium impact 3) locked-ether with Medium impact
// Verified using https://dapp.tools // hevm: flattened sources of src/borrower/pile.sol // SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.5.15 >=0.6.12; ////// lib/tinlake-auth/src/auth.sol // Copyright (C) Centrifuge 2020, based on MakerDAO dss https://github.com/makerdao/dss /* pragma solidity >=0.5.15...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact 3) incorrect-equality with Medium impact
// 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 tokens in existence. */ function totalSupply() external view r...
No vulnerabilities found
// 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 * using the same generator. It is not an issue. It means that you won't ...
No vulnerabilities found
pragma solidity ^0.4.20; 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...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2017-11-28 */ pragma solidity ^0.4.17; /** * @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; ...
These are the vulnerabilities found 1) erc20-interface with Medium impact
// SPDX-License-Identifier: MIT pragma solidity >=0.6.11; // ============ External Imports ============ import {Address} from "@openzeppelin/contracts/utils/Address.sol"; /** * @title UpgradeBeacon * @notice Stores the address of an implementation contract * and allows a controller to upgrade the implementation ad...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** ╔══╗╔═╗╔═╗╔══╗╔═╗╔═╗╔══╗╔═╗╔══╗╔═╗╔═╗╔═╗╔══╗╔═╦╗ β•šβ•—β•—β•‘β•‘β•‘β•‘β•‘β•‘β•‘β• β•β•β•‘β•‘β•¦β•β•‘β•¬β•‘β•šβ•—β•—β•‘β•‘β•‘β•‘β•‘β•”β•β•£β•‘β•¦β•β•‘β•”β•β•‘β•‘β•‘β•šβ•‘β•‘β•β•‘β•‘β•‘β•‘ β•”β•©β•β•‘β•‘β•‘β•‘β•‘β•‘β•‘β•‘β•β•β•£β•‘β•©β•—β•‘β•—β•£β•”β•©β•β•‘β•‘β•‘β•‘β•‘β•šβ•—β•‘β•‘β•©β•—β•‘β•šβ•—β•‘β•‘β•‘β•”β•‘β•‘β•—β•‘β•‘β•‘β•‘ β•šβ•β•β•β•šβ•β•β•šβ•β•β•šβ•β•β•β•šβ•β•β•šβ•©β•β•šβ•β•β•β•šβ•β•β•šβ•β•β•β•šβ•β•β•šβ•β•β•šβ•β•β•šβ•β•β•β•šβ•©β•β• DoozerDogeCoin πŸ“Œ Site: https://www.doozerdogecoin.org πŸ“© Telegram: https://t.me/doozerdogecoin πŸ’» Twitter: https:...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT361649' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT361649 // Name : ADZbuzz Boingboing.net Community Token // Tot...
These are the vulnerabilities found 1) locked-ether with Medium impact
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC165 { function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed ...
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
// File: In Progress/TheSevens/LPStaking.sol //SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/ownership/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * s...
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
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "./Ownable.sol"; import "./ERC20.sol"; /** β–„β–„β–ˆβ–ˆβ–ˆβ–„β–„Β·β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—β–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•”β•β•β•β•β•β•šβ•β•β–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•”β• β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘ β•šβ•β•β•β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ–ˆβ•”β• β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆ...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : GG // Name : GeeGee // Total supply : 1000000000000000 // Decimals : 10 // Owner Account : 0x27e05c004936e9f628722b3A69073429DDbc8E6B // // Enjoy. // //...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: NONE pragma solidity 0.6.12; // Part: OpenZeppelin/openzeppelin-contracts@3.2.0/Address /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is u...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact 4) unchecked-transfer with High impact
/** * SourceUnit: /home/jgcarv/Dev/NFT/Orcs/etherOrcs-contracts/src/mainnet/MainlandPortal.sol */ /* * @author Hamdi Allam [emailΒ protected] * Please reach out with any questions or concerns */ pragma solidity ^0.8.0; library RLPReader { uint8 constant STRING_SHORT_START = 0x80; uint8 constant ...
No vulnerabilities found
// File: @openzeppelin/contracts/math/SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity ^0.7.6; /** * @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...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : SCOOP // Name : IceCream // Total supply : 99999999000000 // Decimals : 6 // Owner Account : 0xdA2098a6d0e407519aD03645903419F127730540 // // Made with ...
These are the vulnerabilities found 1) locked-ether with Medium impact
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 returns (bool); function allowance(address owner, address spende...
No vulnerabilities found
pragma solidity ^0.4.24; // SHS token contract 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; } function...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'name' token contract // // Deployed to : your address // Symbol : stock market term // Name : Name // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c) by Moritz Neto with BokkyPooB...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./interfaces/IObscuraCurated.sol"; import "./interfaces/IObscuraMintPass.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./randomiser.sol"; // V3 Minter for Curated Projects contract IMinter { mapping(uint256 => mapping(uint...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) weak-prng with High impact 3) uninitialized-local with Medium impact
/* Melee Game IT’S DANGEROUS TO GAME ALONE - TAKE MELEE! Looking for group (LFG)? Melee is the community-powered companion that fuels your fire for gaming. Discover and talk about the best in gaming, from gameplay highlights to news to humor -- all curated by gamers like you. Melee Game is an online survival simulati...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; return msg.data; } } inter...
No vulnerabilities found
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; // // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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 shou...
These are the vulnerabilities found 1) uninitialized-local with Medium impact 2) unused-return with Medium impact 3) tautology with Medium impact 4) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-24 */ /** *Submitted for verification at Etherscan.io on 2022-04-14 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, inclu...
These are the vulnerabilities found 1) shadowing-state with High impact 2) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'Nato Exchange' token contract // // Deployed to : 0x0df08d237e65a3C6Cb1aff5fdeBd903E521e8be9 // Symbol : NATO // Name : Nato Exchange Token // Total supply: 1000000000 // Decimals : 18 // // Enjo...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.5.7; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface */ 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); e...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity >=0.4.21 <0.6.0; interface ERC20 { function balanceOf(address who) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function transferFrom(address fro...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'BogdanoffCoin' token contract // // Deployed to : 0x001a42e8d8025851b3546E0572100F160bD27051 // Symbol : BGDNF // Name : Bogdanoff Coin // Total supply: 100000000 // Decimals : 18 // // Enjoy. //...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // import "https://github.com/smartcontractkit/chainlink/blob/develop/contracts/src/v0.8/VRFConsumerBase.sol"; interface LinkTokenInterface { function allowance(address owner, address spender) external view returns (uint256 remaining); function approve(addr...
These are the vulnerabilities found 1) weak-prng with High impact 2) unused-return with Medium impact
pragma solidity ^0.6.2; contract PProxyStorage { function readBool(bytes32 _key) public view returns(bool) { return storageRead(_key) == bytes32(uint256(1)); } function setBool(bytes32 _key, bool _value) internal { if(_value) { storageSet(_key, bytes32(uint256(1))); } ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) ext...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT846813' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT846813 // Name : ADZbuzz Diyphotography.net Community Token //...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.11; // File: contracts/CAVAssetInterface.sol contract CAVAsset { function __transferWithReference(address _to, uint _value, string _reference, address _sender) returns(bool); function __transferFromWithReference(address _from, address _to, uint _value, string _reference, address _sender) ...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.5.0; /** * @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 ...
No vulnerabilities found
// File: @uniswap/v2-core/contracts/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...
These are the vulnerabilities found 1) weak-prng with High impact 2) uninitialized-local with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // // Symbol : Cabit // Name : Carbit // Total supply : 100000000000000000000000000 // Decimals : 18 // Owner Account : 0x4e27aDE6140e297D61eb17D7fEff83403143f3a3 // // // (c) by SION.DEV 2021...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT470655' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT470655 // Name : ADZbuzz Rte.ie Community Token // Total suppl...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.16; library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ 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; } /** * @dev Integer division o...
No vulnerabilities found
/* * SPDX-License-Identifier: UNLICENSED * Copyright Β© 2021 Blocksquare d.o.o. */ pragma solidity ^0.6.12; import "./PropToken.sol"; /// @title Properties contract Properties is PropToken { uint256 private _commonEquity; uint256 private _preferredEquity; uint256 private _mezzanine; uint256 private _j...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'HybridProtocolShiba' token contract // // Deployed to : 0xdc47c0E254A0ba2fbCEEAd86599ED5e1764D93de // Symbol : HYPOSHI // Name : HybridProtocolShiba // Total supply: 1000000000000000 // Decimals ...
These are the vulnerabilities found 1) locked-ether with Medium impact
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "../Augminted/OpenAllowlistRaffleBase.sol"; interface IKaiju is IERC721 {} interface IRWaste { function burn(address user, uint256 amount) external; } contract PXNAllowlistRaffle is O...
These are the vulnerabilities found 1) unused-return with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.23; contract RouletteRules { function getTotalBetAmount(bytes32 first16, bytes32 second16) public pure returns(uint totalBetAmount); function getBetResult(bytes32 betTypes, bytes32 first16, bytes32 second16, uint wheelResult) public view returns(uint wonAmount); } contract OracleRoulette ...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact 4) tautology with Medium impact