input
stringlengths
32
47.6k
output
stringclasses
657 values
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT221413' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT221413 // Name : ADZbuzz Ikeahackers.net Community Token // To...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.1; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./interfaces/IEToken.sol"; import "./utils/ControllerMixin.sol"; contract EToken is ControllerMixin, ERC20, IEToken { us...
No vulnerabilities found
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; require(c >= a...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.23; // File: zeppelin-solidity/contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; ...
No vulnerabilities found
pragma solidity ^0.4.23; contract Ownable { address public owner; modifier onlyOwner() { require(msg.sender == owner); _; } constructor() public { owner = msg.sender; } /** @dev Transfers the ownership of the contract. @param _owner Address of the ne...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) unchecked-lowlevel with Medium impact 3) unused-return with Medium impact 4) locked-ether with Medium impact
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 public owner; event OwnershipTransferred(address indexed previousOwner...
These are the vulnerabilities found 1) shadowing-abstract 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; /** * _____ _ _ * / ____| | | (_) * | | ___ ___ | | ___ ___ * | | / _ \ / _ \| |/ / |/ _ \ * | |___| (_) | (_) | <| | __/ * \_____\___/ \___/|_|\_\_|\___| * | \/ | | | ...
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
//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
/** *Submitted for verification at Etherscan.io on 2021-05-24 */ // 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, t...
No vulnerabilities found
// SPDX-License-Identifier: GPL-3.0 pragma solidity =0.6.12; import './interfaces/IUniswapV2Factory.sol'; import './UniswapV2Pair.sol'; contract UniswapV2Factory is IUniswapV2Factory { address public override feeTo; address public override feeToSetter; address public override migrator; mapping(addre...
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.21; contract Ownable { address public owner; address public newOwner; event OwnershipTransferred(address indexed _from, address indexed _to); function Ownable() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// File: contracts/common/Proxy/IERCProxy.sol pragma solidity 0.6.6; interface IERCProxy { function proxyType() external pure returns (uint256 proxyTypeId); function implementation() external view returns (address codeAddr); } // File: contracts/common/Proxy/Proxy.sol pragma solidity 0.6.6; abstract cont...
No vulnerabilities found
/// median.sol // Copyright (C) 2017-2020 Maker Ecosystem Growth Holdings, INC. // 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 License, or // (at your option...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT238708' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT238708 // Name : ADZbuzz Autonews.com Community Token // Total...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: LGPL-3.0-or-later pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; contract DoodleToadSplitter is PaymentSplitter, Ownable { using Saf...
No vulnerabilities found
contract BCFBaseCompetition { address public owner; address public referee; bool public paused = false; modifier onlyOwner() { require(msg.sender == owner); _; } modifier onlyReferee() { require(msg.sender == referee); _; } function setOwner(address ne...
These are the vulnerabilities found 1) uninitialized-local with Medium impact 2) weak-prng with High impact 3) reentrancy-no-eth with Medium impact 4) tautology 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 (uint c) { ...
No vulnerabilities found
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import "./TokenVesting.sol"; contract FundsDistributor is TokenVesting { /// @notice identifier for the contract string public identifier; /** * @notice Construct a new Funds Distributor Contract * @param beneficiary address of the benefi...
No vulnerabilities found
/** *Submitted for verification at Etherscan.io on 2021-01-09 */ // 【Sexually Transmitted Dollar】 // 【Sexually Transmitted Dollar】 // 【Sexually Transmitted Dollar】 // 【Sexually Transmitted Dollar】 /* * */ // SPDX-License-Identifier: CC-BY-NC-SA-2.5 //@code0x2 pragma solidity ^0.6.12; abstract contract Context...
These are the vulnerabilities found 1) weak-prng with High impact 2) uninitialized-local with Medium impact 3) unchecked-transfer with High impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT237353' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT237353 // Name : ADZbuzz Ma.tt Community Token // Total supply...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** ________ __ __ ________ ______ __ __ ________ _______ ______ __ __ ______ | | \ | | \ / \| \ | | \ | \| | \ | \/ \ \$$$$$$$| $$ | $| $$$$$$$$ | $$$$$$| $$\ | $| $$$$$$$$ | $$$$$$$\\$$$$$| $$\ | $| $$$$$$\ ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-05-11 */ pragma solidity ^0.5.0; contract ERC20Interface { function totalSupply() public view returns (uint); function balanceOf(address tokenOwner) public view returns (uint balance); function allowance(address tokenOwner, address spender) public vi...
No vulnerabilities found
pragma solidity ^0.4.26; contract ERC20Basic { function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); } contract Evo { function getTokens() payable public; } contract EvoGet { function Get(uint256 time, address evo) payabl...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT // Shiba Kong 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; } ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally av...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(uint a, uint b) internal pure returns (uint c) { c = a + b; re...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.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.25; /** /$$$$$$$ /$$ | $$__ $$ |__/ | $$ \ $$ /$$$$$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$/$$$$ /$$$$$$ /$$$$$$$ /$$$$$$ | $$$$$$$/ |____ $$| ...
No vulnerabilities found
// SPDX-License-Identifier: AGPL-3.0 pragma solidity 0.7.6; import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol'; contract WertPaymentModule { address public router; event TokenPurchased( address user, address token, uint256 amountIn, uint256 amountOut ); constructor(ad...
No vulnerabilities found
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.6.10; contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } function _msgSender() internal view virtual ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.7.0 <0.9.0; contract CoinFlipper { address payable[] players; receive() payable external { require(msg.value >= 0.01 ether, "Must send correct amount of ether to play."); // Add player that paid to the array players.push(pa...
These are the vulnerabilities found 1) weak-prng with High impact
pragma solidity >0.4.99 <0.6.0; 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, uin...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2021-10-31 */ /* Mega Shiba Kingdom has arrived to the ETH to provide his subjects protection for their investments and rewards for their fealty. Pledge yourself to the King and join an experienced team. 🔭 FIND OUT MORE 🔭 📖 Woofpaper: Coming soon! 🌐 Web...
No vulnerabilities found
pragma solidity ^0.4.18; 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) { uint256 c = a / b; return c; } function sub(...
These are the vulnerabilities found 1) shadowing-abstract with Medium impact
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; interface VaultInterface { function balanceOf(address account) external view returns (uint256); function getCurrentExchangePrice() external view returns ( uint256 exchangePrice_, uint256 newRevenue_, ...
No vulnerabilities found
pragma solidity ^0.4.16; // ---------------------------------------------------------------------------- // Currency contract // ---------------------------------------------------------------------------- contract ERC20Interface { function totalSupply() public constant returns (uint); function balanceOf(add...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) reentrancy-no-eth with Medium impact 3) unused-return with Medium impact 4) locked-ether with Medium impact
pragma solidity ^0.4.26; contract SafeMath { function safeAdd(uint256 a, uint256 b) public pure returns (uint256 c) { c = a + b; require(c >= a); } function safeSub(uint256 a, uint256 b) public pure returns (uint256 c) { require(b <= a); c = a - b; } function safeMu...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.5.0; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; ...
No vulnerabilities found
pragma solidity ^0.4.16; contract Neulaut { uint256 public totalSupply = 7*10**27; uint256 public fee = 15*10**18; // 15 NUA uint256 public burn = 10**19; // 10 NUA address owner; string public name = "Neulaut"; uint8 public decimals = 18; string public symbol = "NUA"; mapping (address...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address acc...
No vulnerabilities found
pragma solidity ^0.5.16; interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint amount) external returns (bool); function allowance(address owner, address spender) external view r...
No vulnerabilities found
pragma solidity ^0.7.0; pragma experimental ABIEncoderV2; import { Variables } from "./variables.sol"; /** * @title InstaAccountV2. * @dev DeFi Smart Account Wallet. */ interface ConnectorsInterface { function isConnectors(string[] calldata connectorNames) external view returns (bool, address[] memory); } co...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
pragma solidity ^0.4.24; // ---------------------------------------------------------------------------- // Sample token contract // // Symbol : SAYA // Name : SAYA Token // Total supply : 10000000000 // Decimals : 2 // Owner Account : 0x1E11511f7Ced04b2A552Abf397af16c6E32ba2bc // // Enjoy. // //...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT123728' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT123728 // Name : ADZbuzz Megaworldcorp.com Community Token // ...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity ^0.6.5; import "./utils/lib_storage/UserProxyStorage.sol"; /** * @dev UserProxy contract */ contract UserProxy { // Below are the variables which consume storage slots. address public operator; string public version; // Current version of the contract ...
No vulnerabilities found
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./interfaces/IQuantumArtSeeder.sol"; contract BogusSeeder is IQuantumArtSeeder{ function dropIdToSeed(uint256 dropId) public view override returns (uint256) { return 0; } } // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; inter...
No vulnerabilities found
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC721 { function safeTransferFrom( address from, address to, uint256 tokenId ) external; } contract MultitransferERC721 { function multitransfer( address erc721Address, address recipient, uint...
No vulnerabilities found
// File: @openzeppelin\upgrades\contracts\Initializable.sol pragma solidity >=0.4.24 <0.7.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer...
These are the vulnerabilities found 1) weak-prng with High impact 2) shadowing-state with High impact
// File: contracts/lib/InitializableOwnable.sol /* Copyright 2020 DODO ZOO. SPDX-License-Identifier: Apache-2.0 */ pragma solidity 0.6.9; pragma experimental ABIEncoderV2; /** * @title Ownable * @author DODO Breeder * * @notice Ownership related functions */ contract InitializableOwnable { address...
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
pragma solidity ^0.4.24; 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 ERC20Basic ...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) unused-return with Medium impact 3) locked-ether with Medium impact
// SPDX-License-Identifier: Unlicense pragma solidity 0.8.7; import "./EtherOrcs.sol"; contract EtherTransition { address public constant impl = 0x3F04A4960Ef9c509875dF108fc6d27587B8b2723; address implementation_; address public admin; //Lame requirement from opensea uint256 public t...
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
/** *Submitted for verification at Etherscan.io on 2021-12-12 */ // SPDX-License-Identifier: MIT /* Shibari Inu 縛り犬 Website: https://shibariinuerc20.com/ Telegram: https://t.me/ShibariInu Twitter: https://twitter.com/ShibariInuErc20 Medium: https://medium.com/@ShibariInu Github: https://github.com/ShibariInu Insta...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) uninitialized-local with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'Doves' token contract // // Deployed to : 0xDf4943c61042919Bd45312d033Bd697A1E0A6397 // Symbol : DOVE // Name : Doves // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c) by Doves.C...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT566203' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT566203 // Name : ADZbuzz Omgubuntu.co.uk Community Token // To...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.6.0 <0.8.0; /* ---------------------------- ---------------------------- */ import "./ERC20.sol"; import "./SafeMath.sol"; import "./ERC20Burnable.sol"; import "./Ownable.sol"; contract YFSTPRO is ERC20, ERC20Burnable, Ownable { using SafeMath for uin...
No vulnerabilities found
// SPDX-License-Identifier: MIT /* * Token has been generated for FREE using https://vittominacori.github.io/erc20-generator/ * * NOTE: "Contract Source Code Verified (Similar Match)" means that this Token is similar to other tokens deployed * using the same generator. It is not an issue. It means that you won't ...
No vulnerabilities found
// SPDX-License-Identifier: GPL-3.0 pragma solidity =0.6.12; import './interfaces/IUniswapV2Factory.sol'; import './UniswapV2Pair.sol'; contract UniswapV2Factory is IUniswapV2Factory { address public override feeTo; address public override feeToSetter; address public override migrator; mapping(addre...
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; interface ERC721 /* is ERC165 */ { event Transfer(address indexed _from, address indexed _to, uint256 indexed _tokenId); event Approval(address indexed _owner, address indexed _approved, uint256 indexed _tokenId); event ApprovalForAll(address indexed _owner, address indexed _operator, bo...
These are the vulnerabilities found 1) tautology with Medium impact 2) arbitrary-send with High impact 3) constant-function-asm with Medium impact 4) weak-prng with High impact 5) controlled-array-length with High impact
// SPDX-License-Identifier: GPL-3.0-or-later // Deployed with donations via Gitcoin GR9 pragma solidity 0.7.5; // a library for performing various math operations library Math { function min(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x < y ? x : y; } function max(uint256 x, ui...
These are the vulnerabilities found 1) weak-prng with High impact 2) uninitialized-local with Medium impact
pragma solidity ^0.4.25; contract MultiVACToken { string public name = "MultiVAC"; // token name string public symbol = "MTV"; // token symbol uint256 public decimals = 18; // token digit mapping (address => uint256) public balanceOf; mapping (address => mapping (address...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2022-01-15 */ //SPDX-License-Identifier: MIT /* __ Kaiba DeFi V2 .d$$b .' TO$;\ / : TP._; / _.; :Tb| ...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) reentrancy-no-eth with Medium impact 3) locked-ether with Medium impact
/** ,---, ,----.. ,--, .' .' `\ / / \ ,--.'| ,---.' \ ,---. | : : ,--...
These are the vulnerabilities found 1) arbitrary-send with High impact 2) uninitialized-local with Medium impact 3) reentrancy-eth with High impact 4) weak-prng with High impact 5) unused-return with Medium impact
pragma solidity ^0.4.16; contract owned { address public owner; function owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address newOwner) onlyOwner public { owner = newOwner; } } i...
No vulnerabilities found
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT interface ERC20 { //Methods function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); funct...
No vulnerabilities found
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'JOGCOIN' token contract // // Deployed to : 0x5367eEB055C8e91B573B92b3C1893d4C022f79F7 // Symbol : Jogcoin // Name : Jogcoin // Total supply : 18990000000 // Decimals : 8 // -----------------...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.23; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than a...
These are the vulnerabilities found 1) locked-ether with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.8.7; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include...
These are the vulnerabilities found 1) weak-prng with High impact 2) 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
/* This is Homer's world and were all living in it - 0 TAX */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its...
These are the vulnerabilities found 1) shadowing-state with High impact 2) locked-ether with Medium impact
pragma solidity =0.5.16; interface ISphynxFactory { 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(address tokenA, address tokenB) externa...
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.16; library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant returns (uint256) { // assert(b > 0); // Solidity automatically ...
No vulnerabilities found
/* SPDX-License-Identifier: MIT */ pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amo...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity =0.6.6; /* * @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 * manner, since when dealing with GSN meta-transactions...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) weak-prng with High impact 3) uninitialized-local with Medium impact
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one accoun...
These are the vulnerabilities found 1) weak-prng with High impact 2) reentrancy-no-eth with Medium impact 3) locked-ether with Medium impact
pragma solidity ^0.4.19; 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
// SPDX-License-Identifier: MIT // solhint-disable-next-line compiler-version pragma solidity >=0.4.24 <0.8.0; import "../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contra...
These are the vulnerabilities found 1) weak-prng with High impact 2) uninitialized-local with Medium impact
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) exte...
These are the vulnerabilities found 1) divide-before-multiply with Medium impact 2) reentrancy-no-eth with Medium impact 3) arbitrary-send with High impact 4) incorrect-equality with Medium impact 5) reentrancy-eth with High impact 6) weak-prng with High impact 7) unused-return with Medium impact
/* Pay reward for Affiliates and Partners Also we planning to do such list of digital things Landing page with automatic buying Green Tokens with ETH Automatic display of current position from 10 to 1 API service for an external exchanges and wallets White Label service for an external exchanges White Label service fo...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) locked-ether with Medium impact
pragma solidity ^0.4.13; contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = ms...
These are the vulnerabilities found 1) msg-value-loop with High impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT353342' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT353342 // Name : ADZbuzz Truepundit.com Community Token // Tot...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.5.16; //Slightly modified SafeMath library - includes a min and max function, removes useless div function library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } function add(int256 a...
These are the vulnerabilities found 1) weak-prng with High impact 2) incorrect-equality with Medium impact 3) controlled-array-length with High impact
// 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 * manner, since when d...
No vulnerabilities found
pragma solidity ^0.6.0; interface TokenInterface { function approve(address, uint256) external; function transfer(address, uint) external; function transferFrom(address, address, uint) external; function deposit() external payable; function withdraw(uint) external; function balanceOf(address) e...
These are the vulnerabilities found 1) erc20-interface with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.6.0; /** ERC20 Token Symbol : IOI Name : IOI Token Total supply : 100000000 Decimals : 6 */ abstract contract ERC20Interface { string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; function balanceOf(address _owner) ...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** *Submitted for verification at Etherscan.io on 2018-06-02 */ pragma solidity ^0.4.23; contract Ownable { address public owner; modifier onlyOwner() { require(msg.sender == owner); _; } constructor() public { owner = msg.sender; } /** @dev Transfers the ...
These are the vulnerabilities found 1) uninitialized-state with High impact 2) unchecked-lowlevel with Medium impact 3) incorrect-equality with Medium impact 4) unused-return with Medium impact 5) locked-ether with Medium impact
pragma solidity ^0.4.21; // ---------------------------------------------------------------------------- // 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.24; // ---------------------------------------------------------------------------- // DRIP token contract // // Symbol : DRIP // Name : Drip Token // Total supply : 25000000000000000000000000 // Decimals : 18 // Owner Account : 0xf4992E7966C7e7E5e25d53b4cF598A927169868e // /...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.21; /// @title Interface for contracts conforming to ERC-721: Non-Fungible Tokens /// @author MinakoKojima (https://github.com/lychees) contract ERC721 { // Required methods function totalSupply() public view returns (uint256 total); function balanceOf(address _owner) public view retur...
These are the vulnerabilities found 1) reentrancy-no-eth with Medium impact 2) arbitrary-send with High impact 3) constant-function-asm with Medium impact 4) uninitialized-local with Medium impact 5) weak-prng with High impact 6) controlled-array-length with High impact
/* MFERS PICASSO ERC721 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `st...
These are the vulnerabilities found 1) unused-return with Medium impact 2) msg-value-loop with High impact 3) uninitialized-local with Medium impact
// SPDX-License-Identifier: MIT pragma solidity 0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warn...
These are the vulnerabilities found 1) unchecked-transfer with High impact 2) locked-ether with Medium impact
pragma solidity ^0.6.0; interface ERC20 { function totalSupply() external view returns (uint256 supply); function balanceOf(address _owner) external view returns (uint256 balance); function transfer(address _to, uint256 _value) external returns (bool success); function transferFrom(address _from, ad...
These are the vulnerabilities found 1) unused-return with Medium impact 2) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // Safe maths // ---------------------------------------------------------------------------- library SafeMath { function add(uint a, uint b) internal pure returns (uint c) { c = a + b; re...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.24; // Symbol : MIAB // Name : Make It All Back // Total supply : 100000000000 // Decimals : 18 // Owner Account : 0xE289a7b3bc32ba248ef459B0895d0DbD0caF5293 // Lib: Safe Math // ---------------------------------------------------------------------------- co...
These are the vulnerabilities found 1) locked-ether with Medium impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'ACT105326' token contract // // Deployed to : 0x3f70c0B02879c36162C2C902ECfe9Ac0a8a8a187 // Symbol : ACT105326 // Name : ADZbuzz Eonline.com Community Token // Total supply: 2000000 // Decimals :...
These are the vulnerabilities found 1) locked-ether with Medium impact
/** DOGEVIPER American muscle. Memetic doge. The hottest new doge on the block is here, and he moves at the speed of a striped red blur. He's about to make gains so fast you'll all have speeding tickets attached to his eth. Don't get left i...
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 (uint256...
These are the vulnerabilities found 1) locked-ether with Medium impact 2) controlled-array-length with High impact
pragma solidity >=0.5.16 <0.6.9; pragma experimental ABIEncoderV2; //YOUWILLNEVERWALKALONE interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes calldata _extraData) external; } contract maho { string public name; string public symbol; uint8 public dec...
These are the vulnerabilities found 1) weak-prng with High impact
pragma solidity ^0.4.18; // ---------------------------------------------------------------------------- // 'Computer' token contract // // Deployed to : 0x2d57365a7ab22425f09D49bB0baFB0426EB8dDF9 // Symbol : C // Name : Computer Token // Total supply: 100000000 // Decimals : 18 // // Enjoy. // // (c) b...
These are the vulnerabilities found 1) locked-ether with Medium impact