* website: upgrade global-style dependencies * website: use hideOnMobile for alert banner * website: remove deprecated --site-max-width on community page * website: replace g-container with g-grid-container * website: backfill missing heading styles * website: remove duplicative not-found page folder * website: use new download page for vmware utility * website: replace fake vmware utility logo with plain text * website: bump to downloads-page pre-release to prove out * website: bump to product-downloads stable release * website: bump to patched content component * website: add comment on vmware download page config * chore(website): use new interface on vmware downloads page
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
import Head from 'next/head'
|
|
import s from './style.module.css'
|
|
|
|
export default function SecurityPage() {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Security</title>
|
|
<meta
|
|
name="description"
|
|
key="description"
|
|
content="Vagrant takes security very seriously. Please responsibly disclose any
|
|
security vulnerabilities found and we'll handle it quickly."
|
|
/>
|
|
</Head>
|
|
<main className={s.root}>
|
|
<h1 className="g-type-display-1">Security</h1>
|
|
<p>
|
|
We understand that many users place a high level of trust in HashiCorp
|
|
and the tools we build. We apply best practices and focus on security
|
|
to make sure we can maintain the trust of the community.
|
|
</p>
|
|
|
|
<p>
|
|
We deeply appreciate any effort to disclose vulnerabilities
|
|
responsibly.
|
|
</p>
|
|
|
|
<p>
|
|
If you would like to report a vulnerability, please see the{' '}
|
|
<a href="https://www.hashicorp.com/security">
|
|
HashiCorp security page
|
|
</a>
|
|
, which has the proper email to communicate with as well as our PGP
|
|
key.
|
|
</p>
|
|
|
|
<p>
|
|
If you aren't reporting a security sensitive vulnerability,
|
|
please open an issue on the standard{' '}
|
|
<a href="https://github.com/hashicorp/vagrant">GitHub</a> repository.
|
|
</p>
|
|
</main>
|
|
</>
|
|
)
|
|
}
|