-
-
Notifications
You must be signed in to change notification settings - Fork 304
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 1.8 KB
/
index.html
File metadata and controls
41 lines (39 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{% extends "base.html" %}
{% load widget_tweaks %}
{% block title %}
VulnerableCode Home
{% endblock %}
{% block content %}
<section class="section pt-2">
<div class="container">
<div class="columns is-centered mb-5 mt-2">
<div class="column is-full-tablet is-full-desktop">
{% include "package_search_box.html" %}
</div>
</div>
<div class="columns is-centered mb-5">
<div class="column is-full-tablet is-full-desktop">
{% include "vulnerability_search_box.html" %}
</div>
</div>
<div class="notification is-info is-light has-text-centered">
<p class="is-size-6 has-text-grey-dark has-text-centered mb-3">
<strong>VulnerableCode</strong> aggregates software
vulnerabilities from multiple public advisory sources
and presents their details along with their affected
packages and fixed-by packages identified by
Package URLs (PURLs).
</p>
<p class="is-size-5">
<strong>What's new in this Release:</strong>
<a href="{{ release_url }}" target="_blank" class="has-text-link is-underlined">
Check out latest updates here!
</a>
</p>
</div>
<div class="notification is-info is-light has-text-centered">
ATTENTION: We will be deprecating V1 and V2 API by 30th June 2026. V3 endpoint is live now. Please migrate to V3 API before the deprecation date. For more details, please refer to this <a href="https://aboutcode-org.github.io/www.aboutcode.org/blog/vcio-migration-announcement-aboutcode" target="_blank" class="has-text-link is-underlined">blog</a>.
</div>
</div>
</section>
{% endblock %}