Quantum Audit Logo

Is Bnb Tiger Inu a Scam?

Honeypot, rug-pull and ownership checks

Is this your token? Publish your own audit on this page →

Bnb Tiger Inu BNBTIGER
0xac68…dc2d
BNB Chain Not verifiedLast checked 2d ago 1 audit on record
How is this score calculated? → Medium Risk
Executive SummaryAI Copilot

This audit covers the provided Solidity code snippets, primarily focusing on the `Ownable` contract and common libraries. The core token contract implementation (BNBTiger) was not provided, limiting the scope of the analysis to general patterns and the `Ownable` logic. Key findings include potential denial of service due to the `lock` mechanism in `Ownable` and a single point of failure for regaining ownership.

1 High1 Medium1 Low
i Our automated scanner reviewed Bnb Tiger Inu (BNBTIGER) on BNB Chain. 4 of 5 security checks passed — see the full breakdown below.
Volume 24h
$32.3K
Liquidity
$1.16M
Price
$0.
Age
4y
Top 10 Holders
69.3%

Security Findings

High

Denial of Service via Ownable.lock()

H-01The `lock()` function in the `Ownable` contract sets the `_owner` to `address(0)` for a specified duration. During this period, any function protected by the `onlyOwner` modifier will be inaccessible. If critical administrative functions (e.g., pausing transfers, adjusting fees, emergency withdrawals) rely on `onlyOwner` permissions, the protocol could experience a denial of service, preventing essential operations or responses to emergencies.
IssueThe `lock()` function in the `Ownable` contract sets the `_owner` to `address(0)` for a specified duration. During this period, any function protected by the `onlyOwner` modifier will be inaccessible. If critical administrative functions (e.g., pausing transfers, adjusting fees, emergency withdrawals) rely on `onlyOwner` permissions, the protocol could experience a denial of service, preventing essential operations or responses to emergencies.
FixAssess all owner-restricted functions in the main contract. If any are critical for ongoing operations or emergency responses, consider alternative access control mechanisms (e.g., time-locked multi-signature, governance vote) that remain functional during the lock period, or ensure the lock period is only applied when no critical owner actions are anticipated.
StatusUnresolved
Medium

Single Point of Failure for Ownership Recovery

M-01The `unlock()` function, which restores ownership after a `lock()` period, can only be called by the `_previousOwner` address. This creates a single point of failure. If the `_previousOwner` address is compromised, lost, or becomes inaccessible (e.g., if it's a contract that cannot initiate the call), the contract could remain permanently locked, or ownership could be transferred to an unauthorized entity after the lock period expires.
IssueThe `unlock()` function, which restores ownership after a `lock()` period, can only be called by the `_previousOwner` address. This creates a single point of failure. If the `_previousOwner` address is compromised, lost, or becomes inaccessible (e.g., if it's a contract that cannot initiate the call), the contract could remain permanently locked, or ownership could be transferred to an unauthorized entity after the lock period expires.
FixImplement a more robust ownership recovery mechanism. Consider using a multi-signature wallet for the `_previousOwner` or a time-locked recovery process that allows a community or a set of trusted parties to regain control, rather than relying on a single address.
StatusUnresolved
Low

Misleading Error Message in unlock()

L-01The `unlock()` function includes a revert message `"Contract is locked until 7 days"`. However, the actual lock duration (`_lockTime`) is dynamically set by the `time` parameter passed to the `lock()` function, not a fixed 7 days. This hardcoded message can be misleading to users regarding the actual remaining lock period.
IssueThe `unlock()` function includes a revert message `"Contract is locked until 7 days"`. However, the actual lock duration (`_lockTime`) is dynamically set by the `time` parameter passed to the `lock()` function, not a fixed 7 days. This hardcoded message can be misleading to users regarding the actual remaining lock period.
FixUpdate the error message to accurately reflect the dynamic nature of the lock time. For example, remove the specific '7 days' reference or dynamically include the actual unlock timestamp in the error message.
StatusUnresolved

Category Ratings

TechnicalLow9/10

The technical architecture leverages standard libraries like SafeMath and Address, which enhance code security by preventing common integer vulnerabilities. The `Ownable` contract implements a `lock` mechanism, which temporarily transfers ownership to the zero address, preventing any owner-only operations during the lock period. This design introduces a potential denial of service for critical administrative functions (7.3 Access Control, 7.8 Operations). Additionally, the `unlock` function relies on a single `_previousOwner` to regain control, creating a single point of failure (7.2 Code Security).

GovernanceHigh3/10

The governance model, as defined by the `Ownable` contract, is highly centralized, with a single owner controlling all administrative functions. The `lock` mechanism, while intended to temporarily decentralize control, effectively halts all owner-dependent operations, potentially impacting the protocol's economic stability if critical parameters need adjustment during the lock period (7.4 Economic, 7.5 Governance). The reliance on a single `_previousOwner` for unlocking also presents a significant governance risk if that address is compromised or becomes inaccessible.

UpgradesLow7/10

The provided contract is not designed with an upgrade mechanism (7.7 Upgrades), meaning its logic cannot be modified after deployment. This eliminates upgrade-related risks such as proxy implementation mismatches or insecure upgrade paths. However, it also means any discovered vulnerabilities or desired feature enhancements would require a complete redeployment.

Security Checklist

Contract VerifiedPass
Ownership RenouncedFail
No Mint FunctionPass
Liquidity LockedPass
Not a ProxyPass
HoneypotNoneBuy Tax0.1%Sell Tax0.1%

Holder Composition

63.1% in wallets6.2% in contracts
Effective Concentration65.6%

Share held by contracts — treasury, vesting, bridge or staking — is discounted against share held by wallets when the score is computed: a contract cannot decide to sell the way an anonymous holder can, though it can still be drained or voted to sell. Effective concentration is the figure the risk score is actually calculated from.

Liquidity Depth

Show 4 more pairsShow less

The 20 remaining pairs hold $122 between them and are not listed.

The risk score reads depth across every pair. The volume figure and the volume-to-liquidity ratio elsewhere on this page describe only the pair this audit analysed, so the two are not directly comparable.

LP Distribution

LP Burned99.9% · ≈ permanent lock
LP Locked99.9%

Key Addresses

Deployer
0x7444…513f
Unlocked LP Held By
0x0fc5…fe6b0xf864…bb410x00f2…3b7b0x4875…8bfa0x0ed9…97060xef05…bf610xf0ab…79970xda1b…24670xfed1…4d87

No privileged address appears among these holders: the unlocked liquidity sits with independent providers, not with the deployer.

What Raised This Score

  • Ownership NOT renounced — owner is an EOA (single private key)
  • Top-10 concentration > 50% (69.3% total → 65.6% effective; 63.1% in EOAs, 6.2% in contracts — heavy)
  • 1 High finding(s) from audit
  • 1 Medium finding(s) from audit
  • 1 Low finding(s) from audit

Each factor is an on-chain fact recorded at the time of this analysis. The score is computed from them by a deterministic function, so the same contract returns the same score for anyone who runs the audit. How scores are computed

Related Audits

Tutorial (TUT)Medium RiskARKMedium RiskmubarakMedium RiskAlaya Governance Token (AGT)Medium RiskCheese Head (CHEESE)Medium Risk牛来Medium Risk

Would You Like a More Detailed Audit of Bnb Tiger Inu?

Paste the contract address into our AI-powered scanner for a deeper real-time report — free, with every scoring factor shown.

Get Detailed Audit