UNIC Token Logo

UNIC Token

ALERT: unclassified scam

About UNIC

Listings

Not Found
Token 3 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 3 November 2022

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

UNIC.donateEthDust(uint256) (#1241-1243) sends eth to arbitrary user
Dangerous calls:
- address(_msgSender()).transfer(amount) (#1242)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link


Token is flagged by TokenSniffer due to presence of exploit in contract code


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

UsdtWrap.withdraw() (#347-356) ignores return value by usdt.transfer(address(token520),usdtBalance) (#350)
UNIC.swapAndLiquifyV1() (#1336-1352) ignores return value by IERC20(usdt).transfer(daoAddress,daoAmount) (#1347)
UNIC._splitlpToken() (#1397-1436) ignores return value by lpToken.transfer(user,dAmount) (#1428)
UNIC.swapAndLiquifyV3() (#1354-1369) ignores return value by IERC20(usdt).transfer(echoAddress,echoAmount) (#1365)
UsdtWrap.withdraw() (#347-356) ignores return value by token520.transfer(address(token520),token520Balance) (#354)
UNIC.donateDust(address,uint256) (#1236-1239) ignores return value by IERC20(addr).transfer(_msgSender(),amount) (#1238)
UNIC.swapAndLiquifyV3() (#1354-1369) ignores return value by IERC20(usdt).transfer(charityAddress,newBal.sub(echoAmount)) (#1366)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

UNIC._splitlpToken() (#1397-1436) uses a dangerous strict equality:
- totalAmount == 0 (#1419)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link


Combination 2: Unchecked transfer + 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.

Variable UNIC._tokenOwner (#1071) is too similar to UNIC.constructor().tokenOwner1 (#1121)
Variable UNIC._tokenOwner (#1071) is too similar to UNIC.constructor().tokenOwner2 (#1122)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#868) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#869)
Variable UNIC.constructor().tokenOwner1 (#1121) is too similar to UNIC.constructor().tokenOwner2 (#1122)
Prevent variables from having similar names.

Additional information: link

UNIC.slitherConstructorVariables() (#1066-1443) uses literals with too many digits:
- _destroyAddress = address(0x000000000000000000000000000000000000dEaD) (#1072)
UNIC.constructor() (#1117-1145) uses literals with too many digits:
- amount1 = 7000000 * 10 ** 18 (#1138)
UNIC.constructor() (#1117-1145) uses literals with too many digits:
- amount2 = 3000000 * 10 ** 18 (#1139)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

UNIC.charityAddress (#1075) should be constant
UNIC.echoAddress (#1073) should be constant
UNIC._destroyAddress (#1072) should be constant
UNIC.limitTime (#1092) should be constant
UNIC.lpDivThresAmount (#1090) should be constant
UNIC.daoAddress (#1074) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

ERC20.allowance(address,address).owner (#461) shadows:
- Ownable.owner() (#277-279) (function)
ERC20._approve(address,address,uint256).owner (#672) shadows:
- Ownable.owner() (#277-279) (function)
Rename the local variables that shadow another component.

Additional information: link

solc-0.8.13 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

UNIC.swapAndLiquifyV3() (#1354-1369) performs a multiplication on the result of a division:
-amountT = balanceOf(address(uniswapV2Pair)).div(10000) (#1356)
-canBuyAmount >= amountT.mul(100) (#1358)
UNIC._transfer(address,address,uint256) (#1249-1334) performs a multiplication on the result of a division:
-share_scope_0 = amount.div(1000) (#1296)
-amount = amount.sub(share_scope_0.mul(5)) (#1303)
UNIC.swapAndLiquifyV1() (#1336-1352) performs a multiplication on the result of a division:
-amountT = balanceOf(address(uniswapV2Pair)).div(10000) (#1338)
-canSellAmount >= amountT.mul(100) (#1340)
UNIC._transfer(address,address,uint256) (#1249-1334) performs a multiplication on the result of a division:
-share_scope_0 = amount.div(1000) (#1296)
-super._transfer(from,address(this),share_scope_0.mul(buyFee)) (#1301)
UNIC._transfer(address,address,uint256) (#1249-1334) performs a multiplication on the result of a division:
-share_scope_0 = amount.div(1000) (#1296)
-buyAmount = buyAmount.add(share_scope_0.mul(buyFee)) (#1302)
UNIC.swapAndLiquifyV3() (#1354-1369) performs a multiplication on the result of a division:
-amountT = balanceOf(address(uniswapV2Pair)).div(10000) (#1356)
-canBuyAmount = amountT.mul(100) (#1359)
UNIC.swapAndLiquifyV3() (#1354-1369) performs a multiplication on the result of a division:
-echoAmount = newBal.div(4).mul(3) (#1364)
UNIC.swapAndLiquifyV1() (#1336-1352) performs a multiplication on the result of a division:
-amountT = balanceOf(address(uniswapV2Pair)).div(10000) (#1338)
-canSellAmount = amountT.mul(100) (#1341)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in UNIC._transfer(address,address,uint256) (#1249-1334):
External calls:
- swapAndLiquifyV3() (#1267)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(RECV),block.timestamp) (#1378-1384)
- RECV.withdraw() (#1386)
- IERC20(usdt).transfer(echoAddress,echoAmount) (#1365)
- IERC20(usdt).transfer(charityAddress,newBal.sub(echoAmount)) (#1366)
- swapAndLiquifyV1() (#1268)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(RECV),block.timestamp) (#1378-1384)
- RECV.withdraw() (#1386)
- IERC20(usdt).transfer(daoAddress,daoAmount) (#1347)
State variables written after the call(s):
- super._transfer(from,address(this),share) (#1291)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#605-608)
- _balances[recipient] = _balances[recipient].add(amount) (#609)
- super._transfer(from,_destroyAddress,share_scope_0) (#1298)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#605-608)
- _balances[recipient] = _balances[recipient].add(amount) (#609)
- super._transfer(from,address(this),share_scope_0.mul(buyFee)) (#1301)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#605-608)
- _balances[recipient] = _balances[recipient].add(amount) (#609)
- super._transfer(from,to,amount) (#1310)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#605-608)
- _balances[recipient] = _balances[recipient].add(amount) (#609)
- addBot(to) (#1283)
- _isBot[account] = true (#1154)
- buyAmount = buyAmount.add(share_scope_0.mul(buyFee)) (#1302)
- sellAmount = sellAmount.add(share) (#1292)
- swapping = false (#1269)
Reentrancy in UNIC._transfer(address,address,uint256) (#1249-1334):
External calls:
- swapAndLiquifyV3() (#1267)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(RECV),block.timestamp) (#1378-1384)
- RECV.withdraw() (#1386)
- IERC20(usdt).transfer(echoAddress,echoAmount) (#1365)
- IERC20(usdt).transfer(charityAddress,newBal.sub(echoAmount)) (#1366)
- swapAndLiquifyV1() (#1268)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(RECV),block.timestamp) (#1378-1384)
- RECV.withdraw() (#1386)
- IERC20(usdt).transfer(daoAddress,daoAmount) (#1347)
- _splitlpToken() (#1326)
- lpToken.transfer(user,dAmount) (#1428)
State variables written after the call(s):
- isBuyProc = false (#1328)
- isSellProc = false (#1329)
- lastAddress = from (#1332)
- _splitlpToken() (#1326)
- lpDivTokenAmount = resDivAmount (#1435)
Reentrancy in UNIC._splitlpToken() (#1397-1436):
External calls:
- lpToken.transfer(user,dAmount) (#1428)
State variables written after the call(s):
- lpDivTokenAmount = resDivAmount (#1435)
- lpPos = (lpPos + num).mod(lpUser.length) (#1434)
Apply the check-effects-interactions pattern.

Additional information: link

UNIC.setDivLpHolderAmount(uint256) (#1161-1163) should emit an event for:
- divLpHolderAmount = amount (#1162)
UNIC.setOneDividendNum(uint256) (#1227-1230) should emit an event for:
- oneDividendNum = num (#1229)
UNIC.setlpDivThres(uint256) (#1149-1151) should emit an event for:
- lpTokenDivThres = _thres (#1150)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in UNIC.swapAndLiquifyV1() (#1336-1352):
External calls:
- swapTokensForUSDT(canSellAmount) (#1344)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(RECV),block.timestamp) (#1378-1384)
- RECV.withdraw() (#1386)
- IERC20(usdt).transfer(daoAddress,daoAmount) (#1347)
State variables written after the call(s):
- isSellProc = true (#1349)
- lpDivTokenAmount = lpDivTokenAmount.add(newBal.sub(daoAmount)) (#1348)
Reentrancy in UNIC.swapAndLiquifyV3() (#1354-1369):
External calls:
- swapTokensForUSDT(canBuyAmount) (#1362)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(RECV),block.timestamp) (#1378-1384)
- RECV.withdraw() (#1386)
- IERC20(usdt).transfer(echoAddress,echoAmount) (#1365)
- IERC20(usdt).transfer(charityAddress,newBal.sub(echoAmount)) (#1366)
State variables written after the call(s):
- isBuyProc = true (#1367)
Reentrancy in UNIC._transfer(address,address,uint256) (#1249-1334):
External calls:
- swapAndLiquifyV3() (#1267)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(RECV),block.timestamp) (#1378-1384)
- RECV.withdraw() (#1386)
- IERC20(usdt).transfer(echoAddress,echoAmount) (#1365)
- IERC20(usdt).transfer(charityAddress,newBal.sub(echoAmount)) (#1366)
- swapAndLiquifyV1() (#1268)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(RECV),block.timestamp) (#1378-1384)
- RECV.withdraw() (#1386)
- IERC20(usdt).transfer(daoAddress,daoAmount) (#1347)
State variables written after the call(s):
- swapAndLiquifyV1() (#1268)
- isSellProc = true (#1349)
- lastAddress = address(0) (#1321)
- lpDividendProc(addrs) (#1315)
- lpIndex[lpAddress] = lpUser.length (#1223)
- lpIndex[lpUser[lpUser.length - 1]] = lpIndex[lpAddress] (#1216)
- lpIndex[lpAddress] = 0 (#1217)
- lpDividendProc(addrs_scope_1) (#1322)
- lpIndex[lpAddress] = lpUser.length (#1223)
- lpIndex[lpUser[lpUser.length - 1]] = lpIndex[lpAddress] (#1216)
- lpIndex[lpAddress] = 0 (#1217)
- lpDividendProc(addrs) (#1315)
- lpPush[lpAddress] = false (#1214)
- lpPush[lpAddress] = true (#1222)
- lpDividendProc(addrs_scope_1) (#1322)
- lpPush[lpAddress] = false (#1214)
- lpPush[lpAddress] = true (#1222)
- lpDividendProc(addrs) (#1315)
- lpUser[lpIndex[lpAddress]] = lpUser[lpUser.length - 1] (#1215)
- lpUser.push(lpAddress) (#1224)
- lpUser.pop() (#1218)
- lpDividendProc(addrs_scope_1) (#1322)
- lpUser[lpIndex[lpAddress]] = lpUser[lpUser.length - 1] (#1215)
- lpUser.push(lpAddress) (#1224)
- lpUser.pop() (#1218)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in UNIC._transfer(address,address,uint256) (#1249-1334):
External calls:
- swapAndLiquifyV3() (#1267)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(RECV),block.timestamp) (#1378-1384)
- RECV.withdraw() (#1386)
- IERC20(usdt).transfer(echoAddress,echoAmount) (#1365)
- IERC20(usdt).transfer(charityAddress,newBal.sub(echoAmount)) (#1366)
- swapAndLiquifyV1() (#1268)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(RECV),block.timestamp) (#1378-1384)
- RECV.withdraw() (#1386)
- IERC20(usdt).transfer(daoAddress,daoAmount) (#1347)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#610)
- super._transfer(from,to,amount) (#1310)
- Transfer(sender,recipient,amount) (#610)
- super._transfer(from,address(this),share) (#1291)
- Transfer(sender,recipient,amount) (#610)
- super._transfer(from,_destroyAddress,share_scope_0) (#1298)
- Transfer(sender,recipient,amount) (#610)
- super._transfer(from,address(this),share_scope_0.mul(buyFee)) (#1301)
Apply the check-effects-interactions pattern.

Additional information: link

UNIC._transfer(address,address,uint256) (#1249-1334) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= startTime || to == address(uniswapV2Pair) || (! Address.isContract(from) && ! Address.isContract(to))) (#1273)
- (! ammPairs[from] && ! ammPairs[to]) || (block.timestamp < startTime && _isWhiteAddresses[from]) (#1278)
- require(bool)(block.timestamp >= startTime) (#1281)
- ammPairs[from] && block.timestamp <= startTime.add(9) (#1282)
- startTime.add(limitTime) >= block.timestamp (#1304)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#322-335) uses assembly
- INLINE ASM (#333)
Do not use evm assembly.

Additional information: link

ERC20._burn(address,uint256) (#643-654) is never used and should be removed
Context._msgData() (#9-13) is never used and should be removed
Remove unused functions.

Additional information: link

Function UNIC.WhiteAddress(address,bool) (#1174-1176) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#51) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#82) is not in mixedCase
Variable UNIC._isBot (#1078) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#49) is not in mixedCase
Parameter UNIC.setSwapAndLiquifyEnabled(bool)._enabled (#1232) is not in mixedCase
Variable UNIC.RECV (#1109) is not in mixedCase
Variable UNIC._tokenOwner (#1071) is not in mixedCase
Variable UNIC._exAddress (#1099) is not in mixedCase
Function IUniswapV2Router01.WETH() (#863) is not in mixedCase
Parameter UNIC.setlpDivThres(uint256)._thres (#1149) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

isExcludedFromFees(address) should be declared external:
- UNIC.isExcludedFromFees(address) (#1245-1247)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#501-516)
setOneDividendNum(uint256) should be declared external:
- UNIC.setOneDividendNum(uint256) (#1227-1230)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#301-304)
rescueToken(address,uint256) should be declared external:
- UNIC.rescueToken(address,uint256) (#1389-1395)
setSwapAndLiquifyEnabled(bool) should be declared external:
- UNIC.setSwapAndLiquifyEnabled(bool) (#1232-1234)
decimals() should be declared external:
- ERC20.decimals() (#416-418)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#557-571)
symbol() should be declared external:
- ERC20.symbol() (#399-401)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#448-456)
owner() should be declared external:
- Ownable.owner() (#277-279)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#530-541)
setlpDivThres(uint256) should be declared external:
- UNIC.setlpDivThres(uint256) (#1149-1151)
setDivLpHolderAmount(uint256) should be declared external:
- UNIC.setDivLpHolderAmount(uint256) (#1161-1163)
WhiteAddress(address,bool) should be declared external:
- UNIC.WhiteAddress(address,bool) (#1174-1176)
setExAddress(address) should be declared external:
- UNIC.setExAddress(address) (#1190-1198)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#310-317)
getlpsize() should be declared external:
- UNIC.getlpsize() (#1438-1440)
name() should be declared external:
- ERC20.name() (#391-393)
setAmmPairs(address,bool) should be declared external:
- UNIC.setAmmPairs(address,bool) (#1170-1172)
withdraw() should be declared external:
- UsdtWrap.withdraw() (#347-356)
totalSupply() should be declared external:
- ERC20.totalSupply() (#423-425)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#478-486)
clrExAddress(address) should be declared external:
- UNIC.clrExAddress(address) (#1200-1210)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#461-469)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for UNIC