-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatures.html
More file actions
38 lines (38 loc) · 1.37 KB
/
features.html
File metadata and controls
38 lines (38 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DDoS탐지 SOC 메뉴얼 - 기능</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>DDoS탐지 SOC 메뉴얼</h1>
</header>
<nav>
<ul>
<li><a href="index.html">홈</a></li>
<li><a href="usage.html">사용법</a></li>
<li><a href="features.html">기능</a></li>
<li><a href="tech.html">기술</a></li>
<li><a href="contact.html">연락처</a></li>
</ul>
</nav>
<div class="container">
<section>
<h2>주요 기능</h2>
<ul>
<li><strong>실시간 로그 수집:</strong> Zeek를 이용해 네트워크 트래픽 캡처 후 Apache Kafka로 전송</li>
<li><strong>데이터 전처리 및 필터링:</strong> Logstash를 통해 로그 데이터 정제</li>
<li><strong>AI 기반 DDoS 탐지:</strong> TensorFlow 기반 딥러닝 모델로 공격 탐지</li>
<li><strong>결과 저장 및 시각화:</strong> Elasticsearch에 로그 저장 후 Kibana로 분석</li>
<li><strong>컨테이너화 배포:</strong> Docker를 활용해 각 구성 요소 배포</li>
</ul>
</section>
</div>
<footer>
<p>© 2025 이찬수. All rights reserved.</p>
</footer>
</body>
</html>