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

Sink Analyser: Filter duplicate blockers #1369

Merged
merged 2 commits into from
Jan 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/fuzz_introspector/analyses/sinks_analyser.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,13 +453,19 @@ def _print_blocker_list(
if len(blocker_list) == 0:
return "N/A"

handled: List[str] = []

html = "<table><thead>"
html += "<th bgcolor='#282A36' >Blocker function</th>"
html += "<th bgcolor='#282A36'>Arguments type</th>"
html += "<th bgcolor='#282A36'>Return type</th>"
html += "<th bgcolor='#282A36'>Constants touched</th>"
html += "</thead><tbody>"
for blocker in blocker_list:
if "$lambda" in blocker.function_name or blocker.function_name in handled:
# Skip repeat blockers
continue
handled.append(blocker.function_name)
link, line = self._retrieve_function_link(blocker, proj_profile)
html += f"<tr><td style='max-width: 150px'>{blocker.function_name}<br/>"
html += f"in <a href='{link}'>"
Expand Down
Loading