Entry Point Analyzer
Systematically identify all state-changing entry points in a smart contract codebase to guide security audits.
When to Use
Use this skill when:
- Starting a smart contract security audit to map the attack surface
- Asked to find entry points, external functions, or audit flows
- Analyzing access control patterns across a codebase
- Identifying privileged operations and role-restricted functions
- Building an understanding of which functions can modify contract state
When NOT to Use
Do NOT use this skill for:
- Vulnerability detection (use audit-context-building or domain-specific-audits)
- Writing exploit POCs (use solidity-poc-builder)
- Code quality or gas optimization analysis
- Non-smart-contract codebases
- Analyzing read-only functions (this skill excludes them)
Scope: State-Changing Functions Only
This skill focuses exclusively on functions that can modify state. Excluded:
| Language |
Excluded Patterns |
| Solidity |
view, pure functions |
| Vyper |
@view, @pure functions |
| Solana |
Functions without mut account references |
| Move |
Non-entry public fun (module-callable only) |
| TON |
get methods (FunC), read-only receivers (Tact) |
| CosmWasm |
query entry point and its handlers |
Why exclude read-only functions? They cannot directly cause loss of funds or state corruption. While they may leak information, the primary audit focus is on functions that can change state.
Workflow
- Detect Language - Identify contract language(s) from file extensions and syntax
- Use Tooling (if available) - For Solidity, check if Slither is available and use it
- Locate Contracts - Find all contract/module files (apply directory filter if specified)
- Extract Entry Points - Parse each file for externally callable, state-changing functions
- Classify Access - Categorize each function by access level
- Generate Report - Output structured markdown report
Slither Integration (Solidity)
For Solidity codebases, Slither can automatically extract entry points. Before manual analysis:
1. Check if Slither is Available
which slither
2. If Slither is Detected, Run Entry Points Printer
slither . --print entry-points
This outputs a table of all state-changing entry points with:
- Contract name
- Function name
- Visibility
- Modifiers applied
3. Use Slither Output as Foundation
- Parse the Slither output table to populate your analysis
- Cross-reference with manual inspection for access control classification
- Slither may miss some patterns (callbacks, dynamic access control)—supplement with manual review
- If Slither fails (compilation errors, unsupported features), fall back to manual analysis
4. When Slither is NOT Available
If which slither returns nothing, proceed with manual analysis using the language-specific reference files.
Language Detection
| Extension |
Language |
Reference |
.sol |
Solidity |
{baseDir}/references/solidity.md |
.vy |
Vyper |
{baseDir}/references/vyper.md |
.rs + Cargo.toml with solana-program |
Solana (Rust) |
{baseDir}/references/solana.md |
.move + Move.toml with edition |
{baseDir}/references/move-sui.md |
|
.move + Move.toml with Aptos |
{baseDir}/references/move-aptos.md |
|
.fc, .func, .tact |
TON (FunC/Tact) |
{baseDir}/references/ton.md |
.rs + Cargo.toml with cosmwasm-std |
CosmWasm |
{baseDir}/references/cosmwasm.md |
Load the appropriate reference file(s) based on detected language before analysis.
Access Classification
Classify each state-changing entry point into one of these categories:
1. Public (Unrestricted)
Functions callable by anyone without restrictions.
2. Role-Restricted
Functions limited to specific roles. Common patterns to detect:
- Explicit role names:
admin, owner, governance, guardian, operator, manager, minter, pauser, keeper, relayer, lender, borrower
- Role-checking patterns:
onlyRole, hasRole, require(msg.sender == X), assert_owner, #[access_control]
- When role is ambiguous, flag as "Restricted (review required)" with the restriction pattern noted
3. Contract-Only (Internal Integration Points)
Functions callable only by other contracts, not by EOAs. Indicators:
- Callbacks:
onERC721Received, uniswapV3SwapCallback, flashLoanCallback
- Interface implementations with contract-caller checks
- Functions that revert if
tx.origin == msg.sender
- Cross-contract hooks
Output Format
Generate a markdown report with this structure:
# Entry Point Analysis: [Project Name]
**Analyzed**: [timestamp]
**Scope**: [directories analyzed or "full codebase"]
**Languages**: [detected languages]
**Focus**: State-changing functions only (view/pure excluded)
## Summary
| Category | Count |
|----------|-------|
| Public (Unrestricted) | X |
| Role-Restricted | X |
| Restricted (Review Required) | X |
| Contract-Only | X |
| **Total** | **X** |
---
## Public Entry Points (Unrestricted)
State-changing functions callable by anyone—prioritize for attack surface analysis.
| Function | File | Notes |
|----------|------|-------|
| `functionName(params)` | `path/to/file.sol:L42` | Brief note if relevant |
---
## Role-Restricted Entry Points
### Admin / Owner
| Function | File | Restriction |
|----------|------|-------------|
| `setFee(uint256)` | `Config.sol:L15` | `onlyOwner` |
### Governance
| Function | File | Restriction |
|----------|------|-------------|
### Guardian / Pauser
| Function | File | Restriction |
|----------|------|-------------|
### Other Roles
| Function | File | Restriction | Role |
|----------|------|-------------|------|
---
## Restricted (Review Required)
Functions with access control patterns that need manual verification.
| Function | File | Pattern | Why Review |
|----------|------|---------|------------|
| `execute(bytes)` | `Executor.sol:L88` | `require(trusted[msg.sender])` | Dynamic trust list |
---
## Contract-Only (Internal Integration Points)
Functions only callable by other contracts—useful for understanding trust boundaries.
| Function | File | Expected Caller |
|----------|------|-----------------|
| `onFlashLoan(...)` | `Vault.sol:L200` | Flash loan provider |
---
## Files Analyzed
- `path/to/file1.sol` (X state-changing entry points)
- `path/to/file2.sol` (X state-changing entry points)
Filtering
When user specifies a directory filter:
- Only analyze files within that path
- Note the filter in the report header
- Example: "Analyze only
src/core/" → scope = src/core/
Analysis Guidelines
- Be thorough: Don't skip files. Every state-changing externally callable function matters.
- Be conservative: When uncertain about access level, flag for review rather than miscategorize.
- Skip read-only: Exclude
view, pure, and equivalent read-only functions.
- Note inheritance: If a function's access control comes from a parent contract, note this.
- Track modifiers: List all access-related modifiers/decorators applied to each function.
- Identify patterns: Look for common patterns like:
- Initializer functions (often unrestricted on first call)
- Upgrade functions (high-privilege)
- Emergency/pause functions (guardian-level)
- Fee/parameter setters (admin-level)
- Token transfers and approvals (often public)
Common Role Patterns by Protocol Type
| Protocol Type |
Common Roles |
| DEX |
owner, feeManager, pairCreator |
| Lending |
admin, guardian, liquidator, oracle |
| Governance |
proposer, executor, canceller, timelock |
| NFT |
minter, admin, royaltyReceiver |
| Bridge |
relayer, guardian, validator, operator |
| Vault/Yield |
strategist, keeper, harvester, manager |
Rationalizations to Reject
When analyzing entry points, reject these shortcuts:
- "This function looks standard" → Still classify it; standard functions can have non-standard access control
- "The modifier name is clear" → Verify the modifier's actual implementation
- "This is obviously admin-only" → Trace the actual restriction; "obvious" assumptions miss subtle bypasses
- "I'll skip the callbacks" → Callbacks define trust boundaries; always include them
- "It doesn't modify much state" → Any state change can be exploited; include all non-view functions
Error Handling
If a file cannot be parsed:
- Note it in the report under "Analysis Warnings"
- Continue with remaining files
- Suggest manual review for unparsable files
1---2name: entry-point-analyzer3description: Analyzes smart contract codebases to identify state-changing entry points for security auditing. Detects externally callable functions that modify state, categorizes them by access level (public, admin, role-restricted, contract-only), and generates structured audit reports. Excludes view/pure/read-only functions. Use when auditing smart contracts (Solidity, Vyper, Solana/Rust, Move, TON, CosmWasm) or when asked to find entry points, audit flows, external functions, access control patterns, or privileged operations.4license: Unspecified5---6# Entry Point Analyzer78Systematically identify all **state-changing** entry points in a smart contract codebase to guide security audits.910## When to Use1112Use this skill when:13- Starting a smart contract security audit to map the attack surface14- Asked to find entry points, external functions, or audit flows15- Analyzing access control patterns across a codebase16- Identifying privileged operations and role-restricted functions17- Building an understanding of which functions can modify contract state1819## When NOT to Use2021Do NOT use this skill for:22- Vulnerability detection (use audit-context-building or domain-specific-audits)23- Writing exploit POCs (use solidity-poc-builder)24- Code quality or gas optimization analysis25- Non-smart-contract codebases26- Analyzing read-only functions (this skill excludes them)2728## Scope: State-Changing Functions Only2930This skill focuses exclusively on functions that can modify state. **Excluded:**3132| Language | Excluded Patterns |33|----------|-------------------|34| Solidity | `view`, `pure` functions |35| Vyper | `@view`, `@pure` functions |36| Solana | Functions without `mut` account references |37| Move | Non-entry `public fun` (module-callable only) |38| TON | `get` methods (FunC), read-only receivers (Tact) |39| CosmWasm | `query` entry point and its handlers |4041**Why exclude read-only functions?** They cannot directly cause loss of funds or state corruption. While they may leak information, the primary audit focus is on functions that can change state.4243## Workflow44451. **Detect Language** - Identify contract language(s) from file extensions and syntax462. **Use Tooling (if available)** - For Solidity, check if Slither is available and use it473. **Locate Contracts** - Find all contract/module files (apply directory filter if specified)484. **Extract Entry Points** - Parse each file for externally callable, state-changing functions495. **Classify Access** - Categorize each function by access level506. **Generate Report** - Output structured markdown report5152## Slither Integration (Solidity)5354For Solidity codebases, Slither can automatically extract entry points. Before manual analysis:5556### 1. Check if Slither is Available5758```bash59which slither60```6162### 2. If Slither is Detected, Run Entry Points Printer6364```bash65slither . --print entry-points66```6768This outputs a table of all state-changing entry points with:69- Contract name70- Function name71- Visibility72- Modifiers applied7374### 3. Use Slither Output as Foundation7576- Parse the Slither output table to populate your analysis77- Cross-reference with manual inspection for access control classification78- Slither may miss some patterns (callbacks, dynamic access control)—supplement with manual review79- If Slither fails (compilation errors, unsupported features), fall back to manual analysis8081### 4. When Slither is NOT Available8283If `which slither` returns nothing, proceed with manual analysis using the language-specific reference files.8485## Language Detection8687| Extension | Language | Reference |88|-----------|----------|-----------|89| `.sol` | Solidity | [{baseDir}/references/solidity.md]({baseDir}/references/solidity.md) |90| `.vy` | Vyper | [{baseDir}/references/vyper.md]({baseDir}/references/vyper.md) |91| `.rs` + `Cargo.toml` with `solana-program` | Solana (Rust) | [{baseDir}/references/solana.md]({baseDir}/references/solana.md) |92| `.move` + `Move.toml` with `edition` | [{baseDir}/references/move-sui.md]({baseDir}/references/move-sui.md) |93| `.move` + `Move.toml` with `Aptos` | [{baseDir}/references/move-aptos.md]({baseDir}/references/move-aptos.md) |94| `.fc`, `.func`, `.tact` | TON (FunC/Tact) | [{baseDir}/references/ton.md]({baseDir}/references/ton.md) |95| `.rs` + `Cargo.toml` with `cosmwasm-std` | CosmWasm | [{baseDir}/references/cosmwasm.md]({baseDir}/references/cosmwasm.md) |9697Load the appropriate reference file(s) based on detected language before analysis.9899## Access Classification100101Classify each state-changing entry point into one of these categories:102103### 1. Public (Unrestricted)104Functions callable by anyone without restrictions.105106### 2. Role-Restricted107Functions limited to specific roles. Common patterns to detect:108- Explicit role names: `admin`, `owner`, `governance`, `guardian`, `operator`, `manager`, `minter`, `pauser`, `keeper`, `relayer`, `lender`, `borrower`109- Role-checking patterns: `onlyRole`, `hasRole`, `require(msg.sender == X)`, `assert_owner`, `#[access_control]`110- When role is ambiguous, flag as **"Restricted (review required)"** with the restriction pattern noted111112### 3. Contract-Only (Internal Integration Points)113Functions callable only by other contracts, not by EOAs. Indicators:114- Callbacks: `onERC721Received`, `uniswapV3SwapCallback`, `flashLoanCallback`115- Interface implementations with contract-caller checks116- Functions that revert if `tx.origin == msg.sender`117- Cross-contract hooks118119## Output Format120121Generate a markdown report with this structure:122123```markdown124# Entry Point Analysis: [Project Name]125126**Analyzed**: [timestamp]127**Scope**: [directories analyzed or "full codebase"]128**Languages**: [detected languages]129**Focus**: State-changing functions only (view/pure excluded)130131## Summary132133| Category | Count |134|----------|-------|135| Public (Unrestricted) | X |136| Role-Restricted | X |137| Restricted (Review Required) | X |138| Contract-Only | X |139| **Total** | **X** |140141---142143## Public Entry Points (Unrestricted)144145State-changing functions callable by anyone—prioritize for attack surface analysis.146147| Function | File | Notes |148|----------|------|-------|149| `functionName(params)` | `path/to/file.sol:L42` | Brief note if relevant |150151---152153## Role-Restricted Entry Points154155### Admin / Owner156| Function | File | Restriction |157|----------|------|-------------|158| `setFee(uint256)` | `Config.sol:L15` | `onlyOwner` |159160### Governance161| Function | File | Restriction |162|----------|------|-------------|163164### Guardian / Pauser165| Function | File | Restriction |166|----------|------|-------------|167168### Other Roles169| Function | File | Restriction | Role |170|----------|------|-------------|------|171172---173174## Restricted (Review Required)175176Functions with access control patterns that need manual verification.177178| Function | File | Pattern | Why Review |179|----------|------|---------|------------|180| `execute(bytes)` | `Executor.sol:L88` | `require(trusted[msg.sender])` | Dynamic trust list |181182---183184## Contract-Only (Internal Integration Points)185186Functions only callable by other contracts—useful for understanding trust boundaries.187188| Function | File | Expected Caller |189|----------|------|-----------------|190| `onFlashLoan(...)` | `Vault.sol:L200` | Flash loan provider |191192---193194## Files Analyzed195196- `path/to/file1.sol` (X state-changing entry points)197- `path/to/file2.sol` (X state-changing entry points)198```199200## Filtering201202When user specifies a directory filter:203- Only analyze files within that path204- Note the filter in the report header205- Example: "Analyze only `src/core/`" → scope = `src/core/`206207## Analysis Guidelines2082091. **Be thorough**: Don't skip files. Every state-changing externally callable function matters.2102. **Be conservative**: When uncertain about access level, flag for review rather than miscategorize.2113. **Skip read-only**: Exclude `view`, `pure`, and equivalent read-only functions.2124. **Note inheritance**: If a function's access control comes from a parent contract, note this.2135. **Track modifiers**: List all access-related modifiers/decorators applied to each function.2146. **Identify patterns**: Look for common patterns like:215 - Initializer functions (often unrestricted on first call)216 - Upgrade functions (high-privilege)217 - Emergency/pause functions (guardian-level)218 - Fee/parameter setters (admin-level)219 - Token transfers and approvals (often public)220221## Common Role Patterns by Protocol Type222223| Protocol Type | Common Roles |224|---------------|--------------|225| DEX | `owner`, `feeManager`, `pairCreator` |226| Lending | `admin`, `guardian`, `liquidator`, `oracle` |227| Governance | `proposer`, `executor`, `canceller`, `timelock` |228| NFT | `minter`, `admin`, `royaltyReceiver` |229| Bridge | `relayer`, `guardian`, `validator`, `operator` |230| Vault/Yield | `strategist`, `keeper`, `harvester`, `manager` |231232## Rationalizations to Reject233234When analyzing entry points, reject these shortcuts:235- "This function looks standard" → Still classify it; standard functions can have non-standard access control236- "The modifier name is clear" → Verify the modifier's actual implementation237- "This is obviously admin-only" → Trace the actual restriction; "obvious" assumptions miss subtle bypasses238- "I'll skip the callbacks" → Callbacks define trust boundaries; always include them239- "It doesn't modify much state" → Any state change can be exploited; include all non-view functions240241## Error Handling242243If a file cannot be parsed:2441. Note it in the report under "Analysis Warnings"2452. Continue with remaining files2463. Suggest manual review for unparsable files