Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Audit mode: Entry Points #810

Open
wants to merge 6 commits into
base: dev
Choose a base branch
from
Open

Audit mode: Entry Points #810

wants to merge 6 commits into from

Conversation

alexroan
Copy link
Contributor

@alexroan alexroan commented Mar 6, 2025

  • New audit detector: Entry Points
    • All public and external entry points into the contracts in the workspace
  • Rename attack-surface to raw-calls
  • CLI behaviour change
    • aderyn --audit - runs all audit mode detectors
    • aderyn --audit <detector_name> runs specific audit mode detector. Example:
    • aderyn --audit entry-points

@alexroan alexroan force-pushed the audit-mode/entry-points branch from 9185ce1 to 4663638 Compare March 6, 2025 12:16
@alexroan alexroan marked this pull request as ready for review March 6, 2025 12:22
@TilakMaddy
Copy link
Contributor

TilakMaddy commented Mar 6, 2025

You might also want to check linearized base contracts ....
I mean like if an entrypoint is defined in Contract A, it's also an entry point to it's child contracts

Comment on lines +46 to +49
if let ASTNode::ContractDefinition(contract_definition) = context
.get_closest_ancestor(function_definition.id, NodeType::ContractDefinition)
.unwrap()
{
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use if let Ok(..) = {}

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or Some() ...I don't remember which one...but one of those

@alexroan alexroan added the priority-low Low priority issue label Mar 11, 2025
@alexroan alexroan linked an issue Mar 12, 2025 that may be closed by this pull request
@TilakMaddy
Copy link
Contributor

TilakMaddy commented Mar 30, 2025

I think we should draft this PR IMO. We'll focus on this at a later point in the roadmap..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
priority-low Low priority issue
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add entry points detector
2 participants