-
Notifications
You must be signed in to change notification settings - Fork 74
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
base: dev
Are you sure you want to change the base?
Conversation
9185ce1
to
4663638
Compare
You might also want to check linearized base contracts .... |
if let ASTNode::ContractDefinition(contract_definition) = context | ||
.get_closest_ancestor(function_definition.id, NodeType::ContractDefinition) | ||
.unwrap() | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use if let Ok(..) = {}
There was a problem hiding this comment.
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
I think we should draft this PR IMO. We'll focus on this at a later point in the roadmap.. |
attack-surface
toraw-calls
aderyn --audit
- runs all audit mode detectorsaderyn --audit <detector_name>
runs specific audit mode detector. Example:aderyn --audit entry-points