mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
chore: improved style
close: https://github.com/koreanbots/v2-testing/issues/83
This commit is contained in:
parent
aebd4f77fd
commit
e548633fb0
@ -161,7 +161,7 @@ const Bots: NextPage<BotsProps> = ({ data, desc, date, user, theme, csrfToken })
|
||||
{
|
||||
checkBotFlag(data.flags, 'trusted') ?
|
||||
<Tooltip overlay='해당 봇은 디스코드측에서 인증된 봇입니다.'>
|
||||
<div>
|
||||
<div className='col-span-2'>
|
||||
<i className='fas fa-check text-discord-blurple' /> 디스코드 인증됨
|
||||
</div>
|
||||
</Tooltip>
|
||||
|
||||
@ -17,7 +17,7 @@ const Security: NextPage<SecurityProps> = ({ bugReports }) => {
|
||||
<h1 className='mb-3 text-3xl font-bold text-koreanbots-blue'>소개</h1>
|
||||
<p>한국 디스코드봇 리스트는 보안을 우선으로 생각합니다. 보안 버그 제보를 장려하기위해 보안 관련 취약점을 제보해주신 분께 소정의 보상을 지급해드립니다.</p>
|
||||
<h1 className='mt-6 mb-3 text-3xl font-bold text-koreanbots-blue'>규칙</h1>
|
||||
<ul className='list-disc'>
|
||||
<ul className='list-disc list-inside'>
|
||||
<li>자신이 소유하고 있는 계정과 봇에서만 테스트해야합니다. 절대로 다른 유저에게 영향을 주어서는 안됩니다.</li>
|
||||
<li>한국 디스코드봇 리스트의 서비스에 피해를 끼치는 활동을 해서는 안됩니다. 예) 무차별 대입, DDoS, DoS 등</li>
|
||||
<li>취약점을 찾기 위해 스캐너와 같은 자동화 도구는 사용하지 마세요.</li>
|
||||
@ -25,13 +25,13 @@ const Security: NextPage<SecurityProps> = ({ bugReports }) => {
|
||||
<li>한국 디스코드봇 리스트는 제보된 문제에 관한 모든 정보를 공개할 권한을 가집니다.</li>
|
||||
</ul>
|
||||
<h1 className='mt-6 mb-3 text-3xl font-bold text-koreanbots-blue'>범위</h1>
|
||||
<ul className='list-disc'>
|
||||
<ul className='list-disc list-inside'>
|
||||
{
|
||||
['koreanbots.dev 및 *.koreanbots.dev', 'kbots.link', '디스코드.한국'].map(el => <li key={el}>{el}</li>)
|
||||
}
|
||||
</ul>
|
||||
<h1 className='mt-6 mb-3 text-3xl font-bold text-koreanbots-blue'>취약점에 포함되지 않는 사항</h1>
|
||||
<ul className='list-disc'>
|
||||
<ul className='list-disc list-inside'>
|
||||
<li>이미 한국 디스코드봇 리스트 내부에서 해당 취약점을 인지하고 있는 경우</li>
|
||||
<li>Brute force 공격</li>
|
||||
<li>Clickjacking</li>
|
||||
@ -43,7 +43,7 @@ const Security: NextPage<SecurityProps> = ({ bugReports }) => {
|
||||
{
|
||||
bugReports.filter(el=>el).map(u => <div key={u.id} className='flex items-center mr-2.5'>
|
||||
<DiscordAvatar userID={u.id} size={128} className='rounded-full w-6 h-6 mr-1' />
|
||||
<span className='text-base text-gray-300'>{u.username}#{u.tag}</span>
|
||||
<span className='text-base dark:text-gray-300'>{u.username}#{u.tag}</span>
|
||||
</div>)
|
||||
}
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user