Skip to content

Commit

Permalink
security: list all the packages missing vuln metadata
Browse files Browse the repository at this point in the history
It's a bit of a wall of text right now, but we need to show them
somewhere so we can fix them.
  • Loading branch information
lazka committed Dec 14, 2024
1 parent 73aa5d6 commit e6e5bc7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/templates/security.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ <h6 class="card-subtitle mb-2 text-muted">{{ vulnerable|length }} packages with
{% endfor %}
</tbody>
</table>

<h6>{{ unknown|length }} packages are missing metadata for vulnerability scanning:</h6>
{% for s in unknown %}
<a href="{{ url_for('base', base_name=s.name) }}">{{ s.realname }}</a>
{{ ", " if not loop.last else '' }}
{% endfor %}

</div>
</div>

Expand Down

0 comments on commit e6e5bc7

Please sign in to comment.