input
stringlengths
32
47.6k
output
stringclasses
657 values
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
// File: contracts\open-zeppelin-contracts\token\ERC20\IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @dev Returns the amount of tokens in existe...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // '0Fucks' token contract // // Deployed to : 0x8a2F8667c86EaA166e59F856fe90bB8E4f2c4F18 // Symbol : PAIN // Name : PainPoints // Total supply: 14000605 // Decimals : 18 // -----------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'Necro' token contract // // Deployed to : 0x5A86f0cafD4ef3ba4f0344C138afcC84bd1ED222 // Symbol : NCR // Name : Necro // Total supply: 666000000000 // Decimals : 18 // // Enjoy. // // (c) by Morit...
These are the vulnerabilities found 1) locked-ether with Medium impact
// 🍑 CORGIBUTT 🐶 // Telegram: t.me/corgibuttnetwork // Website: corgibutt.finance // Reddit: https://www.reddit.com/r/CryptoMoonShots/comments/od3dz2/corgib_launching_today_on_uniswap/?utm_source=share&utm_medium=ios_app&utm_name=iossmf pragma solidity ^0.5.0; // -----------------------------------------------------...
No vulnerabilities found
pragma solidity ^0.4.23; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event Owner...
These are the vulnerabilities found 1) locked-ether with Medium impact
/* 建立一个新合约,类似于C++中的类,实现合约管理者的功能 */ contract owned { address public owner; function owned() { owner = msg.sender; } modifier onlyOwner { if (msg.sender != owner) throw; _; } /* 管理者的权限可以转移 */ function transferOwnership(address newOwner) onlyOwner { owner =...
These are the vulnerabilities found 1) unchecked-send with Medium impact 2) erc20-interface with Medium impact
/* https://t.me/nausicaainu */ 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 ...
No vulnerabilities found
pragma solidity >=0.4.0; // a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format)) library FixedPoint { // range: [0, 2**112 - 1] // resolution: 1 / 2**112 struct uq112x112 { uint224 _x; } // range: [0, 2**144 - 1] // resolution: 1 / 2**112 ...
These are the vulnerabilities found 1) weak-prng with High impact 2) unused-return with Medium impact 3) uninitialized-local with Medium impact
// SPDX-License-Identifier: None pragma solidity ^0.8.8; // ####BPPG#&&&&############BGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP5 // ##BPYP5YGGGBBB#######BBGGGGGBGPPPPPGPPPPPPPPPPPPPPPPPPPPPPPPPGGPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP5555555555...
These are the vulnerabilities found 1) unused-return with Medium impact 2) weak-prng with High impact 3) divide-before-multiply with Medium impact 4) reentrancy-no-eth with Medium impact
pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------------------------------------------- contract ERC20Interface { function totalSupply() public view returns (uint); function ba...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'ImperiumCoin' token contract // // Symbol : IMP // Name : Imperium Coin // Total supply: 100,000,000,000 // Decimals : 18 // // -------------------------------------------------------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) {...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.7.6; pragma experimental ABIEncoderV2; import {Variables} from "../variables.sol"; /** * @title StakeAllAccountV2. * @dev DeFi Smart Account Wallet. */ interface ConnectorsInterface { function isConnectors(string[] calldata connectorNames) exte...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.7.2; contract LeBronInu { mapping(address => uint256) public balances; mapping(address => mapping(address => uint256)) public allowance; uint256 public totalSupply = 10 * 10**12 * 10**18; string public name = "LeBron Inu"; string pu...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ABW' token contract // // Deployed to : 0xff60947022E9e3510974646C530445B51540292D // Symbol : ABW // Name : Airway Bill // Total supply: 100000000000 // Decimals : 18 // // Enjoy. // // (c) by M...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.16; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) external; } contract ArtaoToken { // Public variables of the token string public name; string public symbol; uint8 public decimals = 18; // 18 decimals is t...
These are the vulnerabilities found 1) erc20-interface with Medium impact
// File: contracts/Ownable.sol // 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() { ...
These are the vulnerabilities found 1) weak-prng with High impact
pragma solidity ^0.5.17; pragma experimental ABIEncoderV2; 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); function getPair(a...
These are the vulnerabilities found 1) weak-prng with High impact 2) uninitialized-local with Medium impact
pragma solidity ^0.4.21; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) i...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-04 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.12; library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns...
No vulnerabilities found
// File: contracts/libs/ReentrancyGuard.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * ...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) msg-value-loop with High impact 3) uninitialized-local with Medium impact
pragma solidity ^0.4.23; // ---------------------------------------------------------------------------- // 'SaveYouAndMe' token contract // // Deployed to : 0x83a2c6eB3dE67f2925a1A79e57Ad3b078390Cf74 // Symbol : SYM // Name : Save You And Me Token // Total supply: 1170000000 // Decimals : 5 // // Enjoy...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2017-12-12 */ // Copyright (C) 2015, 2016, 2017 Dapphub // 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, ...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) uninitialized-local with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-01-26 */ //SPDX-License-Identifier: UNLICENSED pragma solidity 0.7.6; interface IERC165 { function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IERC721 is IERC165 { event Transfer(address indexed from, address indexe...
These are the vulnerabilities found 1) weak-prng with High impact 2) tautology with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : zorx // Name : Zorx // Total supply : 10000000000 // Decimals : 10 // Owner Account : 0x7315a0BB2E868f1D8c21d8801fA2087DB5E012B4 // // Enjoy. // // (c) ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.6.0; interface TokenInterface { function approve(address, uint) external; function transfer(address, uint) external; function transferFrom(address, address, uint) external; function deposit() external payable; function withdraw(uint) external; function balanceOf(address) exte...
These are the vulnerabilities found 1) erc20-interface with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.16; contract owned { address public owner; function owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address newOwner) onlyOwner public { owner = newOwner; } } i...
These are the vulnerabilities found 1) erc20-interface with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ParaChainDoge' token contract // // Deployed to : 0xd8d1fB6F3A4968e74f1aE986fbCF886dfcb371eB // Symbol : PCDOGE // Name : ParaChainDoge // Total supply: 1000000000000000 // Decimals : 18 // // Pa...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-09-18 */ pragma solidity ^0.4.24; library HxSafeMath { //중요 1/3: 자식에서 compile문제로 SafeMath->HxSafeMath /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { ...
These are the vulnerabilities found 1) locked-ether with Medium impact 2) controlled-array-length with High impact
// Verified using https://dapp.tools // hevm: flattened sources of src/UniswapConsecutiveSlotsPriceFeedMedianizer.sol pragma solidity =0.6.7; ////// lib/geb-treasury-reimbursement/src/math/GebMath.sol /* pragma solidity 0.6.7; */ contract GebMath { uint256 public constant RAY = 10 ** 27; uint256 public const...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact 4) uninitialized-local with Medium impact 5) weak-prng with High impact
/** *Submitted for verification at Etherscan.io on 2021-01-31 */ pragma solidity ^0.8.1; contract Proxy { address public immutable implementation; constructor(address _implementation) { implementation = _implementation; } fallback () external payable { address _impl = implementation; assembly ...
These are the vulnerabilities found 1) incorrect-equality with Medium impact 2) 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/ * * Adapted for Zethr by Norsefire and oguzhanox. * * Gas golfed by Etherguy * Audited & commented by Klob */ contract ZTHReceivingContract { /** * @dev Standar...
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.24; // ---------------------------------------------------------------------------- // 'BoB Coin' token contract // // Deployed to : 0xa68195a5905719DF1aB237729F00F663AbC8f9Fb // Symbol : BOBC // Name : BoB Coin // Total supply: 10000000000000000 // Decimals : 8 // // Enjoy. // // (...
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 pure returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) i...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.24; contract TokenX { event Transfer(address indexed from, address indexed to, uint amount); event Approval(address indexed owner, address indexed spender, uint amount); uint private constant MAX_UINT = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF; string p...
No vulnerabilities found
pragma solidity ^0.4.8; contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); } contract ECRCTOKEN{ /* Public variables of the token */ string public standard = 'E-CURRENCY 0.1'; string public name; string public symbol; uint8 public de...
These are the vulnerabilities found 1) erc20-interface with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT115442' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT115442 // Name : ADZbuzz Url-tipp.com Community Token // Total supply: 2000000 // Decimals ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.8.0; import './interfaces/IUniswapV2Pair.sol'; import './UniswapV2ERC20.sol'; import './libraries/Math.sol'; import './libraries/UQ112x112.sol'; import './interfaces/IERC20.sol'; import './interfaces/IUniswapV2Factory.sol'; contract UniswapV2Pair is IUniswapV2Pair, Un...
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.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; // ---------------------------------------------------------------------------- // 'FAO' 'FarmerAndOne Token' token contract // // Symbol : FAO // Name : FarmerAndOne Token // Total supply: 5000,000,000.000000000000000000 // Decimals : 18 // // Enjoy. // // (c) Bokky...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.5.0; import "./IERC20.sol"; import "./SafeMath.sol"; import "./Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanism...
No vulnerabilities found
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external ...
No vulnerabilities found
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.4.22 <0.6.0; interface ENS { event NewOwner(bytes32 indexed node, bytes32 indexed label, address owner); event Transfer(bytes32 indexed node, address owner); event NewResolver(bytes32 indexed node, address resolver); event NewTTL(bytes32 indexed node, uin...
These are the vulnerabilities found 1) write-after-write with Medium impact 2) tautology with Medium impact 3) incorrect-equality with Medium impact 4) uninitialized-local with Medium impact 5) reentrancy-eth with High impact 6) locked-ether with Medium impact
pragma solidity ^0.4.20; /**'''''' * ==== ; * @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...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) unchecked-send with Medium impact 3) uninitialized-local with Medium impact 4) weak-prng with High impact 5) controlled-array-length with High impact
// SPDX-License-Identifier: NOLICENSE /* ___ _____ ___ ___ ___ _____ _ _ / __| |_ _| | _ \ | __| | __| |_ _| | || | \__ \ | | | / | _| | _| | | | __ | |___/ |_| |_|_\ |___| |___| |_| |_||_| Streeth curates, mints ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) locked-ether with Medium impact
// Dependency file: @openzeppelin/contracts/proxy/Proxy.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.7.0; /** * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM * instruction `delegatecall`. We refer to the second contract as the _impl...
No vulnerabilities found
pragma solidity ^0.4.24; /** * @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; // ---------------------------------------------------------------------------- // 'PLNO' token contract // // Deployed to : 0x6d8d30e6c418E322Fb20b9F01115858cDF1e979E // Symbol : PLNO // Name : PLN_Omnidollar // Total supply: 100000000000.000000000000000000 // Decimals : 18 // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Symbol : GTH // Name : GlowEther // Total supply: 15000000 // Decimals : 18 // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.6.0; interface CHIInterface { function mint(uint256 value) external; function free(uint256 value) external returns (uint256); function balanceOf(address) external view returns (uint); function approve(address, uint256) external; } contract ChiHelpers { /** * @dev CHI token...
These are the vulnerabilities found 1) unused-return with Medium impact 2) erc20-interface with Medium impact 3) locked-ether with Medium impact
// SPDX-License-Identifier: AGPL-3.0-only /* SkaleManager.sol - SKALE Manager Copyright (C) 2018-Present SKALE Labs @author Artem Payvin SKALE Manager 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 So...
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) write-after-write with Medium impact 6) weak-prng with High impact
pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; return msg.data; } } interface IDEXFactory { function createP...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) incorrect-equality with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.5.0; import "./ERC20Burnable.sol"; import "./ERC20Detailed.sol"; import "./ERC20Mintable.sol"; import "./ERC20Pausable.sol"; contract ACUToken is ERC20Burnable, ERC20Detailed, ERC20Mintable, ERC20Pausable { constructor() public ERC20Detailed("Asia Currency Unit", "ACU", 18) { ...
No vulnerabilities found
/** * Copyright 2017-2022, OokiDao. All Rights Reserved. * Licensed under the Apache License, Version 2.0. */ pragma solidity ^0.7.6; /// SPDX-License-Identifier: MIT import "Ownable.sol"; import "Address.sol"; contract HelperProxy is Ownable { address public implementation; constructor(address _impl...
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; // ---------------------------------------------------------------------------- // 'Rent' token contract // Deployed to : 0x6A0ECB46363E806cE5d37c5D36dDAdCECaB27034 // Symbol : RENT // Name : Rent Token // Total supply: 5000000 // Decimals : 18 // -------------------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-04-09 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) i...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : GUMI // Name : Gummibear // Total supply : 2100000000000000 // Decimals : 8 // Owner Account : 0xc5f18A22dAd60Da4C053A61f5100D8Fd23Fe89bA // // Enjoy. /...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-16 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; interface IRegistry { function getProvenance () external view returns (address); function getAsset () external view returns (address); function getProvenanceSource () external view ret...
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.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : FHCT // Name : Futurehead Coin Trust // Total supply : 340000000000000000 // Decimals : 9 // Owner Account : 0x510E3cf293Fe6A107f1bBe578101EA8EfE762510 ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high l...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT221277' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT221277 // Name : ADZbuzz Abeautifulmess.com Community Token //...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ULTRIX' token contract // // Deployed to : 0x7b08f26aa160e99C53D7b3Fa03EFBb44f670254b // Symbol : ULX // Name : ULTRIX COIN // Total supply: 250000000 // Decimals : 18 // // Enjoy. // // (c) by M...
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; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint25...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact 4) uninitialized-local with Medium impact 5) weak-prng with High impact 6) unused-return with Medium impact
pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; interface RegistryInterface { function signer(address) external view returns (bool); function isConnector(address[] calldata) external view returns (bool); } contract Flusher { event LogCast(address indexed sender, uint value); RegistryInterface publ...
These are the vulnerabilities found 1) locked-ether 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; requi...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT883325' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT883325 // Name ...
These are the vulnerabilities found 1) locked-ether with Medium impact
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@plasma-fi/contracts/interfaces/ITokensApprover.sol"; contract TokensApprover is ITokensApprover, Ownable { // Contains data for issuing permissions for the token ...
No vulnerabilities found
pragma solidity ^0.5.17; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; require(c >= a, "SafeMath: addition overflow"); } function sub(uint256 a, uint256 b) internal pure returns (uint256 c) { require(b <= a, "SafeMath: subtraction overflow"); c = ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/* COMIC NFTs MEME DAO — 1st PHASE Fellow Dogees, this is our first medium post to bring you more details about the project. Our launch is going to be on July—2021 and we are now working hard on the project development. Many more information and medium articles will be released soon. This article will focus on 1st pha...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
// File: contracts/uniswapv2/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function withdrawFeeTo() external view returns (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
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: LGPL-3.0-only pragma solidity >=0.8.0; interface Realitio { // mapping(bytes32 => Question) public questions; /// @notice Ask a new question without a bounty and return the ID /// @dev Template data is only stored in the event logs, but its block number is kept in contract sto...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT221290' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT221290 // Name ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity >=0.6.0 <0.8.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) { retu...
No vulnerabilities found
pragma solidity ^0.4.25; /** * * https://fairdapp.com/bank/ https://fairdapp.com/bank/ https://fairdapp.com/bank/ * * _______ _ ______ _______ ______ ______ * (_______) (_) (______)(_______|_____ (_____ \ * _____ _____ _ ____ _ _ _______ _____) )____) ) * | ...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) unchecked-send with Medium impact 4) constant-function-asm with Medium impact 5) uninitialized-local with Medium impact 6) controlled-array-length with High 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) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
/** Website - https://www.snoopyinu.net/ */ 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); f...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'KingCoinMaster' Token Contract // // Deployed To : 0xb8fd7d979573fcaa5f3f2f4f7ba22772b1821ff8 // Symbol : KCM // Name : KingCoinMaster // Total Supply: 1,000,000 KCM // Decimals : 18 // // (c) By...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'Orbus' token contract // // Deployed to : 0xE5c73E90d22Bf659B2A62E248356c4E1a503224c // Symbol : ORB // Name : Orbus Token // Total supply: 160000000 // Decimals : 18 // // // // // -------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT874740' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT874740 // Name : ADZbuzz Steampowered.com Community Token // T...
These are the vulnerabilities found 1) locked-ether with Medium impact
// Copyright (C) 2021 Exponent // This file is part of Exponent. // Exponent 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, or // (at your option) any later version. // E...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Contract generated by TOKENTRADE // https://tokentrade.co // ---------------------------------------------------------------------------- // -------------------------------------------------------------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
// KpopArena lets users play with their Kpop cards against other // players on Kpop.io pragma solidity ^0.4.18; /** * @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, uint25...
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 ac...
These are the vulnerabilities found 1) locked-ether 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
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; 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() external view returns (uint256); /*...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) arbitrary-send with High impact 3) incorrect-equality with Medium impact 4) unchecked-transfer with High impact 5) msg-value-loop with High impact 6) unused-return with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {OperationCenterInterface} from "./interfaces/IOperationCenter.sol"; contract AccountProxy { // auth is shared storage with AccountProxy and any OpCode. mapping(address => bool) internal _auth; address internal immutable opCenterAddress; ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-08 */ pragma solidity ^0.5.00; // ---------------------------------------------------------------------------- // 'Bidenistan' token contract // // Deployed to : 0x92f5eDf6B0B1012314209905314884965b79Bc6E // Symbol : BDNI // Name : BideniCoin // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract SimpleAuctionsEth ...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) reentrancy-no-eth with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.11; /** * @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 a, uint256 b) i...
No vulnerabilities found
pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high l...
No vulnerabilities found
pragma solidity =0.5.16; interface IPlasmaswapPair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string...
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; 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); _; } funct...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.21; // File: @gnosis.pm/util-contracts/contracts/Math.sol /// @title Math library - Allows calculation of logarithmic and exponential functions /// @author Alan Lu - <alan.lu@gnosis.pm> /// @author Stefan George - <stefan@gnosis.pm> library Math { /* * Constants */ // This is ...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the on...
These are the vulnerabilities found 1) weak-prng with High impact
pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------------------------------------------- contract ERC20Interface { function totalSupply() public view returns (uint); function ba...
No vulnerabilities found
/** * The Hunger Game (JAY) * Supply : 1500 * http://hungergame.app */ 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...
These are the vulnerabilities found 1) locked-ether with Medium impact