From 728acfc533f39784c77282292dd17405a4b7ddbc Mon Sep 17 00:00:00 2001 From: wonderlandpark Date: Fri, 7 May 2021 11:06:07 +0900 Subject: [PATCH] feat: added security page --- components/Footer.tsx | 9 +++++++-- pages/security.tsx | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 2 deletions(-) create mode 100644 pages/security.tsx diff --git a/components/Footer.tsx b/components/Footer.tsx index e6e56ea..9ef727d 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -40,6 +40,11 @@ const Footer = ({ theme, setTheme }: FooterProps): JSX.Element => { 개발자 +
  • + + 버그 바운티 + +
  • @@ -65,11 +70,11 @@ const Footer = ({ theme, setTheme }: FooterProps): JSX.Element => {

    커뮤니티

      -
    • + {/*
    • 파트너 -
    • + */}
    • 인증 diff --git a/pages/security.tsx b/pages/security.tsx new file mode 100644 index 0000000..6e291fb --- /dev/null +++ b/pages/security.tsx @@ -0,0 +1,43 @@ +import { NextPage } from 'next' +import dynamic from 'next/dynamic' + +const Docs = dynamic(() => import('@components/Docs')) +const Button = dynamic(() => import('@components/Button')) + +const Security: NextPage = () => { + return +

      소개

      +

      한국 디스코드봇 리스트는 보안을 우선으로 생각합니다. 보안 버그 제보를 장려하기위해 보안 관련 취약점을 제보해주신 분께 소정의 보상을 지급해드립니다.

      +

      규칙

      +
        +
      • 자신이 소유하고 있는 계정과 봇에서만 테스트해야합니다. 절대로 다른 유저에게 영향을 주어서는 안됩니다.
      • +
      • 한국 디스코드봇 리스트의 서비스에 피해를 끼치는 활동을 해서는 안됩니다. 예) 무차별 대입, DDoS, DoS 등
      • +
      • 취약점을 찾기 위해 스캐너와 같은 자동화 도구는 사용하지 마세요.
      • +
      • 발견한 문제에 대한 모든 정보는 보안팀이 완벽하게 조사하고 해결하기 전까지는 절대로 제3자에게 공개/공유해서는 안됩니다.
      • +
      • 한국 디스코드봇 리스트는 제보된 문제에 관한 모든 정보를 공개할 권한을 가집니다.
      • +
      +

      범위

      +
        + { + ['koreanbots.dev 및 *.koreanbots.dev', 'kbots.link', '디스코드.한국'].map(el =>
      • {el}
      • ) + } +
      +

      취약점에 포함되지 않는 사항

      +
        +
      • 이미 한국 디스코드봇 리스트 내부에서 해당 취약점을 인지하고 있는 경우
      • +
      • Brute force 공격
      • +
      • Clickjacking
      • +
      • DoS 공격
      • +
      • 본인에게만 영향이 미치는 취약점(Self XSS 등)
      • +
      +
      +

      취약점을 발견하셨나요?

      + +
      +
      +} + +export default Security \ No newline at end of file