Sui Scanner Skill
SkillSecurityUse when the user wants to audit Sui Move smart contracts, scan Sui-specific patterns including object ownership, shared objects, or dynamic fields, review Sui DeFi protocols for object model security issues, or analyze Sui-specific transaction and consensus patterns.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Sui Scanner Skill skill
What this skill tells your AI
The instructions your AI receives, as published by 0x-shashi/web3-audit-skills in skills/sui-scanner/SKILL.md and read by ahel’s review.
Purpose
Specialized scanner for Sui Move smart contracts. Sui uses a unique object-centric model where state is organized as typed objects with ownership semantics, not as a global address-keyed storage. This fundamentally changes the security surface compared to both EVM and other Move chains (Aptos).
Sui vs Aptos: Key Differences
| Aspect | Sui Move | Aptos Move |
|---|---|---|
| State Model | Object-centric (owned/shared/immutable) | Global storage (move_to, borrow_global) |
| Parallelism | Owned objects processed in parallel, no consensus | All transactions sequenced |
| Transaction Input | Objects passed explicitly as params | Resources accessed via address |
| Upgrade | UpgradeCap object required | Module publisher authority |
| Init Pattern | One-Time Witness (init(otw: OTW, ctx: &mut TxContext)) | init_module(account: &signer) |
| Transfer | transfer::transfer / transfer::public_transfer | move_to(signer, resource) |
| Custom Types | Abilities: key, store, copy, drop | Same abilities, different usage |
Architecture Overview
┌─────────────────────────────────────────────────────────────┐
│ Sui Network │
│ │
│ ┌───────────────────┐ ┌───────────────────┐ │
│ │ Owned Objects │ │ Shared Objects │ │
│ │ (No consensus) │ │ (Consensus needed) │ │
│ │ │ │ │ │
│ │ ┌────────┐ │ │ ┌────────┐ │ │
│ │ │ Coin │ ←owner│ │ │ DEX │ ←shared│ │
│ │ └────────┘ │ │ │ Pool │ │ │
│ │ ┌────────┐ │ │ └────────┘ │ │
│ │ │ NFT │ ←owner│ │ ┌────────┐ │ │
│ │ └────────┘ │ │ │ Config │ ←shared│ │
│ └───────────────────┘ │ └────────┘ │ │
│ └───────────────────┘ │
│ ┌───────────────────┐ ┌───────────────────┐ │
│ │ Immutable Objects │ │ Wrapped Objects │ │
│ │ (Frozen forever) │ │ (Inside another) │ │
│ │ ┌────────┐ │ │ ┌────────────┐ │ │
│ │ │Package │ │ │ │ Parent Obj │ │ │
│ │ └────────┘ │ │ │ ┌───────┐ │ │ │
│ └───────────────────┘ │ │ │ Child │ │ │ │
│ │ │ └───────┘ │ │ │
│ │ └────────────┘ │ │
│ └───────────────────┘ │
└─────────────────────────────────────────────────────────────┘
Detection Capabilities
Critical Vulnerabilities
- Object ownership bypass: Shared objects accessed/modified without authorization checks
- UpgradeCap leak: Upgrade capability transferred to wrong address or left publicly accessible
- Dynamic field manipulation: Unbounded or attacker-controlled dynamic field growth
- Missing One-Time Witness: Module initialization can be replayed
High Vulnerabilities
- Missing
TxContext::sendercheck: Privileged operations without caller validation - Shared object contention DoS: Spamming shared objects to create sequencing bottleneck
- Transfer policy bypass: Using
transfer::transferinstead oftransfer::public_transferfor types withstore - Object ID prediction: Assuming object IDs are random when they're deterministic
Medium Vulnerabilities
- Object wrapping/unwrapping bugs: Wrapped objects not properly lifecycle-managed
- Clock dependency manipulation: Time-sensitive logic relying on
Clockshared object - Dynamic field key collision: Different logical fields mapped to same dynamic field key
- Frozen object mutability attempt: Logic that attempts to modify frozen objects
Real-World Sui Incidents
| Incident | Vulnerability | Impact |
|---|---|---|
| Various DEX implementations | Shared object contention | Performance degradation, elevated fees |
| NFT marketplace bugs | Transfer policy bypass | Royalty enforcement circumvented |
| Early DeFi protocols | Missing sender checks on admin functions | Unauthorized parameter changes |
| Bridge implementations | Object ownership not validated | Cross-chain message spoofing |
Resources
- Sui Patterns — Full vulnerability patterns with Move code
- Object Security — Deep dive on object ownership model
Workflows
- Sui Audit — Step-by-step Sui audit methodology
Related Scanners
- Move Scanner — Generic Move language patterns (shared with Aptos)
- Aptos Scanner — Aptos-specific global storage patterns
Error Code Reference
Sui-specific error codes and framework abort codes. Sui Move uses custom abort codes per module.
Sui Framework Errors
| Abort Code | Module | Meaning |
|---|---|---|
ENotOwner | object / various | Caller does not own the object |
EInvalidOwner | transfer | Invalid owner for transfer operation |
ESharedObjectOperationNotAllowed | transfer | Cannot perform this operation on shared objects |
EEmptyInventory | kiosk | Kiosk inventory is empty |
EItemNotFound | kiosk | Item not found in kiosk |
ENotEnough | balance | Insufficient balance for operation |
ENonZero | balance | Balance is not zero (expected to be destroyed) |
EDivisionByZero | math | Division by zero in math |
EOverflow | math | Arithmetic overflow |
EWrongInnerType | dynamic_field | Dynamic field type mismatch |
EFieldDoesNotExist | dynamic_field | Dynamic field not found on object |
EFieldAlreadyExists | dynamic_field | Dynamic field already exists |
Sui Coin / Token Errors
| Abort Code | Module | Meaning |
|---|---|---|
EBadWitness | coin | Invalid one-time witness type |
ENotTreasury | coin | Caller does not hold TreasuryCap |
EInsufficientBalance | coin | Coin value too low for operation |
ECoinTypeMismatch | pay | Coins of different types in merge/split |
Common DeFi Protocol Errors (Sui)
| Abort Code Pattern | Protocol Type | Meaning |
|---|---|---|
ESlippageExceeded | AMM/DEX | Price moved beyond slippage tolerance |
EInsufficientLiquidity | AMM/DEX | Pool has insufficient liquidity for swap |
EPoolNotFound | AMM/DEX | Trading pool does not exist |
ELockExpired / ELockNotExpired | Staking | Time-lock constraint violation |
EInvalidPrice / EStalePrice | Oracle | Price feed invalid or outdated |
Troubleshooting
| Issue | Likely Cause | Solution |
|---|---|---|
| Object ownership vulnerabilities missed | Scanner doesn't model Sui object ownership types | Load resources/object-security.md; distinguish owned/shared/immutable/wrapped objects |
| Shared object contention not flagged | Scanner treats shared objects like owned | Analyze all functions taking &mut shared objects for ordering/MEV attacks |
| Dynamic field injection not detected | Scanner doesn't trace dynamic field access | Audit all dynamic_field::add/remove/borrow for unauthorized field manipulation |
| Flash loan patterns missed | Scanner doesn't recognize Sui Hot Potato pattern | Check for structs without drop/store abilities returned from functions (must be consumed) |
| One-time witness (OTW) bypass not caught | Scanner doesn't verify OTW pattern | Verify module's OTW struct has drop only, uppercase name matches module, used in init() |
| Capability token leaks not detected | Scanner trusts Move type system for safety | Trace all Cap types — verify no public functions return or expose capabilities |
Signals
- GitHub stars
- 60
- Forks
- 10
- Last commit
- Feb 2026
Advanced
- Catalog kind
- skill
- Gateway key
sui-scanner- Source
- github.com/0x-shashi/web3-audit-skills