import ReactMarkdown from "react-markdown"; import { vulnerabilities } from "@/constants/guidelines"; import { Metadata } from "next"; export const metadata: Metadata = { title: "Vulnerabilities - SVRJS", }; const Vulnerabilities = () => { return (

SVR.JS Vulnerabilities

Some older versions of SVR.JS are vulnerable to cyberattacks. It's recommended to update your SVR.JS version to the newest one. If you find a security issue with SVR.JS, report it as soon as possible to vulnerability-reports[at]svrjs[dot]org. We'll mitigate that vulnerability if it is possible.

{vulnerabilities}
); }; export default Vulnerabilities;