From 6f1f387d49edcab24de2bb7e626d0a02e17ada05 Mon Sep 17 00:00:00 2001 From: HoJeong Im <39ghwjd@naver.com> Date: Wed, 4 Oct 2023 10:52:24 +0900 Subject: [PATCH] [ko]: add index.md for `web/glossary/dos_attack` (#15907) [add]: add index.md for web/glossary/dos_attack --- files/ko/glossary/dos_attack/index.md | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 files/ko/glossary/dos_attack/index.md diff --git a/files/ko/glossary/dos_attack/index.md b/files/ko/glossary/dos_attack/index.md new file mode 100644 index 00000000000000..bba7bd1bce1f33 --- /dev/null +++ b/files/ko/glossary/dos_attack/index.md @@ -0,0 +1,32 @@ +--- +title: DOS 공격 (DoS attack) +slug: Glossary/DOS_attack +l10n: + sourceCommit: ada5fa5ef15eadd44b549ecf906423b4a2092f34 +--- + +{{GlossarySidebar}} + +DoS (서비스 거부)는 서버에 요청이 너무 많이 들어와 {{glossary("server", "서버")}} 리소스의 합법적인 사용을 방해하는 네트워크 공격입니다. + +컴퓨터에는 계산 능력이나 메모리와 같은 제한된 리소스가 있습니다. 제한된 리소스들이 모두 소모되면, 프로그램이 정지되거나 충돌하여 사용할 수 없게 될 수 있습니다. DoS 공격은 이러한 리소스를 소모시키고 합법적인 사용자가 서버나 네트워크를 이용할 수 없게 만들거나, 최소한 서버 성능 하락을 가져오는 다양한 기술로 이루어져 있습니다. + +공격을 받는 컴퓨터의 계산 용량을 소진시키기 위해 다수의 서버를 사용하는 분산 서비스 거부 공격(Distributed Denial of Service, DDoS)도 있습니다. + +### DoS 공격의 종류 + +DoS 공격은 특정 종류의 공격이라기 보단, 하나의 범주에 가깝습니다. 다음은 DoS 공격 유형의 대략적인 목록입니다. + +- 대역폭 공격 +- 서비스 요청 폭주 +- SYN 플러딩 공격 +- ICMP 플러드 공격 +- peer-to-peer(P2P) 공격 +- 영구적인 DoS 공격 +- 애플리케이션 레벨 플러드 공격 + +## 같이 보기 + +- 위키백과의 [서비스 거부 공격](https://en.wikipedia.org/wiki/Denial-of-service_attack) +- [OWASP의 서비스 거부](https://owasp.org/www-community/attacks/Denial_of_Service) +- {{Glossary("Distributed Denial of Service","DDoS")}}