input
stringlengths
32
47.6k
output
stringclasses
657 values
/** *Submitted for verification at Etherscan.io on 2021-05-21 */ //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) publi...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-23 */ /* Starting when the lines and colors meet the canvas, a work of art is born. From the mind of its creator, an idea take its new form. Allow ourselves to be a witness of a process where art, NFT, and DeFi link together in a platform. A place where users...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-09-14 */ pragma solidity ^0.5.15; pragma experimental ABIEncoderV2; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() exter...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) unchecked-transfer with High impact 4) unchecked-lowlevel with Medium impact 5) uninitialized-local with Medium impact 6) weak-prng with High impact 7) unused-return with Medium impact
pragma solidity ^0.4.18; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(ad...
No vulnerabilities found
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
/** *Submitted for verification at Etherscan.io on 2021-10-10 */ pragma solidity ^0.6.6; /** 🔗 HarmonyPad Links 🖥 Website: https://www.harmonypad.io/ 💬 Twitter: https://twitter.com/harmony_pad 💬 Telegram:https://t.me/HarmonyPad 💬 Telegram (Announcement): https://t.me/Har...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'Visor' token contract // // Deployed to : 0x54c402817c437A492DCE44e2ff1e82D168196c86 // Symbol : XVR // Name : Visor // Total supply: 100,000,000 // Decimals : 18 // // // (c) by Visor wi...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-11-24 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : FRIC // Name : Bitfric // Total supply : 99000000000 // Decimals : 8 // Owner Account...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.25; 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; ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) unchecked-send with Medium impact 3) incorrect-equality with Medium impact 4) uninitialized-local with Medium impact 5) weak-prng with High impact 6) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'EthereumLightning' token contract // // Deployed to : 0xD374295d4302Ff3A68b14931Ef0eb98541154Deb // Symbol : ETLT // Name : Ethereum Lightning Token // Total supply: 1000000000000 // Decimals : 1...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-03 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------------------------------------------- contract ERC20Interface { ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-05-04 */ pragma solidity 0.6.7; abstract contract DSValueLike { function getResultWithValidity() virtual external view returns (uint256, bool); } abstract contract FSMWrapperLike { function renumerateCaller(address) virtual external; } contract OSM { ...
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) uninitialized-local with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-29 */ pragma solidity ^0.4.23; /* * STATICCALL Proxy * author: Alex Beregszaszi (@axic) - https://gist.github.com/axic/fc61daf7775c56da02d21368865a9416 * * It expects the input: * 256 bit - address * 256 bit - gas * 256 bit - value * n bit - callda...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; contract SafeMath { function safeMul(uint256 a, uint256 b) public pure returns (uint256) { uint256 c = a * b; require(a == 0 || c / a == b); return c; } function safeDiv(uint256 a, uint256 b) public pure returns (uint256) { require(b > 0); uint256 c = a / b; requ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-01-19 */ // File: @openzeppelin/contracts/utils/Counters.sol // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. Thi...
These are the vulnerabilities found 1) unused-return with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.22; // File: contracts/ERC20Interface.sol // https://github.com/ethereum/EIPs/issues/20 interface ERC20 { function totalSupply() external view returns (uint supply); function balanceOf(address _owner) external view returns (uint balance); function transfer(address _to, uint _value) ex...
These are the vulnerabilities found 1) weak-prng with High impact 2) unused-return with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-03 */ //SPDX-License-Identifier: MIT pragma solidity ^0.7.0; contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner) publ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-08 */ pragma solidity ^0.8.9; // SPDX-License-Identifier: Apache-2.0 // Isolde Payment Gateway V3.0 contract Isolde { modifier onlyOwner { require(msg.sender == _owner, "caller is not the owner"); _; } // tier struct ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2020-09-25 */ pragma solidity ^0.6.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function allowance(address owner, address spender) external view returns ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-05-02 */ 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; ret...
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.4.18; // ---------------------------------------------------------------------------- // 'IOT$' token contract // // Deployed to : 0x56d84C40Dd20DDB0fA1021f2a536BE04B333336B // Symbol : IOT$ // Name : IOT$ // Total supply: 2000000000 // Decimals : 18 // // // -----------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
//launch order // launch uncursed // hardcode its address as owner in cursed // launch cursed // call uncursed.setCursedContract with its address pragma solidity ^0.4.21; contract ERC20 { function balanceOf(address tokenowner) public constant returns (uint); function allowance(address tokenowner, address ...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-13 */ 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 (ui...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // 'IST34' 'IST34 Token' token contract // // Symbol : IST34 // Name : IST34 Token // Total supply: 1,000,000,000,000.000000000000000000 // Decimals : 18 // -------------------...
These are the vulnerabilities found 1) locked-ether 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
/** *Submitted for verification at Etherscan.io on 2021-09-04 */ pragma solidity ^0.4.24; /** * Hello, * * thank you for choosing Asset Backing Crypto Currency. * Please visit our website for more information. * * Copyright Asset Backing Crypto Currency. All Rights Reserved. */ // File: openzeppelin-solidit...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'AquaToken' token contract // // Deployed to : 0x8436702c9251c4dD378A52c917bf40895c5C9872 // Symbol : AQT // Name : AquaToken // Total supply: 10000000000000000 // Decimals : 8 // // Enjo...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-17 */ /** // EASY // 💰 Total Supply: 100,000,000,000,000 // 🔥 50% BURN // 🔐 100% Liquidity locked // ✅ 4% Auto Liquidity // ✅ 10% Buy-the-dip Bonus // ABOUT: https://easycrypto.ai/ */ pragma solidity ^0.5.17; library SafeMath { function add(u...
No vulnerabilities found
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @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...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-19 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------------------------------------------- contract ERC20Interface { ...
No vulnerabilities found
pragma solidity ^0.6.0; contract Context { constructor () internal { } function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-03-13 */ 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 (ui...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-04 */ pragma solidity ^0.6.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 assume that an ov...
No vulnerabilities found
pragma solidity 0.4.21; /* The MIT License (MIT) Copyright (c) 2016 Smart Contract Solutions, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitati...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-17 */ /** *Submitted for verification at Etherscan.io on 2020-10-09 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `accou...
No vulnerabilities found
pragma solidity ^0.4.23; // CryptoRoulette // // Guess the number secretly stored in the blockchain and win the whole contract balance! // A new number is randomly chosen after each try. // // To play, call the play() method with the guessed number (1-16). Bet price: 0.2 ether contract CryptoRoulette { uint256 ...
These are the vulnerabilities found 1) uninitialized-storage with High impact 2) weak-prng with High impact 3) incorrect-equality with Medium impact 4) controlled-array-length with High impact
/** *Submitted for verification at Etherscan.io on 2021-11-06 */ /* Who's ready to FIRE it UP?! 🔥 it 🆙 is a deflationary rocketship community token! Shills are inbound and everything is set up to ensure that we make it to the moon. Get your seatbelts on as this will be the ride of your life! 🌜 PHASE 1 WILL inv...
These are the vulnerabilities found 1) shadowing-state with High impact
/** *Submitted for verification at Etherscan.io on 2021-02-05 */ // File: @openzeppelin/contracts/GSN/Context.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-01-14 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; ...
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.5.0; // ---------------------------------------------------------------------------- // 'EX11' '11x12' Smart Contract // // Symbol : EX11 // Name : 11x12 // Total supply: 1,000,000,000 // Decimals : 2 // // // // The MIT Licence. // Prepared and Compiled By: https://bit.ly/3ixlO2e //...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-08-16 */ // File: node_modules\@openzeppelin\contracts\utils\introspection\IERC165.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * ...
No vulnerabilities found
pragma solidity ^0.4.23; //1,45 left. -*-*-*-*- 45 55 programmer. -*-*-*-*-*-upper 35 right. library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } ...
These are the vulnerabilities found 1) weak-prng with High impact
/* ____ __ __ __ _ / __/__ __ ___ / /_ / / ___ / /_ (_)__ __ _\ \ / // // _ \/ __// _ \/ -_)/ __// / \ \ / /___/ \_, //_//_/\__//_//_/\__/ \__//_/ /_\_\ /___/ * Synthetix: YUANRewards.sol * * Docs: https://docs.synthetix.io/ * * * MIT License * =========== * * Copyright (c) 2020 Syn...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-02-02 */ pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface ERC20Interface { /** * @dev Returns the amount of tokens i...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-01 */ /** *Official website: https://donkeytoken.com/ */ /** *Submitted for verification at Etherscan.io on 2019-08-02 */ // File: contracts\open-zeppelin-contracts\token\ERC20\IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standa...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-07 */ pragma solidity ^0.4.16; contract owned { address public owner; function owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(addres...
These are the vulnerabilities found 1) erc20-interface with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-04-04 */ /** https://t.me/shibae_eth */ // SPDX-License-Identifier: Unlicensed pragma solidity 0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() ...
These are the vulnerabilities found 1) tx-origin with Medium impact 2) uninitialized-state with High impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-04-27 */ pragma solidity ^0.6.0; /** * @title ConnectAuth. * @dev Connector For Adding Authorities. */ interface AccountInterface { function enable(address) external; function disable(address) external; } interface EventInterface { function emi...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.5.2; //pragma experimental ABIEncoderV2; //Create by <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="18757d776f7d766c587f75797174367b7775">[email&#160;protected]</a> +886-975330002 /* ================================================================= Contact HEAD : Data Se...
These are the vulnerabilities found 1) shadowing-state with High impact 2) arbitrary-send with High impact 3) unchecked-lowlevel with Medium impact 4) incorrect-equality with Medium impact 5) uninitialized-local with Medium impact 6) weak-prng with High impact 7) msg-value-loop with High impact 8) controlled-ar...
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; require(...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // &#39;Q&#39; token contract // // Deployed to : 0x352aAff068CA9bF8aBa1DAEEbD59a4571BF42af8 // Symbol : Q // Name : Initiative Q Token // Total supply: 2000000000000 // Decimals : 18 // // Enjoy. //...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-09-18 */ //SPDX-License-Identifier: UNLICENSED pragma solidity ^0.7.6; interface DEP22 { function flash_loan( uint dx, uint dy) external view returns (bool); function check_do(bytes20 account) external view returns (uint8); function calculate_fee...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-02-12 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10; interface IERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint...
These are the vulnerabilities found 1) unused-return with Medium impact 2) erc20-interface with Medium impact 3) locked-ether with Medium impact
/** * SourceUnit: /home/jgcarv/Dev/NFT/Orcs/etherOrcs-contracts/src/mainnet/EtherOrcs.sol */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-only pragma solidity 0.8.7; /// @notice Modern and gas efficient ERC-721 + ERC-20/EIP-2612-like implementation, /// including the MetaData, and ...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) weak-prng with High impact 3) reentrancy-no-eth with Medium impact 4) incorrect-equality with Medium impact
pragma solidity ^0.4.21; /* Contract Features interface */ contract IContractFeatures { function isSupported(address _contract, uint256 _features) public view returns (bool); function enableFeatures(uint256 _features, bool _enable) public; } /** Contract Features Generic contract that allows ever...
No vulnerabilities found
pragma solidity 0.5.7; 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 re...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-18 */ // SPDX-License-Identifier: MIT /* * Token has been generated 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 sa...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-02-09 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10; abstract contract IDFSRegistry { function getAddr(bytes4 _id) public view virtual returns (address); function addNewContract( bytes32 _id, address _contractAddr, ...
These are the vulnerabilities found 1) unused-return with Medium impact 2) erc20-interface with Medium impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-16 */ pragma solidity ^0.5.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------------------------------------------- contract ERC20Interface { ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2020-09-06 */ /** *Submitted for verification at Etherscan.io on 2020-09-05 */ pragma solidity ^0.6.7; contract Owned { modifier onlyOwner() { require(msg.sender==owner); _; } address payable owner; address payable newOwner; fu...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-01-24 */ // __ __ _____ _ _ _______ _____ __ __ ______ // | \/ |_ _| \ | |__ __| / ____| /\ | \/ | ____| // | \ / | | | | \| | | | | | __ / \ | \ / | |__ // | |\/| | | | | . ` | | | | | |_ | / /\ \ | |\/| | ...
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
/** *Submitted for verification at Etherscan.io on 2022-04-24 */ /** *Submitted for verification at BscScan.com on 2021-04-23 */ /** *Submitted for verification at BscScan.com on 2021-04-22 */ /** *Submitted for verification at BscScan.com on 2021-04-22 */ /** *Submitted for verification at BscScan.com on 2020...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) incorrect-equality with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-25 */ pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'SkunkDog' token contract // // Deployed to : 0x6Be2D57b7ee18e8B66b71c37a0C9e15B7c1dce4c // Symbol : SKNKDOG // Name : SkunkDog // T...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-01-25 */ // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.2.0-solc-0.7/contracts/token/ERC20/SafeERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operatio...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) shadowing-state with High impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-03-18 */ pragma solidity ^0.4.24; // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : PIC // Name : PIC // Total supply : 60M // Decimals :...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-07 */ pragma solidity 0.5.16; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view...
These are the vulnerabilities found 1) weak-prng with High impact 2) divide-before-multiply with Medium impact 3) incorrect-equality with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-27 */ 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 (ui...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.21; /* Utilities & Common Modifiers */ contract Utils { /** constructor */ function Utils() public { } // verifies that an amount is greater than zero modifier greaterThanZero(uint256 _amount) { require(_amount > 0); _; } // validates a...
These are the vulnerabilities found 1) msg-value-loop with High impact 2) arbitrary-send with High impact 3) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-06-09 */ // Sources flattened with hardhat v2.0.11 https://hardhat.org // File contracts/interfaces/IController.sol /* Copyright 2021 Cook Finance. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-02-27 */ // Verified using https://dapp.tools // hevm: flattened sources of /nix/store/ixnp9z85s69jvfxw5dmz7lixp28fkil1-geb-protocol-token-authority/dapp/geb-protocol-token-authority/src/ProtocolTokenAuthority.sol pragma solidity >=0.6.7 <0.7.0; ////// /nix/st...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-03-10 */ //SPDX-License-Identifier: Unlicense pragma solidity ^0.7.0; interface Tether { function transfer(address _to, uint _value) external; function balanceOf(address who) external returns (uint); } interface DVM { function init(address maintain...
These are the vulnerabilities found 1) tx-origin with Medium impact 2) erc20-interface with Medium impact 3) locked-ether with Medium impact
// File: node_modules\@openzeppelin\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 exi...
No vulnerabilities found
pragma solidity ^0.4.26; 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
/** *Submitted for verification at Etherscan.io on 2021-05-15 */ //SPDX-License-Identifier: Unlicensed /** Gizmo Iun This is a meme token every meme token buyer needs in their collection. 1 quadrillion total supply. */ pragma solidity ^0.5.0; contract ERC20Interface { function totalSupply() public v...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-08-24 */ /** *Submitted for verification at Etherscan.io on 2021-07-08 */ /** *Submitted for verification at Etherscan.io on 2020-12-06 */ // SPDX-License-Identifier: MIT pragma solidity ^0.7.0; contract Owned { modifier onlyOwner() { require(m...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.22; contract Game302 { struct GameInfo { uint funderNum; mapping(uint => address) funder; mapping(uint => address) winner; } GameInfo[] public games; uint public gameNum = 0; mapping(address => uint) public lastGame; mapping(address => uint) public funderBalance; mapping(address =...
These are the vulnerabilities found 1) weak-prng with High impact
// File: @openzeppelin/contracts/GSN/Context.sol 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 * m...
No vulnerabilities found
pragma solidity ^0.4.21; // ---------------------------------------------------------------------------- // &#39;Mt Tabor&#39; token contract // // Symbol : MTT // Name : Mt Tabor Token // Total supply: 1000000000000000000000000 //decimals = 18; // _totalSupply = ; // Decimals : 4 // // ----------...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-01 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : RSC // Name : RSCOIN // Total supply : 100000 // Decimals : 2 // Owner Account : 0x16...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; contract Base { uint8 constant HEROLEVEL_MIN = 1; uint8 constant HEROLEVEL_MAX = 5; uint8 constant LIMITCHIP_MINLEVEL = 3; uint constant PARTWEIGHT_NORMAL = 100; uint constant PARTWEIGHT_LIMIT = 40; address creator; constructor() public { creator = ...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) arbitrary-send with High impact 3) incorrect-equality with Medium impact 4) weak-prng with High impact 5) unused-return with Medium impact 6) controlled-array-length with High impact
pragma solidity ^0.4.25; /** * * ETH CRYPTOCURRENCY DISTRIBUTION PROJECT * Web - https://355eth.club * Our partners telegram_channel - https://t.me/invest_to_smartcontract * EN Telegram_chat: https://t.me/club_355eth_en * RU Telegram_chat: https://t.me/club_355eth_ru * Email: mailto:support(...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) arbitrary-send with High impact 4) constant-function-asm with Medium impact 5) incorrect-equality with Medium impact 6) weak-prng with High impact
pragma solidity ^0.4.23; contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value)...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) incorrect-equality with Medium impact 3) unchecked-transfer with High impact 4) unused-return with Medium impact 5) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-02-27 */ /* WHAT IS Berry Tributes? Berry Tributes is a decentralized ethereum based deflationary token which is used for bidding at auction sales. Users can bid and participate in auctions using AngryBird at auction or on shopping sites. members can sell pro...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
pragma solidity ^0.4.21; // ---------------------------------------------------------------------------- // &#39;FIXED&#39; &#39;Example Fixed Supply Token&#39; token contract // // Symbol : WWWW // Name : WinWinWin // Total supply: 2,000,000,000.000000000000000000 // Decimals : 1...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-06 */ pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : KOCOIN // Name : KO Coin // Total supply : 100000 // Decimals : 4 // Owner Account : ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-04-11 */ 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 ...
These are the vulnerabilities found 1) write-after-write with Medium impact 2) divide-before-multiply with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : BEER // Name : FridayBeers // Total supply : 3200000000000 // Decimals : 8 // Owner Account : 0xFB4BC7266AC013333D58C1A49b3f413b54bdE1b8 // // // (c) by...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; /** https://fortisgames.com https://fortisgames.com https://fortisgames.com https://fortisgames.com https://fortisgames.com FFFFFFFFFFFFFFFFFFFFFF tt...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) uninitialized-local with Medium impact 3) reentrancy-eth with High impact 4) unused-return with Medium impact 5) locked-ether with Medium impact
pragma solidity ^0.4.24; contract SafeMath { function safeMul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function safeDiv(uint256 a, uint256 b) internal pure returns (uint256) { assert(b > 0)...
No vulnerabilities found
pragma solidity ^0.4.11; contract DoNotDeployThisGetTheRightOneCosParityPutsThisOnTop { uint256 nothing; function DoNotDeployThisGetTheRightOneCosParityPutsThisOnTop() { nothing = 27; } } //*************** Ownable contract Ownable { address public owner; function Ownable() { owner = m...
These are the vulnerabilities found 1) reentrancy-no-eth 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) weak-prng with High impact
// SPDX-License-Identifier: MIT pragma solidity ^0.4.15; /* MultiSigWallet that can receive NFT */ contract MultiSigWalletWithNFT721Support { /* * Events */ event Confirmation(address indexed sender, uint256 indexed transactionId); event Revocation(address indexed sender, uint256 indexed transa...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-03-24 */ // File: @openzeppelin/[email protected]/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented,...
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) tautology with Medium impact
/** *Submitted for verification at Etherscan.io on 2020-12-08 */ /** *Submitted for verification at Etherscan.io on 2020-12-08 */ /** * https://t.me/Worfcrypto */ pragma solidity 0.7.0; interface IERC20 { function totalSupply() external view returns (uint256); functio...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-06-08 */ /* ██████╗░██╗░░░██╗░██████╗░██████╗░░█████╗░░██████╗░░░░██████...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2022-01-02 */ /** https://flokirai.com/ https://t.me/flokirai Tokenomics 5% Marketing/Exchanges 4% Liquidity 2% Ecosystem Development 2% Reflections */ pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed interface IERC20 { function total...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.20; contract R { uint8 public result = 0; bool public finished = false; address public rouletteOwner; function Play(uint8 _number) external payable { require(msg.sender == tx.origin); if(result == _number && msg.value>0.001 ether && !finished) ...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-02-01 */ pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface ERC20Interface { /** * @dev Returns the amount of tokens i...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-07-06 */ //SPDX-License-Identifier: MIT pragma solidity ^0.7.0; contract Owned { modifier onlyOwner() { require(msg.sender == owner); _; } address owner; address newOwner; function changeOwner(address payable _newOwner) publ...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.15; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan Dejanovic contract MultiSigWallet { /* * Events */ event Confirmation(address indexed sender, uint indexed transactionId); event Revocation(address...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity 0.4.24; contract Governable { event Pause(); event Unpause(); address public governor; bool public paused = false; constructor() public { governor = msg.sender; } function setGovernor(address _gov) public onlyGovernor { governor = _gov; } modifie...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) tautology with Medium impact 3) constant-function-asm with Medium impact 4) incorrect-equality with Medium impact 5) weak-prng with High impact 6) locked-ether with Medium impact 7) unused-return with Medium impact 8) controlled-arra...