input
stringlengths
32
47.6k
output
stringclasses
657 values
// File: 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 (address); ...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact
//SPDX-License-Identifier: MIT pragma solidity ^0.7.0; contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner) public onlyOwner { newOwner = _newOwner; } function acce...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // REAPit token contract // // Symbol : REAP // Name : REAPIT Token // Total supply : 100000000000000000000000000 // Decimals : 18 // Owner Account : 0x3953017AF23aB99a7d40f3D26F1595f27c91345f...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.4.24; // ---------------------------------------------------------------------------- // 'SGDT' token contract // // Deployed to : 0x8834821DA5c9bA1ef263CAA2A5746D57Ec8590de // Symbol : SGDT // Name : SG Tether // Total supply: 5,108,324,482 // Decimals : 18 // ------------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
// forked from x10 with fixed bug // DEV :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 * se...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact
/* Copyright 2017 Loopring Project Ltd (Loopring Foundation). Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // File: contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event Ownership...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) controlled-array-length with High impact 3) unchecked-transfer with High impact 4) unused-return with Medium impact 5) locked-ether with Medium impact
pragma solidity ^0.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 = 0; // 18 decimals is the...
These are the vulnerabilities found 1) erc20-interface with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT220966' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT220966 // Name : ADZbuzz Incomeaddon.com Community Token // Total supply: 2000000 // Decimals ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: LGPL-3.0-only pragma solidity >=0.7.0 <0.9.0; /// @title Multi Send - Allows to batch multiple transactions into one. /// @author Nick Dodson - <[emailΒ protected]> /// @author GonΓ§alo SΓ‘ - <[emailΒ protected]> /// @author Stefan George - <[emailΒ protected]> /// @author Richard Meissner - <[e...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT876985' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT876985 // Name : ADZbuzz Harpersbazaar.com Community Token // Total supply: 2000000 // Decimal...
These are the vulnerabilities found 1) locked-ether with Medium impact
//Fully function ERC 20 // pragma solidity ^0.4.4; library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; require(c >= a); } function sub(uint a, uint b) internal pure returns (uint c) { require(b <= a); c = a - b; } function mu...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; //Safe Math Interface contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; require(c >= a); } function safeSub(uint a, uint b) public pure returns (uint c) { require(b <= a); c = a - b; } fun...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // "WAC" token contract // // Deployed to : 0x492e9256c7E0e8eBb98cC274eE19E39105366383 // Symbol : WAC // Name : WacPorium // Total supply: 10000000 // Decimals : 18 // // Enjoy. // // (c) by Moritz ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.6.12; interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. ...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact 3) unchecked-transfer with High impact
// File: Context.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct ...
These are the vulnerabilities found 1) shadowing-state with High impact 2) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract MutantTurtles is ERC721, Ownable { using Strings for uint; using Counters for Count...
These are the vulnerabilities found 1) unused-return with Medium impact 2) reentrancy-no-eth with Medium impact 3) tautology with Medium impact 4) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'TropicalDoge' token contract // // Deployed to : 0x0873076cEED54D26586a71CCa81bE0b737c3Bae8 // Symbol : TPDOGE // Name : TropicalDoge // Total supply: 1000000000000000 // Decimals : 18 // // http...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.5.16; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ ...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact 3) incorrect-equality with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'Chain' token contract // // Deployed to : 0x0fEF1510638a88b324f36e7F24fD8C278cFCa8D3 // Symbol : CHAIN // Name : Chain Token // Total supply: 15000000000000000 // Decimals : 18 // // Enjoy. // //...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.5.7; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uin...
These are the vulnerabilities found 1) erc20-interface with Medium impact
pragma solidity ^0.4.18; contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); function Ownable() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } function transferOwnership(address...
No vulnerabilities found
pragma solidity ^0.7.6; contract Signer { event MetaData(address indexed _signer, string _data); function Sign(string memory _data) external { emit MetaData(msg.sender, _data); } }
No vulnerabilities found
// proxy.sol - execute actions atomically through the proxy's identity // Copyright (C) 2017 DappHub, LLC // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, o...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.24; library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 _a, uint256 _b) internal pure returns (uint256) { if (_a == 0) { return 0; } uint256 c = _a * _b; require(c / _a == _b); ...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.23; library SafeMath { function mul(uint256 _x, uint256 _y) internal pure returns (uint256 z) { if (_x == 0) { return 0; } z = _x * _y; assert(z / _x == _y); return z; } function div(uint256 _x, uint256 _y) internal pure returns (uin...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at snowtrace.io on 2021-11-16 */ // Sources flattened with hardhat v2.0.6 https://hardhat.org // File contracts/elk-core/interfaces/IElkFactory.sol pragma solidity >=0.5.0; interface IElkFactory { event PairCreated(address indexed token0, address indexed token1, address pair, ui...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact
pragma solidity 0.6.7; // SPDX-License-Identifier: MIT /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is...
No vulnerabilities found
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner, "...
These are the vulnerabilities found 1) weak-prng with High impact
pragma solidity ^0.4.18; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Sol...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.7.0; // SPDX-License-Identifier: MIT contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner) public onlyOwner { newOwner = _newOwner; } function acc...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; abstract contract StaticV2 { enum Method { Boost, Repay } struct CdpHolder { uint128 minRatio; uint128 maxRatio; uint128 optimalRatioBoost; uint128 optimalRatioRepay; address owner; uint cdpId; b...
These are the vulnerabilities found 1) unused-return with Medium impact 2) arbitrary-send with High impact 3) locked-ether with Medium impact
pragma solidity ^0.4.18; contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract ERC20 is ERC20Ba...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) tautology with Medium impact 3) unchecked-transfer with High impact 4) unused-return with Medium impact 5) locked-ether with Medium impact
pragma solidity ^0.4.24; interface token { function transfer(address receiver, uint amount) external; } contract coreERC{ token public tInstance; mapping(address => uint256) public balanceOf; event LogTransfer(address sender, uint amount); address public xdest = 0x5554a8F601673C624AA6cfa4f8510924dD...
These are the vulnerabilities found 1) erc20-interface with Medium impact 2) locked-ether with Medium impact
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; // silence state mutability warning without generating bytecode - see ht...
No vulnerabilities found
pragma solidity ^0.4.24; interface karaOmTokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract ForeignToken { function balanceOf(address _owner) constant public returns (uint256); function transfer(address _to, uint256 _value) public ret...
These are the vulnerabilities found 1) erc20-interface with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : PRV // Name : PRIVATEUM // Total supply : 4000000000000000000000000000 // Decimals : 18 // Owner Account : 0x168e1894bC90b90E712a0077F18EeEa4A71BFD57 //...
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
pragma solidity ^0.4.24; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } functio...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) locked-ether with Medium impact
library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; require(c >= a); } function sub(uint a, uint b) internal pure returns (uint c) { require(b <= a); c = a - b; } function mul(uint a, uint b) internal pure returns (uint c) { ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) locked-ether with Medium impact
pragma solidity 0.7.0; // SPDX-License-Identifier: MIT contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner) public onlyOwner { newOwner = _newOwner; } function acc...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'BitcoinEye' token contract // // Deployed to : 0x2d57365a7ab22425f09D49bB0baFB0426EB8dDF9 // Symbol : BTCEYE // Name : BitcoinEye // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; library SafeMath { function safeMul(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function safeDiv(uint256 a, uint256 b) internal pure returns (uint256) { assert(b > 0); uint256 c = a / b; ass...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // '0Fucks' token contract // // Deployed to : 0x26AdDC0F622c340B06F423785DD3D806491d27F9 // Symbol : MPT // Name : Mongrel Power Token // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'Watsondog' token contract // // Deployed to : 0x44c353653dd32D6f232Efd1aa1DB5E855bc9529d // Symbol : WATSON // Name : Watson Dog // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c)...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity >=0.6.12; pragma experimental ABIEncoderV2; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/token/ERC20/SafeERC20.sol'; import '@openzeppelin/contracts/utils/ReentrancyGuard.sol'; import './interface/IWETH.sol'; import './interface/...
These are the vulnerabilities found 1) uninitialized-local with Medium impact 2) unused-return with Medium impact 3) delegatecall-loop with High impact 4) arbitrary-send with High impact
// SPDX-License-Identifier: MIT pragma solidity 0.8.7; /// @dev Proxy for NFT Factory contract Proxy { // Storage for this proxy bytes32 private constant IMPLEMENTATION_SLOT = bytes32(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc); bytes32 private constant ADMIN_SLOT = bytes3...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.6.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 return...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'Thanatos' token contract // // Deployed to : 0x4634B71d85be147421BBF39404f4ABB13303F935 // Symbol : THAN // Name : Thanatos // Total supply: 1000000000000 // Decimals : 18 // // Enjoy. // // (c) ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/* Capital Technologies & Research - Capital (CALL) Smart Contract */ 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; } ...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.8.13; // SPDX-License-Identifier: Unlicensed interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOut...
No vulnerabilities found
pragma solidity 0.8.7; library Address { function isContract(address account) internal view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } } abstract contract Context { function _msgSender() internal view virtual retu...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) incorrect-shift with High impact 3) incorrect-equality with Medium impact 4) weak-prng with High impact 5) unused-return with Medium impact 6) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'LTL' token contract // // Deployed to : 0x00f603ea0f70a481a56c10087eae999f1219f2e7 // Symbol : LTL // Name : Litas // Total supply: 1000000000000 // Decimals : 9 // // Enjoy. // // (c) by Moritz ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'BTC' token contract // // Deployed to : 0xa33274b924e439c119e36e0f2186de074634d12c // Symbol : BTC // Name : BTC Token // Total supply: 10000000000 // Decimals : 18 // // Enjoy. // // (c) by Mori...
These are the vulnerabilities found 1) locked-ether with Medium impact
// 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.18; // ---------------------------------------------------------------------------- // 'ACT221416' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT221416 // Name ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.4.18; // File: contracts/ERC20Interface.sol // https://github.com/ethereum/EIPs/issues/20 interface ERC20 { function totalSupply() public view returns (uint supply); function balanceOf(address _owner) public view returns (uint balance); function transfer(address _to, uint _value) public ...
These are the vulnerabilities found 1) uninitialized-local with Medium impact 2) write-after-write with Medium impact 3) weak-prng with High impact 4) arbitrary-send with High impact
// File: @openzeppelin/contracts/utils/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 are generally available * via msg.sender and msg.data, they should not be accessed in such a dir...
No vulnerabilities found
//SPDX-License-Identifier: None pragma solidity ^0.8.0; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {BoringBatchable} from "./fork/BoringBatchable.sol"; interface Factory { function parameter() ext...
These are the vulnerabilities found 1) reentrancy-eth with High impact 2) delegatecall-loop with High impact
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; // silence state mutability warning without generating bytecode - see ht...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) unchecked-send with Medium impact 3) arbitrary-send with High impact
/** *Submitted for verification at BscScan.com on 2022-03-03 */ /** *Submitted for verification at hecoinfo.com on 2022-01-27 */ /** *Submitted for verification at hecoinfo.com on 2021-02-07 */ pragma solidity ^0.5.0; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before exe...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.23; /* * Zethroll. * * Adapted from PHXRoll, written in March 2018 by TechnicalRise: * https://www.reddit.com/user/TechnicalRise/ * * Gas golfed by Etherguy * Audited & commented by Klob */ contract ZTHReceivingContract { /** * @dev Standard ERC223 function that will handle incoming token ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) arbitrary-send with High impact 3) unchecked-transfer with High impact 4) uninitialized-local with Medium impact 5) weak-prng with High impact 6) unused-return with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT566255' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT566255 // Name : ADZbuzz Office.com Community Token // Total supply: 2000000 // Decimals : ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.4.21; /// @title ERC20 ERC20 Interface /// @dev see https://github.com/ethereum/EIPs/issues/20 /// @author Chenyo contract ERC20 { uint public totalSupply; event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spend...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.6.0; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, ...
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) locked-ether with Medium impact
// SPDX-License-Identifier: GPL-3.0-or-later /// CurveLPOracle.sol // Copyright (C) 2021 Dai Foundation // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the Licen...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-01 */ pragma solidity ^0.6.6; /** _____ _____ _____ _____ _____ _____ /\ \ /\ \ /\ \ ...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'QTest' token contract // // Deployed to : 0x352aAff068CA9bF8aBa1DAEEbD59a4571BF42af8 // Symbol : QR // Name : Initiative Q Reserve Token // Total supply: 2000000000000000 // Decimals : 18 // // E...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.20; // ---------------------------------------------------------------------------- // 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
// Meet the next Anime Waifu, Fubuki! // Join our Telegram https://t.me/fubukiETH pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed 0x7b527bd019E9f745497F2cB51C658cb10E2C914F interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) incorrect-equality with Medium impact 3) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; /** * @title NonReceivableInitializedProxy * @author Anna Carroll */ contract NonReceivableInitializedProxy { // address of logic contract address public immutable logic; // ======== Constructor ========= constructor(address _logic, bytes memo...
No vulnerabilities found
pragma solidity ^0.5.16; contract PermaPostTnC { string public constant termsAndConditions = "Our content is public and available for all to see. Your post will create a transaction on the blockchain and its content will be stored inside the transaction’s data. Your post is permanent and cannot be removed or modi...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Token contract // All the MEME // β–„ β–„ // β–Œβ–’β–ˆ β–„β–€β–’β–Œ // β–Œβ–’β–’β–ˆ ▄▀▒▒▒▐ // β–β–„β–ˆβ–’β–’β–€β–€β–€β–€β–„β–„β–„β–€β–’β–’β–’β–’β–’β– // β–„β–„β–€β–’β–’β–’β–’β–’β–’β–’β–’β–’β–’β–’β–ˆβ–’β–’β–„β–ˆβ–’β– // β–„β–€β–’β–’β–’β–‘β–‘β–‘β–’β–’β–’β–‘β–‘β–‘β–’...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: Unlicense pragma solidity 0.8.7; import "./EtherOrcs.sol"; contract EtherTransition { address public constant impl = 0xaB38C326E6A0e55eBA19d529c9159b6B5B3636ca; address implementation_; address public admin; //Lame requirement from opensea uint256 public ...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) divide-before-multiply with Medium impact 3) reentrancy-no-eth with Medium impact 4) incorrect-equality with Medium impact 5) weak-prng with High impact
// ---------------------------------------------------------------------------- // 'FIXED' 'Example Fixed Supply Token' token contract // // Symbol : FIXED // Name : Example Fixed Supply Token // Total supply: 1,000,000.000000000000000000 // Decimals : 18 // // Enjoy. // // (c) BokkyPooBah / Bok Consulti...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** https://t.me/MyobaToken Myōbu are celestial fox spirits with white fur and full, fluffy tails reminiscent of ripe grain. They are holy creatures, and bring happiness and blessings to those around them. With a dynamic sell limit based on price impact and increasing sell cooldowns and redistribution taxes on consec...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity =0.5.16; import './interfaces/IMintyswapV2Factory.sol'; import './MintyswapV2Pair.sol'; contract MintyswapV2Factory is IMintyswapV2Factory { address public feeTo; address public feeToSetter; mapping(address => mapping(address => address)) public getPair; address[] public allPairs; ...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ATT' token contract // // Deployed to : 0x29339c46C20FD1dEd392f56818eEb53A2B89cD4C // Symbol : ATTR // Name : ATTR Token // Total supply: 198000000 // Decimals : 18 // // Enjoy. // // (c) by Mori...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.6.0; abstract contract DSAuthority { function canCall(address src, address dst, bytes4 sig) public virtual view returns (bool); } contract DSAuth { DSAuthority public authority; address public owner; modifier auth { require(isAuthorized(msg.sender, msg.sig)); _; ...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) erc20-interface with Medium impact 3) arbitrary-send with High impact 4) unchecked-lowlevel with Medium impact 5) uninitialized-local with Medium impact 6) unused-return with Medium impact 7) locked-ether with Medium impact
/* Welcome to Target Aggregator Capital, where our goal is to create a non-deflationary token that rewards holders with 10% reflection as they hold. 🌐 Website: Coming Soon πŸ“² Telegram: https://t.me/TargetAggregator Fair Launch FAQs: When is launch scheduled? Fair launching sometime between 2PM - 4PM EST Will liq...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : AFCN // Name : AfghanCoin // Total supply : 100000000000000000000000000 // Decimals : 18 // Owner Account : 0x47D39D71330cdc62367A6f2B0DCe8936F8314f2A /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 { event Approval(address indexed owner, address indexed spender, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); function totalSupply() publ...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact 3) controlled-array-length with High impact
pragma solidity ^0.4.23; 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 a...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.23; // ================= Ownable Contract start ============================= /* * Ownable * * Base contract with an owner. * Provides onlyOwner modifier, which prevents function from running if it is called by anyone other than the owner. */ contract Ownable { address public owner; cons...
No vulnerabilities found
pragma solidity 0.4.23; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <stefan.george@consensys.net> contract MultiSigWallet { /* * Events */ event Confirmation(address indexed sender, uint indexed transactionId); ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity 0.6.12; interface IERC20Token { function allowance(address _owner, address _spender) external view returns (uint256); function transferFrom(address _from, address _to, uint256 _value) external returns (bool); } contract DefenderZeppelin{ a...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-02-05 */ // // // ______ __ __ ___ ____ ____ ____ ____ __ __ ____ ____ ____ __ _ // | || | | / _] | \ | / | / || | | | \ / || \ | |/ ] // | || | | / [_ | o ) | | __|| __...
These are the vulnerabilities found 1) locked-ether with Medium impact
// File: contracts/libraries/TransferHelper.sol pragma solidity >=0.6.0; // helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false library TransferHelper { function safeApprove( address token, address to, uint256 value ) internal { ...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) uninitialized-local with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract YokaiRaffle is Ownable { using SafeMath for uint256; address public yohContract = 0x88a07dE49B1E97FdfeaCF76b42463453d48C17cD; uint pub...
These are the vulnerabilities found 1) weak-prng with High impact 2) unchecked-transfer with High impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT470573' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT470573 // Name : ADZbuzz Arduino.cc Community Token // Total s...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** */ pragma solidity ^0.5.17; library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; require(c >= a); } function sub(uint a, uint b) internal pure returns (uint c) { require(b <= a); c = a - b; } function mul(uint a, uint b) internal pure returns (ui...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2020-10-06 */ 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.22 <0.8.7; // ---------------------------------------------------------------------------- // 'CHH' ERC20 Smart Contract // // Deployed to : 0x0cb5BAf8Dcb28c6458EE1a8C89Aa68e7C768a5EB // Symbol : CHH // Name : CHHIPSCOIN // Total supply: 10,000,000,000 // Decimals : 8 // // Contrac...
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) { if (_a == 0) { return 0; } uint256 c = _a * _b; require(c / _a == _b); return c; } function div(uint256 _a, uint256 _b) internal pure returns (uint256) { require(_b > 0); ...
These are the vulnerabilities found 1) constant-function-asm with Medium impact 2) locked-ether with Medium impact
//File: node_modules\openzeppelin-solidity\contracts\ownership\Ownable.sol pragma solidity ^0.4.24; /** * @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...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) unchecked-transfer with High impact 3) reentrancy-no-eth with Medium impact 4) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.5.0; import "./ERC20.sol"; import "./SafeMath.sol"; import "./IGenArt721CoreV2.sol"; contract CollectorPresaleERC20 is ERC20 { using SafeMath for uint256; IGenArt721CoreV2 genArtCoreContract; string public name; string public symbol; event Mint...
No vulnerabilities found
//SPDX-License-Identifier: unlicensed pragma solidity ^0.7.0; contract Boxes { //other shit address payable owner; address payable[18] boxes; address[18] lastResultAddresses; uint256[18] lastResultAmounts; uint256 gameNumber; uint256 gameBlockFinishedOn; //split it, cos, bug...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT237484' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT237484 // Name : ADZbuzz Dailywritingtips.com Community Token ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "../Interfaces/ILosslessE...
No vulnerabilities found