Sam Eagle Token Logo

Sam Eagle Token

ALERT: potential scam

About Sam Eagle

Listings

Token 22 months

The Sam Eagle is the revenue service for the Binance Smartchain Ecosystem

Social

Laser Scorebeta Last Audit: 23 June 2022

report
Token seems to be a scam (type: potential scam).

Anti-Scam

Links

token.addLiquidity(uint256,uint256) (#780-793) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in token._transfer(address,address,uint256) (#673-727):
External calls:
- swapAndLiquify(contractTokenBalance) (#701)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#769-775)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#701)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#704)
- finalAmount = takeFee(sender,recipient,amount) (#715)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#807)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#721)
- addBot(recipient) (#712)
- _isbclisted[recipient] = true (#662)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)

token._transfer(address,address,uint256) (#673-727) performs a multiplication on the result of a division:
-_sellReserveFeeAmount = amount.div(100).mul(_sellReserveFee) (#686)
Consider ordering multiplication before division.

Additional information: link

token.addLiquidity(uint256,uint256) (#780-793) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
Ensure that all the return values of the function calls are used.

Additional information: link

token.allowance(address,address).owner (#507) shadows:
- Ownable.owner() (#151-153) (function)
token._approve(address,address,uint256).owner (#530) shadows:
- Ownable.owner() (#151-153) (function)
Rename the local variables that shadow another component.

Additional information: link

token.setBuyTaxes(uint256,uint256,uint256) (#555-561) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#560)
token.setSellTaxes(uint256,uint256,uint256) (#563-569) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#568)
token.setDistributionSettings(uint256,uint256,uint256) (#571-577) should emit an event for:
- _liquidityShare = newLiquidityShare (#572)
- _teamShare = newTeamShare (#574)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#576)
token.setMaxTxAmount(uint256) (#579-581) should emit an event for:
- _maxTxAmount = maxTxAmount (#580)
token.setWalletLimit(uint256) (#591-593) should emit an event for:
- _walletMax = newLimit (#592)
token.setNumTokensBeforeSwap(uint256) (#595-597) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#596)
token.setKillBlock(uint256) (#665-667) should emit an event for:
- killblock = num (#666)
Emit an event for critical parameter changes.

Additional information: link

token.setMarketingWalletAddress(address).newAddress (#599) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#600)
token.setTeamWalletAddress(address).newAddress (#603) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#604)
Check that the address is not zero.

Additional information: link

Reentrancy in token.changeRouterVersion(address) (#624-641):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#632-633)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#640)
- isWalletLimitExempt[address(uniswapPair)] = true (#639)
- uniswapPair = newPairAddress (#636)
- uniswapV2Router = _uniswapV2Router (#637)
Reentrancy in token.constructor() (#455-483):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#459-460)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#463)
- _balances[_msgSender()] = _totalSupply (#481)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#470)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#468)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#469)
- isExcludedFromFee[owner()] = true (#465)
- isExcludedFromFee[address(this)] = true (#466)
- isMarketPair[address(uniswapPair)] = true (#479)
- isTxLimitExempt[owner()] = true (#476)
- isTxLimitExempt[address(this)] = true (#477)
- isWalletLimitExempt[owner()] = true (#472)
- isWalletLimitExempt[address(uniswapPair)] = true (#473)
- isWalletLimitExempt[address(this)] = true (#474)
- uniswapV2Router = _uniswapV2Router (#462)
Reentrancy in token.swapAndLiquify(uint256) (#736-758):
External calls:
- swapTokensForEth(tokensForSwap) (#741)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#769-775)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#757)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#751)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#754)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#757)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#757)
- _allowances[owner][spender] = amount (#534)
Reentrancy in token.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#769-775)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
- _allowances[owner][spender] = amount (#534)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in token._transfer(address,address,uint256) (#673-727):
External calls:
- swapAndLiquify(contractTokenBalance) (#701)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#769-775)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#701)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#808)
- finalAmount = takeFee(sender,recipient,amount) (#715)
- Transfer(sender,recipient,finalAmount) (#723)
Reentrancy in token.constructor() (#455-483):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#459-460)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#482)
Reentrancy in token.swapAndLiquify(uint256) (#736-758):
External calls:
- swapTokensForEth(tokensForSwap) (#741)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#769-775)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#757)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#751)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#754)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#757)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#535)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#757)
Reentrancy in token.swapTokensForEth(uint256) (#760-778):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#769-775)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#777)
Reentrancy in token.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#769-775)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#535)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#83-92) uses assembly
- INLINE ASM (#90)
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) uses assembly
- INLINE ASM (#128-131)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) is never used and should be removed
Address.functionCall(address,bytes) (#102-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#114-117) is never used and should be removed
Address.isContract(address) (#83-92) is never used and should be removed
Address.sendValue(address,uint256) (#94-100) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#71-73) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
Remove unused functions.

Additional information: link

token._totalSupply (#419) is set pre-construction with a non-constant function or state variable:
- 10000000000 * 10 ** _decimals
token._maxTxAmount (#420) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** _decimals
token._walletMax (#421) is set pre-construction with a non-constant function or state variable:
- 10000000000 * 10 ** _decimals
token.minimumTokensBeforeSwap (#422) is set pre-construction with a non-constant function or state variable:
- 10000 * 5 ** _decimals
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

solc-0.8.14 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#94-100):
- (success) = recipient.call{value: amount}() (#98)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#119-136):
- (success,returndata) = target.call{value: weiValue}(data) (#122)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#208) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#209) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#225) is not in mixedCase
Function IUniswapV2Router01.WETH() (#244) is not in mixedCase
Contract token (#377-815) is not in CapWords
Function token.Launch() (#538-541) is not in mixedCase
Parameter token.setSwapAndLiquifyEnabled(bool)._enabled (#607) is not in mixedCase
Variable token._balances (#392) is not in mixedCase
Variable token._buyLiquidityFee (#401) is not in mixedCase
Variable token._buyMarketingFee (#402) is not in mixedCase
Variable token._sellLiquidityFee (#405) is not in mixedCase
Variable token._sellMarketingFee (#406) is not in mixedCase
Variable token._maxTxAmount (#420) is not in mixedCase
Variable token._walletMax (#421) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#4-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in token._transfer(address,address,uint256) (#673-727):
External calls:
- swapAndLiquify(contractTokenBalance) (#701)
- recipient.transfer(amount) (#621)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#701)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#704)
- finalAmount = takeFee(sender,recipient,amount) (#715)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#807)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#721)
- addBot(recipient) (#712)
- _isbclisted[recipient] = true (#662)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#808)
- finalAmount = takeFee(sender,recipient,amount) (#715)
- Transfer(sender,recipient,finalAmount) (#723)
Reentrancy in token.swapAndLiquify(uint256) (#736-758):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#751)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#754)
- recipient.transfer(amount) (#621)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#751)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#754)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#757)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#757)
- _allowances[owner][spender] = amount (#534)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#535)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#757)
Reentrancy in token.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#785-792)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
- _allowances[owner][spender] = amount (#534)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#535)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#249) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#250)
Prevent variables from having similar names.

Additional information: link

token.slitherConstructorVariables() (#377-815) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#390)
token.slitherConstructorVariables() (#377-815) uses literals with too many digits:
- _totalSupply = 10000000000 * 10 ** _decimals (#419)
token.slitherConstructorVariables() (#377-815) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** _decimals (#420)
token.slitherConstructorVariables() (#377-815) uses literals with too many digits:
- _walletMax = 10000000000 * 10 ** _decimals (#421)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#141) is never used in token (#377-815)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#141) should be constant
token._decimals (#384) should be constant
token._name (#382) should be constant
token._sellReserveFee (#409) should be constant
token._symbol (#383) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#160-163)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#165-169)
getTime() should be declared external:
- Ownable.getTime() (#171-173)
name() should be declared external:
- token.name() (#487-489)
symbol() should be declared external:
- token.symbol() (#491-493)
decimals() should be declared external:
- token.decimals() (#495-497)
totalSupply() should be declared external:
- token.totalSupply() (#499-501)
allowance(address,address) should be declared external:
- token.allowance(address,address) (#507-509)
increaseAllowance(address,uint256) should be declared external:
- token.increaseAllowance(address,uint256) (#511-514)
decreaseAllowance(address,uint256) should be declared external:
- token.decreaseAllowance(address,uint256) (#516-519)
minimumTokensBeforeSwapAmount() should be declared external:
- token.minimumTokensBeforeSwapAmount() (#521-523)
approve(address,uint256) should be declared external:
- token.approve(address,uint256) (#525-528)
Launch() should be declared external:
- token.Launch() (#538-541)
setMarketPairStatus(address,bool) should be declared external:
- token.setMarketPairStatus(address,bool) (#543-545)
setIsExcludedFromFee(address,bool) should be declared external:
- token.setIsExcludedFromFee(address,bool) (#551-553)
setSwapAndLiquifyEnabled(bool) should be declared external:
- token.setSwapAndLiquifyEnabled(bool) (#607-610)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- token.setSwapAndLiquifyByLimitOnly(bool) (#612-614)
getCirculatingSupply() should be declared external:
- token.getCirculatingSupply() (#616-618)
changeRouterVersion(address) should be declared external:
- token.changeRouterVersion(address) (#624-641)
transfer(address,uint256) should be declared external:
- token.transfer(address,uint256) (#646-649)
transferFrom(address,address,uint256) should be declared external:
- token.transferFrom(address,address,uint256) (#651-655)
isbcList(address) should be declared external:
- token.isbcList(address) (#657-659)
setKillBlock(uint256) should be declared external:
- token.setKillBlock(uint256) (#665-667)
writebcList(address,bool) should be declared external:
- token.writebcList(address,bool) (#669-671)
Use the external attribute for functions never called from the contract.

Additional information: link

Contract ticker (Sam Eagle) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token is relatively young, but twitter if very old (probably it's fake).

Price for Sam Eagle

News for Sam Eagle