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>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&apos;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>
</>
)
}