-
Notifications
You must be signed in to change notification settings - Fork 982
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
Regarding the issues during the slither detection process #2437
Comments
This is somewhat related to a previous question #2364 for background. Some detectors explore the control flow graph to gather information and visit all of their successors e.g.: slither/slither/detectors/statements/calls_in_loop.py Lines 28 to 55 in fdf54f6
It really depends on what you're trying to accomplish. Slither doesn't have a graph of data dependencies but you could think of each operation's result as creating an edge i.e. This recording explains some of how to write an analysis/detector |
When conducting detection and analysis of contracts, does Slither convert contract code into a graph structure for analysis?
The text was updated successfully, but these errors were encountered: