You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/website/pages/security/index.jsx

38 lines
1.3 KiB

import styles from './styles.module.css'
export default function SecurityPage() {
return (
<div className={styles.securityPage}>
<div className="g-container">
<div className={styles.longformWrapper}>
<h2>Security</h2>
<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/boundary">GitHub</a>{' '}
repository.
</p>
</div>
</div>
</div>
)
}