input stringlengths 32 47.6k | output stringclasses 657
values |
|---|---|
pragma solidity 0.4.18;
// File: contracts/ERC20Interface.sol
// https://github.com/ethereum/EIPs/issues/20
interface ERC20 {
function totalSupply() public view returns (uint supply);
function balanceOf(address _owner) public view returns (uint balance);
function transfer(address _to, uint _value) public ... | These are the vulnerabilities found
1) arbitrary-send with High impact
2) unchecked-transfer with High impact
3) uninitialized-local with Medium impact
4) write-after-write with Medium impact
5) weak-prng with High impact
6) unused-return with Medium impact |
pragma solidity ^0.4.24;
contract Crowdsale {
using SafeMath for uint256;
// The token being sold
ERC20Interface public token;
// Address where funds are collected
address public wallet;
// How many token units a buyer gets per wei
uint256 public rate;
// Amount of wei raised
uint256 public weiRa... | These are the vulnerabilities found
1) reentrancy-no-eth with Medium impact
2) controlled-array-length with High impact
3) tautology with Medium impact
4) arbitrary-send with High impact
5) unchecked-transfer with High impact
6) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-06-11
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
contract CryptoPunksMarket {
mapping(uint256 => address) public punkIndexToAddress;
}
/**
*
* @dev Proxy contract that retuns CryptoPunk owner via standard ERC-721 ownerOf() function
* Wr... | No vulnerabilities found |
pragma solidity ^0.4.18;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint2... | No vulnerabilities found |
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// 'Clutch Token 2' token contract
//
// Deployed to : 0x42CB95F6D40AfC1845169f6476BA89BcE14f7Cd5
// Symbol : CLUTCH2
// Name : Clutch Token 2
// Total supply: 150
// Decimals : 4
//
// Enjoy.
//
// ... | These are the vulnerabilities found
1) 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;
/**
@dev The Ownable constructor sets the original owner of the contr... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-06-25
*/
pragma solidity =0.5.16;
library SafeMath {
function add(uint x, uint y) internal pure returns (uint z) {
require((z = x + y) >= x, 'ds-math-add-overflow');
}
function sub(uint x, uint y) internal pure returns (uint z) {
re... | These are the vulnerabilities found
1) weak-prng with High impact
2) reentrancy-no-eth with Medium impact
3) incorrect-equality with Medium impact
4) uninitialized-local with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-10-23
*/
// 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 v... | These are the vulnerabilities found
1) unchecked-send with Medium impact
2) arbitrary-send with High impact
3) unchecked-lowlevel with Medium impact
4) incorrect-equality with Medium impact
5) reentrancy-eth with High impact
6) unused-return with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-05-12
*/
/**
*Submitted for verification at Etherscan.io on 2021-05-12
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
contract Owned {
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
address owner;
address ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2022-03-05
*/
/**
*Submitted for verification at Etherscan.io on 2022-02-26
*/
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.7.5;
library LowGasSafeMath {
/// @notice Returns x + y, reverts if sum overflows uint256
/// @param x The augen... | These are the vulnerabilities found
1) unchecked-transfer with High impact
2) divide-before-multiply with Medium impact
3) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'TAKE' token contract
//
// Deployed to : 0xdb94ea3f744Ef5f4b385938ec0c118A4b65d5EbF
// Symbol : PMT
// Name : TAKE
// Total supply: 10000000
// Decimals : 18
//
// Enjoy.
//
// (c) by Mor... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
* Investors relations:gaga
**/
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, where investors can make
* token purchases and the crowdsale will assign them tokens based
* on a token per ETH rat... | These are the vulnerabilities found
1) erc20-interface 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;
require... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.19;
//Created by Moozicore
contract DeadContract {} | No vulnerabilities found |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'IDRT' token contract
//
// Deployed to : 0xB1bC9A78222eC63f02308637462112326f4AFF06
// Symbol : IDRT
// Name : IDRT
// Total supply: 100000000
// Decimals : 18
//
// Enjoy.
//
// (c) by M... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-06-12
*/
pragma solidity ^0.5.0;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address who) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256)... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-06-25
*/
pragma solidity 0.5.16;
/* * * * * * * * * * * *
*
* Floki Swap
*
* Swap your doges,
* Shibas and how they
* are all called in for
* $FLOKIS - the
* Floki Swap
*
* Join us: @FlokiSwap
*
* * * * * * * * * * * *
*/
interface IERC20 {
/*... | 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.24;
/**
* https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(u... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.18;
/**
* @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;
/**
* @dev The Ownable constructor sets the origin... | No vulnerabilities found |
pragma solidity ^0.5.0;
// ----------------------------------------------------------------------------
// 'YFNITRO' 'YFNITRO' Smart Contract
//
// Symbol : YFNITRO
// Name : YFNITRO
// Total supply: 200,000
// Decimals : 8
//
//
//
// (c) BokkyPooBah / Bok Consulting Pty Ltd 2018. The MIT Licence.
// ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
// SPDX-License-Identifier: KEYS
pragma solidity ^0.8.12;
contract Keylionnaire
{
uint256 constant public count = 4444;
address immutable public owner = msg.sender;
uint256 public randomlyChosenNumber;
event WinningNumberSeed(uint256 seed);
function chooseWinners() public {
require (rand... | These are the vulnerabilities found
1) weak-prng with High impact
2) incorrect-equality with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-07-27
*/
// Sources flattened with hardhat v2.0.11 https://hardhat.org
// File @boringcrypto/boring-solidity/contracts/interfaces/[email protected]
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
interface IERC20 {
function totalSupply() external ... | These are the vulnerabilities found
1) reentrancy-no-eth with Medium impact
2) uninitialized-local with Medium impact
3) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-10-24
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, ui... | 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) uninitialized-local with Medium impact
5) weak-prng with High impact |
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 |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'Exilium' token contract
//
// Deployed to : 0x05E86E3820B56A2133Dc3Cd8eF46D96C34F9c247
// Symbol : EXI
// Name : Exilium Token
// Total supply: 100000000
// Decimals : 8
//
// Enjoy.
//
/... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-06-12
*/
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 2022-02-11
*/
//SPDX-License-Identifier: MIT
pragma solidity ^ 0.8.0;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
ret... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-03-22
*/
pragma solidity ^0.7.5;
interface Minereum {
function Payment ( ) payable external;
}
interface BazarSwap {
function getWeiPriceUnitTokenList (address seller, address tokenAddress) external view returns (uint);
}
contract MinereumLuckyDraw
{... | These are the vulnerabilities found
1) weak-prng with High impact
2) incorrect-equality with Medium impact |
pragma solidity ^0.6.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detai... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-12-27
*/
/*
Telegram
https://t.me/Shibagun
Website
https://shibashogun.com/
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns th... | These are the vulnerabilities found
1) reentrancy-no-eth with Medium impact
2) locked-ether with Medium impact |
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 |
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT
/**
* @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) shadowing-state with High impact
2) locked-ether with Medium impact |
pragma solidity 0.4.24;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
assert(c / a == b);
return c;
}
functio... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2020-11-02
*/
/**
*Submitted for verification at Etherscan.io on 2020-10-26
*/
pragma solidity ^0.5.11;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address who) external view returns (uint256);
function allow... | These are the vulnerabilities found
1) unchecked-transfer with High impact
2) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'Propersix' token contract
//
// Deployed to : 0x4e4a3a237235c7bd85d0c708318cf8e2744cadc2
// Symbol : PRO6
// Name : Propersix
// Total supply: 30,000,000,000
// Decimals : 6
//
//
// (c) ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2022-03-29
*/
/*
Everybody Loves Kwon - Made for the community by the community - No taxes
*/
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about... | These are the vulnerabilities found
1) shadowing-state with High impact
2) locked-ether with Medium impact |
pragma solidity ^0.4.13;
/// @title Ownable contract - base contract with an owner
contract Ownable {
address public owner;
function Ownable() {
owner = msg.sender;
}
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner)... | These are the vulnerabilities found
1) reentrancy-no-eth with Medium impact
2) locked-ether with Medium impact
3) controlled-array-length with High impact |
/**
*Submitted for verification at Etherscan.io on 2021-05-16
*/
// SPDX-License-Identifier: No License
pragma solidity 0.6.12;
// ----------------------------------------------------------------------------
// 'Frog' token contract
//
// Symbol : FC
// Name : Frog
// Total supply: 130 000 000 000
// Dec... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2022-03-30
*/
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) {
... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-07-02
*/
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 |
/**
*Submitted for verification at Etherscan.io on 2022-03-30
*/
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) {
... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2022-02-06
*/
// SPDX-License-Identifier: GNU LGPLv3
// File: UsePay/UsePAY/Storage/WrapAddresses.sol
pragma solidity >= 0.7.0;
contract WrapAddresses {
address internal iAddresses = 0xeD05ccB1f106D57bd18C6e3bD88dB70AC936de68; // UsePAY_eth_mainnet
mod... | These are the vulnerabilities found
1) reentrancy-eth with High impact
2) uninitialized-state with High impact
3) reentrancy-no-eth with Medium impact
4) locked-ether with Medium impact |
pragma solidity ^0.4.18;
contract SimpleMultiSig {
uint public nonce; // (only) mutable state
uint public threshold; // immutable state
mapping (address => bool) isOwner; // immutable state
address[] public ownersArr; // immutable state
function SimpleMultiSig(uint thresh... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'MIS' 'SIM Network'
//
// Symbol : MIS
// Name : SIM Network
// Total supply: 50,000,000,000.000000000000000000
// Decimals : 18
//
// The MIT Licence.
// -------------------------... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity 0.4.20;
// No deps verison.
/**
* @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 su... | These are the vulnerabilities found
1) unchecked-send with Medium impact
2) unchecked-lowlevel with Medium impact
3) arbitrary-send with High impact |
/**
*Submitted for verification at Etherscan.io on 2021-05-15
*/
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
//
// Symbol : NTFL
// Name : NTHEFASTLANE
// Total supply : 500000000000000000000000000000000
// Decimals : 18
// Owner Acco... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'Theophanes Token' token contract
//
// Deployed to : 0x5Bd9586E9073b075eA83dFfc3c7C2FC0D2c2e858
// Symbol : THEO
// Name : Theophanes Token
// Total supply: 100000000
// Decimals : 18
//... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-05-31
*/
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'Bunny.Farm' token contract
//
// Deployed to : 0xA3Fa2BAd92Ec87B85b5442604CeA394c9F778D5A
// Symbol : BUNNY
// Name : Bunny.Farm
//... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2020-09-06
*/
pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;
//SPDX-License-Identifier: UNLICENSED
contract Ownable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor (... | No vulnerabilities found |
pragma solidity ^0.4.21;
contract WeToken
{
mapping(address => uint256) public balanceOf;
function transfer(address newTokensHolder, uint256 tokensNumber)
public
returns(bool);
}
contract VestingContractWT
{
//structures
struct AccountData
{
uint original_balance;
uint limit_per_period;
... | These are the vulnerabilities found
1) reentrancy-no-eth with Medium impact
2) locked-ether with Medium impact
3) erc20-interface with Medium impact
4) controlled-array-length with High impact |
/**
*Submitted for verification at Etherscan.io on 2021-12-21
*/
pragma solidity ^0.5.0;
// ----------------------------------------------------------------------------
// 'FIXED' 'Example Fixed Supply Token' token contract
//
// Symbol : FIXED
// Name : Example Fixed Supply Token
// Total supply: 1,000,... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'THULYA' token contract
//
// Deployed to : 0x3f417ac701cc1ad2257a7f526570a970ac5a8b91
// Symbol : THLY
// Name : THULYA
// Total supply: 2000000000
// Decimals : 18
//
//
// -------------... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// 'Global Funeral Care SaleToken' token contract
//
// Deployed to : 0xa25100E9699598977676c198Bc679950E8A454BE
// Symbol : GFCS
// Name : Global Funeral Care SaleToken
// Total supply: 1000000... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// Sample token contract
//
// Symbol : DYFI
// Name : Decentralised yearn finance
// Total supply : 10000
// Decimals : 0
// Owner Account : 0x95Aa651eaf73352F53fF023a2C7A8295694a46Aa
// ----... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-06-16
*/
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// 'PCO' token contract
//
// Deployed to : 0xE66A948b2bc05e56c0c38f980BA758b822B1d5a3
// Symbol : PCO
// Name : paycargo.com
// Total ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-07-14
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of toke... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2022-04-08
*/
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
*/
pragma solidity ^0.5.17;
/*
PrestigeEthereum.com
*/
interface IERC20 {
function totalSupply() external view returns(uint);
function balanceOf(address account) external view returns(uint);
function transfer(address recipient, uint amoun... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2022-04-01
*/
/**
*Submitted for verification at Etherscan.io on 2022-04-01
*/
/**
*Submitted for verification at Arbiscan on 2022-04-01
*/
/**
*Submitted for verification at Arbiscan on 2022-03-24
*/
/**
*Submitted for verification at BscScan.com on 2022-03-2... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-04-26
*/
/*
* @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, sin... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2022-05-05
*/
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;
// ----------------------------------------------------------------------------
// 'TestTokenRCC1' token contract
//
// Deployed to : 0x5A86f0cafD4ef3ba4f0344C138afcC84bd1ED222
// Symbol : TRCC1
// Name : TestTokenRCC1
// Total supply: 12000000
// Decimals : 5
//
// Enjo... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
* This is just a community driven project, no rugs and community crowd funded presale.
* @Telegram: https://t.me/AntiPumpToken
*/
pragma solidity ^0.4.26;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address who) external view returns (uint256);
function a... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-10-25
*/
// 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 v... | These are the vulnerabilities found
1) unchecked-send with Medium impact
2) arbitrary-send with High impact
3) unchecked-lowlevel with Medium impact
4) incorrect-equality with Medium impact
5) reentrancy-eth with High impact
6) unused-return with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-06-09
*/
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'Myoshiba' token contract
//
// Deployed to : 0xC84Bdf8C3B5F0B7167065D0142242Fb21cBB22c8
// Symbol : MYOSHIB
// Name : Myoshiba
// T... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'Illuminati' token contract
//
// Deployed to : 0x66666e5B3985CAA9F5FCC101131Bca1ABb281e52
// Symbol : 666
// Name : The Mark
// Total supply: 666666666
// Decimals : 6
//
// Enjoy.
//
// ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract DABridgeProxy {
bytes32 private constant implementationPosition =
keccak256("implementation.contract.diamond-alpha-bridge:2022");
bytes32 private constant proxyOwnerPosition =
keccak256("owner.contract.diamond-alpha-bridge:2022");... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.18;
//------------------------------------------------------------
// 'SwingTrade' token contract
//
// Deployed to : 0x6Fd4cE0d9b5162a9B9A416e4af7d1FecE3b9e27c
// Symbol : WMB3
// Name : SwingTrade Token
// Total supply: 10000000000
// Decimals : 18
//
// Enjoy.
//
// (c) b... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-05-07
*/
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 |
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// 'BikesCoin' token contract
//
// Deployed to : 0x90bDaf66f0fF60ba1Fde03204df2d06658ddbF56
// Symbol : BIKES
// Name : BikesCoin
// Total supply: 7000000
// Decimals : 8
//
// Enjoy.
//
// ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'DSVCoin' token contract
//
// Deployed to : 0xc4b2B0B3770d9Ae4481197Ff8150891A2466f1a1
// Symbol : DSV
// Name : DSVCoin
// Total supply: 1000000000000
// Decimals : 18
//
// .
//
// (c) ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-11-06
*/
/**
*Submitted for verification at Etherscan.io on 2021-11-02
*/
// SPDX-License-Identifier: GNU GPLv3
pragma solidity >=0.8.5;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
abstract contract ERC20Interface {
/**
... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.5.0;
library SafeMath {
/**
* @dev Multiplies two unsigned integers, reverts on overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' ... | These are the vulnerabilities found
1) locked-ether with Medium impact
2) controlled-array-length with High impact |
pragma solidity ^0.4.24;
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 asserting 'a' not being zero, but the
// benefit is lost if 'b' is al... | These are the vulnerabilities found
1) uninitialized-state with High impact
2) weak-prng with High impact |
/**
*Submitted for verification at Etherscan.io on 2022-02-07
*/
pragma solidity 0.7.5;
// File: openzeppelin-solidity/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
/*
* @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 2021-10-29
*/
pragma solidity ^0.8.9;
pragma experimental ABIEncoderV2;
// SPDX-License-Identifier:MIT
interface IERC20 {
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals... | These are the vulnerabilities found
1) write-after-write with Medium 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.21;
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) weak-prng with High impact
2) reentrancy-no-eth with Medium impact
3) arbitrary-send with High impact
4) unchecked-transfer with High impact |
pragma solidity ^0.4.11;
contract Ownable {
address public owner;
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
mo... | These are the vulnerabilities found
1) unused-return with Medium impact
2) weak-prng with High impact
3) divide-before-multiply with Medium impact
4) reentrancy-no-eth with Medium impact |
pragma solidity 0.4.19;
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;
retur... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-05-27
*/
pragma solidity ^0.5.0;
// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
//
// ----------------------------------------------------------------------------
contract ERC20Interface {
... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-04-24
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
interface IERC20 {
function totalSupply() external view returns (uint);
function balanceOf(address account) external view returns (uint);
function transfer(address recipient, uint amou... | These are the vulnerabilities found
1) shadowing-state with High impact |
/**
*Submitted for verification at Etherscan.io on 2021-11-15
*/
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.3.2 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context... | No vulnerabilities found |
/**
*Submitted for verification at Etherscan.io on 2021-03-25
*/
// Sources flattened with hardhat v2.1.1 https://hardhat.org
// File @openzeppelin/contracts/math/[email protected]
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.11;
// About us http://ainst.pro
contract BingoLight
{
address developer;
function BingoLight()
{
developer = msg.sender;
}
function generateLuckyNumbers(uint256 targetBlock) constant returns(uint256[3] lotteryLuckyNumbers)
{
uint256 numbersCountNeeded = 3;
bytes... | These are the vulnerabilities found
1) weak-prng with High impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'ACEBlock' token contract
//
// Deployed to : 0x5448418a5FE17680E3B5C04FE47A85b58B2B8176
// Symbol : ACEB
// Name : ACEBlock
// Total supply: 50000000000000000000000000
// Decimals : 18
//... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-07-08
*/
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 ove... | No vulnerabilities found |
pragma solidity ^0.4.16;
contract owned {
address public owner;
function owned() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) onlyOwner public {
owner = newOwner;
}
}
i... | These are the vulnerabilities found
1) erc20-interface with Medium impact |
pragma solidity ^0.5.0;
/**
*"SPDX-License-Identifier: MIT"
*AntiRug Token Contract source code
*AntiRug is a community-governed deflationary token aimed at eliminating worry of rug pulls and educating on how to avoid them.
*/
interface IERC20 {
function totalSupply() external view returns (uint256);
funct... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-06-16
*/
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// Sample token contract
//
// Symbol : AFL
// Name : Affluent
// Total supply : 100000000000000000000
// Decimals : 8
// Own... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.18;
contract owned {
address public owner;
address public candidate;
function owned() payable internal {
owner = msg.sender;
}
modifier onlyOwner {
require(owner == msg.sender);
_;
}
function changeOwner(address _owner) onlyOwner public {
... | These are the vulnerabilities found
1) shadowing-abstract with Medium impact
2) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2022-04-24
*/
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.7;
/**
* @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.da... | These are the vulnerabilities found
1) shadowing-state with High impact
2) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// Safe maths
// ----------------------------------------------------------------------------
contract SafeMath {
function safeAdd(uint a, uint b) public pure returns (uint c) {
c = a + b;
requi... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.18;
// ----------------------------------------------------------------------------
// 'CEI' token contract
//
// Deployed to : 0x6601098A94D2A2FDc2eCfeAbeF6911fb4a3Eaf47
// Symbol : CEI
// Name : Clean Energy Intelligence
// Total supply: 500000000
// Decimals : 18
//
// E... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-07-01
*/
/**
*Submitted for verification at Etherscan.io on 2019-08-16
*/
pragma solidity ^0.5.0;
library SafeMath {
function add(uint a, uint b) internal pure returns (uint c) {
c = a + b;
require(c >= a);
}
function sub(u... | These are the vulnerabilities found
1) locked-ether with Medium impact |
pragma solidity ^0.4.23;
/**
* SCANETCHAIN is the first commercial dApp built on the NEM platform
* Developed for Blockchain Commercialization.
*/
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-06-14
*/
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// Sample token contract
//
// Symbol : REMT
// Name : REMOTE
// Total supply : 10000000000
// Decimals : 2
// Owner Account ... | These are the vulnerabilities found
1) locked-ether with Medium impact |
// File: contracts/Proxy.sol
pragma solidity 0.5.16;
contract Proxy {
// Code position in storage is keccak256("PROXIABLE") = "0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7"
// constructor(bytes memory constructData, address contractLogic) public {
constructor(address contractLogic) p... | These are the vulnerabilities found
1) locked-ether with Medium impact |
/**
*Submitted for verification at Etherscan.io on 2021-06-08
*/
// 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-05-31
*/
//SPDX-License-Identifier: MIT
// Tornado Cash proposal to fund a multisig with 5% of the vested TORN of the governance treasury
// and 5% of the funds vesting over the next 12 month. The multisig is owned by community members
// and its goal is to fu... | These are the vulnerabilities found
1) weak-prng with High impact
2) divide-before-multiply with Medium impact
3) unused-return with Medium impact
4) unchecked-transfer with High impact |
/**
*Submitted for verification at Etherscan.io on 2021-04-27
*/
/**
*/
pragma solidity ^0.4.24;
// ----------------------------------------------------------------------------
// Lib: Safe Math
// ----------------------------------------------------------------------------
contract SafeMath {
function safeAdd... | These are the vulnerabilities found
1) locked-ether with Medium impact |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.