input stringlengths 32 47.6k | output stringclasses 657
values |
|---|---|
/**
*Submitted for verification at Etherscan.io on 2021-06-07
*/
//SPDX-License-Identifier: Unlicense
// ----------------------------------------------------------------------------
// 'EthereumCasino' token contract
//
// Symbol : ETH7 🎰
// Name : Ethereum Casino
// Total supply: 100000000000000
// Dec... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-09-06
*/
// SPDX-License-Identifier: MIT
pragma solidity =0.8.7;
/**
* @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 return... | No vulnerabilities found |
pragma solidity ^0.4.21;
// File: contracts/ownership/Ownable.sol
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event Ownership... | No vulnerabilities found |
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// 'TessrnetToken' token contract
//
// Deployed to : 0xDE012Fee8754BA1DF8077E1B6216a945Ec4285D7
// Symbol : TSRN
// Name : TESSRNET
// Total supply: 1000000
// Decimals : 8
//
// Enjoy.
//
/... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity 0.5.17;
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor() public {
owner = msg.sender;
}
modifier onlyOwner() {
require(msg.sender == owner, "permission denied");
_;
... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-11-10
*/
// File: contracts/Proxy.sol
pragma solidity 0.6.12;
contract Proxy {
// Code position in storage is keccak256("PROXIABLE") = "0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7"
uint256 constant PROXIABLE_MEM_SLOT = 0xc5f16f0f... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.19;
/**
* @title ERC20
* @dev A standard interface for tokens.
* @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
*/
contract ERC20 {
/// @dev Returns the total token supply
function totalSupply() public constant returns (uint256 supply);
/// @dev... | These are the vulnerabilities found
1) weak-prng with High impact
2) incorrect-equality with Medium impact
3) uninitialized-local with Medium impact
4) controlled-array-length with High impact |
/**
*Submitted for verification at Etherscan.io on 2021-09-13
*/
pragma solidity ^0.5.0;
/**
* @title Proxy
* @dev Gives the possibility to delegate any call to a foreign implementation.
*/
contract Proxy {
/**
* @dev Fallback function allowing to perform a delegatecall to the given implementation.
*... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-12-05
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
... | These are the vulnerabilities found
1) tautology with Medium impact
2) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-09-02
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface MapContract {
function discoverMap(uint256 tokenId) external;
function safeTransferFrom(address from, address to, uint256 tokenId) external;
}
interface IERC721Receiver {
... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-06-05
*/
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.18;
// ----------------------------------------------------------------------------
// 'name' token contract
//
// Deployed to : your address
// Symbol : stock market term
// Name : Name
// Total supply: 100000000
// Decimals : 18
//
// Enjoy.
//
// (c) by Moritz Neto with B... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-11-27
*/
// (c) BLACK FREN CAPITAL
pragma solidity 0.8.10;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) ... | These are the vulnerabilities found
1) weak-prng with High impact
2) divide-before-multiply with Medium impact
3) incorrect-equality with Medium impact |
pragma solidity ^0.4.23;
/*
* Zethroll.
*
* Adapted from PHXRoll, written in March 2018 by TechnicalRise:
* https://www.reddit.com/user/TechnicalRise/
*
* Gas golfed by Etherguy
*/
contract ZTHReceivingContract {
/**
* @dev Standard ERC223 function that will handle incoming token transfers.
*
* @param _f... | 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 |
/**
*Submitted for verification at Etherscan.io on 2021-06-29
*/
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);
/*... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.16;
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/issues/20
contract ERC20Interface {
// Get the total token supply
function totalSupply() constant returns (uint256);
// Get the account balance of another account with address _owner
function balanceOf(add... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-03-04
*/
/**
*Submitted for verification at Etherscan.io on 2018-07-23
*/
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'ACC' token contract
//
// Deployed to : 0x7553C3bf5A63484E69F1F138Ed66cfD083... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-04-26
*/
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.18;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
assert(c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Sol... | No vulnerabilities found |
pragma solidity ^0.4.24;
contract ERC20Basic {}
contract ERC20 is ERC20Basic {}
contract Ownable {}
contract BasicToken is ERC20Basic {}
contract StandardToken is ERC20, BasicToken {}
contract Pausable is Ownable {}
contract PausableToken is StandardToken, Pausable {}
contract MintableToken is StandardToken, Ownable {... | These are the vulnerabilities found
1) unchecked-transfer with High impact
2) divide-before-multiply with Medium impact
3) reentrancy-no-eth with Medium impact
4) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'Noscam' token contract
//
// Deployed to : 0xAe21C2887AD86B5be34b1314854C66a5f9276bF9
// Symbol : NSC
// Name : NOSCAM
// Total supply: 21000000
// Decimals : 4
// --------------------... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'Omnidollar' token contract
//
// Deployed to : 0xDf8E8CEa5FeBfB72f3dDCE0CbAfaD0F27f1b871d
// Symbol : OMN
// Name : Omnidollar
// Total supply: 100000000000.000000000000000000
// Decimals ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2020-10-14
*/
/**
*Submitted for verification at Etherscan.io on 2019-09-04
*/
/**
*Submitted for verification at Etherscan.io on 2019-08-20
*/
pragma solidity ^0.5.17;
// ------------------------------------------------------------------------------------------... | These are the vulnerabilities found
1) uninitialized-state with High impact
2) tautology with Medium impact
3) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-04-25
*/
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// Corgi Token Smart Contract
//
// Symbol : CORGI
// Name : Corgi Token
// Total supply : 10000000000000
// Decimals : 2
// ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-10-22
*/
/**
*Submitted for verification at Etherscan.io on 2021-10-21
*/
// SPDX-License-Identifier: Unlicensed
/**
Join Our Telegram: https://t.me/JAKETHEDOGeth
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@... | No vulnerabilities found |
//
// |\,'\
// ___ | ' \
// ___ \ / ___ ,'\_ | .-. \ /|
// \ / | |,'__ \ ,'\_ | \ | | | | ,' |_ /|
// _ | | | |\/ \ \ | \ | |\_| _ | |_| | _ '-... | These are the vulnerabilities found
1) divide-before-multiply with Medium impact
2) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-07-19
*/
pragma experimental ABIEncoderV2;
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() extern... | These are the vulnerabilities found
1) unchecked-transfer with High impact
2) reentrancy-no-eth with Medium impact
3) msg-value-loop with High impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'FiO' contract
//
// Deployed to : 0x094984F8455d3Bbb08c07eE0A8CA29542D7A4d04
// Symbol : FiO
// Name : FiO
// Total supply: 100000000000
// Decimals : 18
//
//
//
//
// ------------------... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.21;
// File: contracts/ownership/Ownable.sol
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event Ownership... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-06-10
*/
pragma solidity 0.4.19;
contract Token {
/// @return total amount of tokens
function totalSupply() constant returns (uint supply) {}
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
fu... | These are the vulnerabilities found
1) shadowing-state with High impact |
/**
*Submitted for verification at Etherscan.io on 2021-06-25
*/
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;
// ----------------------------------------------------------------------------
// Lib: Safe Math
// ----------------------------------------------------------------------------
contract SafeMath {
function safeAdd(uint a, uint b) public pure returns (uint c) {
c = a + b;
... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.18;
contract Utils {
/**
constructor
*/
function Utils() public {
}
// verifies that an amount is greater than zero
modifier greaterThanZero(uint256 _amount) {
require(_amount > 0);
_;
}
// validates an address - currently only checks that... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-06-29
*/
// SPDX-License-Identifier: AGPL-3.0-or-later // hevm: flattened sources of contracts/CollateralLocker.sol
pragma solidity =0.6.11 >=0.6.0 <0.8.0 >=0.6.2 <0.8.0;
////// lib/openzeppelin-contracts/contracts/math/SafeMath.sol
/* pragma solidity >=0.6.0 ... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-12-20
*/
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'LAWT' token contract
//
// Deployed to : 0x896009176513A96c155CA46c2d77f0e10cd49571
// Symbol : Love and War
// Name : LAWT
// T... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
* Note for the truffle testversion:
* DragonKingTest inherits from DragonKing and adds one more function for testing the volcano from truffle.
* For deployment on ropsten or mainnet, just deploy the DragonKing contract and remove this comment before verifying on
* etherscan.
* */
/**
* Dragonking is a bloc... | These are the vulnerabilities found
1) divide-before-multiply with Medium impact
2) shadowing-state with High impact
3) reentrancy-no-eth with Medium impact
4) constant-function-asm with Medium impact
5) incorrect-equality with Medium impact
6) uninitialized-local with Medium impact
7) weak-prng with High impact... |
pragma solidity ^0.4.11;
contract Risk
{
address owner;
mapping (address => uint8 []) playerCountries;
address[178] ownerofCountry; // size must be fixed
address[] playerList;
uint256 totalmoney=0;
uint256 lastR=3;
address lastgameendWinner=address(0);
uint8 winnerLimit=50;
... | These are the vulnerabilities found
1) weak-prng with High impact
2) divide-before-multiply with Medium impact
3) controlled-array-length with High 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(addr... | These are the vulnerabilities found
1) uninitialized-state with High impact
2) locked-ether with Medium impact |
pragma solidity 0.4.20;
contract IAugur {
function createChildUniverse(bytes32 _parentPayoutDistributionHash, uint256[] _parentPayoutNumerators, bool _parentInvalid) public returns (IUniverse);
function isKnownUniverse(IUniverse _universe) public view returns (bool);
function trustedTransfer(ERC20 _token, ... | These are the vulnerabilities found
1) incorrect-equality with Medium impact
2) unused-return with Medium impact
3) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-05-22
*/
// 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
* usi... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-03-22
*/
pragma solidity ^0.5.0;
// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
//
// ----------------------------------------------------------------------------
contract ERC20Interface {
... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2022-03-15
*/
//SPDX-License-Identifier: BSL
// Copyright Candle Labs, Inc. 2022
// Walker -
// Morality
pragma solidity ^0.8.0;
interface IERCBurn {
function burn(uint256 _amount) external;
function burnFrom(address account, uint256 amount) external;
... | No vulnerabilities found |
pragma solidity ^0.4.18;
contract SafeMath {
function safeAdd(uint a, uint b) public pure returns (uint c) {
c = a + b;
require(c >= a);
}
function safeSub(uint a, uint b) public pure returns (uint c) {
require(b <= a);
c = a - b;
}
function safeMul(uint a, uint b) p... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// 'liquidcoin' token contract
//
// Deployed to : 0x4A4C02967Da4908d2587a9f631cC1eB682918329
// Symbol : lqdv
// Name : liquidx
// Total supply: 100000000
// Decimals : 8
//
// Enjoy.
//
... | These are the vulnerabilities found
1) locked-ether with Medium impact |
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.1;
/**
* @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 i... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-12-17
*/
/*
MyMonii is a future-oriented virtual world blockchain infrastructure incubated by MixMarvel. It integrates cross-chain protocol, NFT protocol, and EVM protocol. As a high-performance chain group that can realize the multi-chain contract interoperabil... | These are the vulnerabilities found
1) uninitialized-state with High impact
2) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// File: contracts/ownership/Ownable.sol
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event Ownership... | These are the vulnerabilities found
1) divide-before-multiply with Medium impact
2) controlled-array-length with High impact
3) unchecked-transfer with High impact
4) unused-return with Medium impact
5) locked-ether with Medium impact |
pragma solidity ^0.4.25;
contract ERC20 {
function transfer(address _to, uint256 _value) public returns (bool success);
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);
function approve(address _spender, uint256 _value) public returns (bool success);
ev... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-02-01
*/
pragma solidity ^0.4.24;
contract IHandleCampaignDeployment {
/**
* @notice Function which will be used as simulation for constructor under TwoKeyAcquisitionCampaign contract
* @dev This is just an interface of the function, the actual l... | These are the vulnerabilities found
1) reentrancy-no-eth with Medium impact
2) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-05-19
*/
pragma solidity =0.6.6;
// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)
library SafeMath {
function add(uint x, uint y) internal pure returns (uint z) {
require((z = x + y) >= x, 'ds-... | These are the vulnerabilities found
1) weak-prng with High impact
2) divide-before-multiply with Medium impact
3) uninitialized-local with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-04-03
*/
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
//
// Symbol : UMI
// Name : UmiToken
// Total supply : 33000000000000000000000000000
// Decimals : 18
// Owner Account : 0x7... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-07-20
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.5;
/*
* @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, th... | No vulnerabilities found |
pragma solidity ^0.4.18;
/* ==================================================================== */
/* Copyright (c) 2018 The MagicAcademy Project. All rights reserved.
/*
/* https://www.magicacademy.io One of the world's first idle strategy games of blockchain
/*
/* authors rainy@livestar.com/fanny.zheng@live... | These are the vulnerabilities found
1) divide-before-multiply with Medium impact
2) uninitialized-local with Medium impact
3) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// '4Cs' '4Cs' token contract
//
// Symbol : 4Cs
// Name : 4Cs
// Total supply: 1,000,000,000.000000000000000000
// Decimals : 18
//
// Enjoy.
//
// ----------------------------------... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-11-07
*/
/**
_____ _ _____ _ __ _____
/ ____| | | / ____| | | \ \ / /__ \
| | _ __ _ _ _ __ | |_ ___ | | __ _ _ __| |_ \ \ / / ) |
| | | '__| | | | '_ \... | These are the vulnerabilities found
1) divide-before-multiply with Medium impact
2) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-07-12
*/
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.5;
/**
* @title TieredCrowdfundStorage
* @author MirrorXYZ
*/
contract TieredCrowdfundStorage {
// The two states that this contract can exist in. "FUNDING" allows
// contribut... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// 'FIXED' 'Example Fixed Supply Token' token contract
//
// Symbol : FIXED
// Name : Example Fixed Supply Token
// Total supply: 1,000,000.000000000000000000
// Decimals : 18
//
// E... | These are the vulnerabilities found
1) locked-ether with Medium impact |
//File: node_modules\openzeppelin-solidity\contracts\token\ERC20\ERC20Basic.sol
pragma solidity ^0.4.23;
/**
* @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);
funct... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2022-02-02
*/
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;
/// @title Multi Send - Allows to batch multiple transactions into one.
contract WalliroMultiSend {
address private immutable multisendSingleton;
constructor() {
... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity 0.4.19;
// File: node_modules/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 pub... | These are the vulnerabilities found
1) uninitialized-state with High impact
2) unused-return with Medium impact
3) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2020-09-10
*/
/**
*Submitted for verification at Ether5.net on 2020-09-07
*/
/**
*
* Designed by Team Brave
* Developed by Advanced Smart Contract Concepts ... | These are the vulnerabilities found
1) weak-prng with High impact
2) divide-before-multiply with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2022-01-12
*/
// File: base/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 available
* via msg.sender and msg.data, they s... | No vulnerabilities found |
pragma solidity ^0.4.24;
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) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-05-18
*/
// 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
* usi... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2022-03-10
*/
/**
//SPDX-License-Identifier: UNLICENSED
*/
pragma solidity ^0.8.4;
contract PaymentSplitter {
address payable private _address1;
address payable private _address2;
address payable private _address3;
address payable private _address4;
... | No vulnerabilities found |
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// 'I NEED A MIRACLE COIN' token contract
//
// Deployed to : 0xFa88C8698F8309FD9B2c8b42754858E06096cce9
// Symbol : MIRACLE
// Name : MIRACLE
// Total supply: 100
// Decimals : 6
//
// Enjoy.
//
// ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-11-20
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
... | These are the vulnerabilities found
1) locked-ether with Medium impact |
// File: openzeppelin-solidity-2.3.0/contracts/ownership/Ownable.sol
pragma solidity ^0.5.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* This module is used through inheritance... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-09-14
*/
// 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 m... | These are the vulnerabilities found
1) weak-prng with High impact
2) incorrect-equality with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'ZIMBOCOIN' token contract
//
// Deployed to : 0x9a33836F185A8CedFE56dB2799063133af1b6869
// Symbol : ZMB
// Name : ZIMBOCOIN
// Total supply: 100000000
// Decimals : 8
//
// Enjoy.
//
// ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.26;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
if (a == 0) {
return 0;
}
c = a * b;
assert(c / a == b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 a... | No vulnerabilities found |
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
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(addr... | These are the vulnerabilities found
1) weak-prng with High impact
2) incorrect-equality with Medium impact
3) uninitialized-local with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2020-09-25
*/
pragma solidity ^0.5.17;
/**
* Math operations with safety checks
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
... | These are the vulnerabilities found
1) reentrancy-no-eth with Medium impact
2) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2022-01-26
*/
/*
MONIFIC Test Platform
After months of blood, sweat and tears, MONIFIC is excited to present the release of the MONIFIC Test Platform. The primary issuance and token sale platform have been live since the private sale took place in November. Now with... | These are the vulnerabilities found
1) uninitialized-state with High impact
2) locked-ether with Medium impact |
pragma solidity ^0.4.24;
contract ETHCOOLAdvertisements {
using SafeMath for uint;
struct Advertisement {
address user;
string text;
string link;
uint expiry;
}
address public owner;
uint public display_rate;
uint public owner_share;
ETHCOOLMain main_cont... | These are the vulnerabilities found
1) locked-ether with Medium impact
2) arbitrary-send with High impact
3) controlled-array-length with High impact |
pragma solidity ^0.4.18;
contract Token {
uint256 public totalSupply;
function balanceOf(address _owner) constant returns (uint256 balance);
function transfer(address _to, uint256 _value) returns (bool success);
function transferFrom(address _from, address _to, uint256 _value) returns (bool success);
... | These are the vulnerabilities found
1) locked-ether with Medium impact |
// File: @uniswap\v2-core\contracts\interfaces\IUniswapV2Factory.sol
pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns... | These are the vulnerabilities found
1) weak-prng with High impact
2) uninitialized-local with Medium impact
3) controlled-array-length with High impact |
/**
*Submitted for verification at Etherscan.io on 2021-03-10
*/
pragma solidity =0.5.16;
// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)
library SafeMath {
function add(uint x, uint y) internal pure returns (uint z) {
require((z = x + y) >= x, '... | 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-03-17
*/
// "SPDX-License-Identifier: UNLICENSED"
pragma solidity 0.7.4;
contract QomX {
using SafeMath for uint256;
string public constant symbol = "QomX";
string public constant name = "Qommodity";
uint8 public constant decimals = 16;
uint256 _totalSupply... | No vulnerabilities found |
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// 'OREO.FINANCE' token contract
//
// Deployed to : 0xDc4d422EB57b5D4cebebABdD1AE57DC5e5D4A9EA
// Symbol : OREO
// Name : OREO.FINANCE
// Total supply: 20000
// Decimals : 18
//
//
//
// (c) by Mori... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-04-22
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
contract EthHelper {
function hasCode(address addr) external view returns (bool) {
uint256 size;
assembly { size := extcodesize(addr) }
return size > 0;
}
function codeSize(a... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2022-02-28
*/
/**
*Submitted for verification at Etherscan.io on 2022-02-28
*/
/**
*Submitted for verification at Etherscan.io on 2022-02-24
*/
/**
*Submitted for verification at Etherscan.io on 2021-11-03
*/
/**
*Submitted for verification at Etherscan.io on ... | These are the vulnerabilities found
1) erc721-interface with Medium impact
2) 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) uninitialized-state with High impact
2) reentrancy-no-eth with Medium impact
3) locked-ether with Medium impact
4) constant-function-asm with Medium impact |
pragma solidity ^0.4.24;
contract BREBuy {
struct ContractParam {
uint32 totalSize ;
uint256 singlePrice;
uint8 pumpRate;
bool hasChange;
}
address owner = 0x0;
uint32 gameIndex = 0;
uint256 totalPrice= 0;
bool isLock = false;
ContractParam publi... | These are the vulnerabilities found
1) constant-function-asm with Medium impact
2) weak-prng with High impact |
// hevm: flattened sources of contracts/Proxy.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.7 <0.9.0;
////// contracts/SlotManipulatable.sol
/* pragma solidity ^0.8.7; */
abstract contract SlotManipulatable {
function _getReferenceTypeSlot(bytes32 slot_, bytes32 key_) internal pure returns ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-09-06
*/
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// Linework token contract
//
// Symbol : LWC
// Name : Linework Coin Token
// Total supply : 21000000
// Decimals : 8
// Own... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2022-03-05
*/
// Cosmic Kiss Bridge
// https://cosmickiss.io/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to S... | No vulnerabilities found |
// Hotelium.sol
pragma solidity ^0.4.24;
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, uint2... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-04-24
*/
/**
*Submitted for verification at Etherscan.io on 2021-04-24
* Ely Net and Tor Korea
*/
pragma solidity ^0.5.17;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0... | These are the vulnerabilities found
1) unchecked-transfer with High impact
2) divide-before-multiply with Medium impact
3) locked-ether with Medium impact
4) controlled-array-length with High impact |
/**
*Submitted for verification at Etherscan.io on 2021-07-06
*/
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constan... | These are the vulnerabilities found
1) divide-before-multiply with Medium impact
2) unused-return with Medium impact
3) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'Sleipnir' token contract
//
// Deployed to : 0xa015fE2a1947B23AD454E699F8CbbDa419671F5e
// Symbol : SLI
// Name : Sleipnirwallet
// Total supply: 3000000
// Decimals : 6
// Ing. Piotr Iva... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
* Investors relations: <span class="__cf_email__" data-cfemail="80f0e1f2f4eee5f2f3c0e1f2e2e9f4f2e1e7e9eee7aee3ef">[email protected]</span>
**/
pragma solidity ^0.4.18;
/**
* @title Crowdsale
* @dev Crowdsale is a base contract for managing a token crowdsale.
* Crowdsales have a start and end timestamps, ... | These are the vulnerabilities found
1) reentrancy-no-eth with Medium impact
2) controlled-array-length with High impact
3) erc20-interface with Medium impact
4) msg-value-loop with High impact
5) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-07-03
*/
/**
*
* ▪️Telegram Group: https://t.me/yoshiworld
*
* ▪️Twitter: https://twitter.com/yoshiworldio
*
*/
// "SPDX-License-Identifier: UNLICENSED"
pragma solidity ^0.6.12;
abstract contract Context {
function _msgSender() internal view virt... | No vulnerabilities found |
/**
* The contract defining the contest, allowing participation and voting.
* Participation is only possible before the participation deadline.
* Voting is only allowed after the participation deadline was met and before the voting deadline expires.
* As soon as voting is over, the contest may be closed, resultig in th... | These are the vulnerabilities found
1) uninitialized-state with High impact
2) divide-before-multiply with Medium impact
3) controlled-array-length with High impact
4) arbitrary-send with High impact
5) incorrect-equality with Medium impact
6) weak-prng with High impact
7) constant-function-state with Medium imp... |
pragma solidity ^0.4.25;
// First Spielley and Dav collab on creating a Hot potato take for P3D
// pass the spud,
// each time you have the spud you can win the jackpot,
// first player has most chance of hitting jackpot and slowly the chances of winning decrease.
// if someone doesn't take over the spud within ... | These are the vulnerabilities found
1) divide-before-multiply with Medium impact
2) incorrect-equality with Medium impact
3) uninitialized-local with Medium impact
4) reentrancy-eth with High impact
5) weak-prng with High impact
6) unused-return with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-02-15
*/
// 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 are generally available
* via msg.sender and msg... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-06-06
*/
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'NarcoDoge' token contract
//
// Deployed to : 0xDB1bB45317b0E6c3ab84fB2aB70cF226d86b68f4
// Symbol : NARCODOG
// Name : NarcoDoge
/... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.24;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* 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(address... | These are the vulnerabilities found
1) arbitrary-send with High impact
2) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2020-05-01
*/
pragma solidity >=0.4.21 <0.7.0;
contract TestInternalTransaction {
address public toAddress = 0x01b347e1d44d8bf466C1762b7C6D2D2a60462ED4;
function () external payable {
address(uint160(toAddress)).send(msg.value);
}
functio... | These are the vulnerabilities found
1) unchecked-send with Medium impact |
pragma solidity ^0.4.24;
// Made By PinkCherry - <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="95fcfbe6f4fbfce1ece6fef4fbd5f2f8f4fcf9bbf6faf8">[email protected]</a> - https://blog.naver.com/soolmini
library SafeMath
{
function mul(uint256 a, uint256 b) internal pure returns (uint256... | No vulnerabilities found |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.