-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathko.json
More file actions
4576 lines (4576 loc) · 309 KB
/
ko.json
File metadata and controls
4576 lines (4576 loc) · 309 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
" (reversed)": " (역순)",
" & ": " & ",
" Please contact Filigran to get your license at ": "라이선스를 받으려면 Filigran에 문의하세요",
"-": "-",
"- a random password will be generated for your user: you will need to change it to be able to log in via email and password. Simply use the forget password workflow.": "- 사용자에게 임의의 비밀번호가 생성되며, 이메일과 비밀번호를 통해 로그인하려면 비밀번호를 변경해야 합니다. 비밀번호 잊어버리기 워크플로우를 사용하면 됩니다.",
"- if your service account has been created originally as a service account (not transformed), please also change the email of your service account before/after transforming it to a user to ensure that the future user will be able to receive an email in the forgot password workflow.": "- 서비스 계정을 원래 서비스 계정으로 만든 경우(변환하지 않은 경우), 서비스 계정을 사용자로 변환하기 전/후에 서비스 계정의 이메일도 변경하여 향후 사용자가 비밀번호 분실 워크플로에서 이메일을 받을 수 있도록 하세요.",
"- password will be cleaned: you will not be able to log in to ui with this service account given there will be no password in Database for this service account.": "- 비밀번호가 삭제됩니다: 이 서비스 계정의 데이터베이스에 비밀번호가 없으므로 이 서비스 계정으로 UI에 로그인할 수 없습니다.",
"- Unsupported": "- 지원되지 않음",
"- you will not pertain to the main platform organisation anymore unless you have been specifically granted access to the organisation.": "- 조직에 대한 액세스 권한이 특별히 부여되지 않는 한 더 이상 기본 플랫폼 조직과 관련이 없습니다.",
"- your user will pertain to the main platform organisation in addition to any organisation that the current user is belonging to": "- 사용자는 현재 사용자가 소속된 조직 외에 기본 플랫폼 조직과도 관련됩니다",
"... successfully deleted": "{entity_type} 성공적으로 삭제되었습니다",
"... successfully duplicated": "{entity_type} 복제에 성공했습니다",
"[Preview] Ask Ariane": "[미리 보기] 아리안에게 물어보세요",
"{count} days": "{count} 일",
"{count} email address(es) extracted from pasted text": "붙여넣은 텍스트에서 추출한 {count} 이메일 주소",
"{entityType} `{entityName}` added to `{pirName}`": "{entityType} `{entityName}`이 `{pirName}`에 추가되었습니다",
"{entityType} `{entityName}` removed from `{pirName}`": "{entityType} `{entityName}`이 `{pirName}`에서 제거되었습니다",
"+ N override(s)": "+ {count} 재정의",
"0 - Less relevant": "0 - 관련성 낮음",
"0 equals no maximum": "0은 최대치 없음",
"1 day": "1 일",
"1 hour": "1시간",
"1 month": "1개월",
"12 hours": "12시간",
"15 minutes": "15분",
"24 hours": "24시간",
"24h": "24시간",
"2FA": "2단계 인증",
"2FA state": "2단계 인증 상태",
"30 days": "30일",
"30 minutes": "30분",
"5 minutes": "5분",
"6 hours": "6시간",
"6 months": "6 개월",
"A connector with this name already exists. Please choose a different name.": "이 이름을 가진 커넥터가 이미 존재합니다. 다른 이름을 선택해 주세요.",
"A field will be created with appropriate type based on the attribute.": "속성에 따라 적절한 유형으로 필드가 생성됩니다.",
"A FINTEL export will contain extra information like markings and creation date": "FINTEL 내보내기에는 표시 및 생성 날짜와 같은 추가 정보가 포함됩니다",
"A guided workflow that streamlines files import, selection of connectors and allows the creation of a workbench or draft for review before final import": "파일 가져오기, 커넥터 선택을 간소화하고 최종 가져오기 전에 검토를 위해 워크벤치 또는 초안을 만들 수 있는 안내식 워크플로",
"A new entity enters a selected PIR": "새 엔티티가 선택한 PIR에 들어갑니다",
"A non-exhaustive enumeration of infrastructure types": "인프라 유형에 대한 전체 열거가 아닙니다",
"A public dashboard is a snapshot...": "공개 대시보드는 특정 시점에서 개인 대시보드의 스냅샷입니다. 개인 대시보드를 수정해도 이미 생성된 공개 대시보드는 수정되지 않습니다.",
"a random password will be generated for your user: you will need to change it to be able to log in via email and password. Simply use the forget password workflow.": "사용자에게 임의의 비밀번호가 생성되며, 이메일과 비밀번호를 통해 로그인하려면 비밀번호를 변경해야 합니다. 비밀번호 잊어버리기 워크플로우를 사용하면 됩니다.",
"A widget has a @me filter enabled...": "위젯에 @me 필터가 활성화되어 있습니다. 이 대시보드를 공개 대시보드로 공유할 때 @me 필터는 대시보드를 공유하는 사람으로 대체됩니다. 대시보드에 표시되는 데이터에 영향을 줄 수 있습니다.",
"About": "정보",
"Abstract": "요약",
"Accent color": "강조 색상",
"Accept": "수락",
"Access administration": "액세스 관리",
"Access administration parameters": "액세스 관리 매개 변수",
"Access already granted": "이미 접근 권한 부여됨",
"Access Complexity (AC)": "액세스 복잡성(AC)",
"Access connectors": "액세스 커넥터",
"Access CSV feeds directly in your browser": "브라우저에서 CSV 피드를 직접 액세스",
"Access dashboards": "대시보드에 액세스",
"Access data sharing": "데이터 공유에 액세스",
"Access ingestion": "수집에 액세스",
"Access investigations": "조사 액세스",
"Access knowledge": "지식에 액세스",
"Access restrictions": "액세스 제한",
"Access right": "접근 권한",
"Access security activity": "보안 활동 액세스",
"Access stream directly in your browser": "브라우저에서 스트림을 직접 액세스",
"Access this scenario": "이 시나리오에 액세스",
"Access to admin functionalities": "관리자 기능에 액세스",
"Access to collaborative creation": "공동 작업 생성에 대한 액세스",
"Access to file indexing": "파일 인덱싱에 액세스",
"Access to support": "지원 액세스",
"Access to support data": "지원 데이터에 대한 액세스",
"Access Vector (AV)": "액세스 벡터(AV)",
"Accessible for": "접근 가능",
"accidental": "우발적/실수",
"Account expiration date": "계정 만료일",
"Account Expire Date": "계정 만료일",
"Account Status": "계정 상태",
"Account status": "계정 상태",
"Account type": "계정 유형",
"Action": "액션",
"Action type": "액션 유형",
"Actions": "액션",
"Activate": "활성화",
"Activate access restriction": "접근 제한 활성화",
"Activate/Deactivate default values": "기본값 활성화/비활성화",
"Activated": "활성화됨",
"Activating this rule will automatically generate new relationships on your existing and future data. Please be aware that enabling this rule may impact your platform's data and performance.": "이 규칙을 활성화하면 기존 데이터와 향후 데이터에 새로운 관계가 자동으로 생성됩니다. 이 규칙을 활성화하면 플랫폼의 데이터 및 성능에 영향을 미칠 수 있습니다.",
"Active": "활성",
"Active background tasks": "활성 백그라운드 작업",
"Activities": "활동",
"Activity": "활동",
"Activity & history": "활동 및 기록",
"Activity and history": "활동 및 기록",
"Activity evaluation": "활동 평가",
"Activity raw detail": "활동 원본 세부사항",
"ACTIVITY_MANAGER": "활동 관리자",
"Add": "추가",
"ADD": "ADD",
"Add a file": "파일 추가",
"Add a group": "그룹 추가",
"Add a height": "높이 추가",
"Add a live trigger": "라이브 트리거 추가",
"Add a location": "위치 추가",
"Add a max confidence level for a user": "사용자에 대한 최대 신뢰 수준 추가",
"Add a new branch at the same level from the parent output": "부모 출력에서 같은 레벨에 새 브랜치를 추가합니다",
"Add a new member": "새 멤버 추가",
"Add a reaction point": "반응 지점 추가",
"Add a regular digest": "정기 요약 추가",
"Add a specific max confidence level for an entity type": "엔터티 유형에 대한 특정 최대 신뢰 수준 추가",
"Add a task to this container": "이 컨테이너에 작업 추가",
"Add a user": "사용자 추가",
"Add a weight": "무게 추가",
"Add a widget": "위젯 추가",
"Add additional entities first to define relationships": "관계를 정의하려면 먼저 엔티티를 추가하세요",
"Add Additional Entity": "추가 엔티티 추가",
"Add additional entity": "추가 엔티티 추가",
"Add an action": "액션 추가",
"Add an entity to this container": "이 컨테이너에 엔터티 추가",
"Add an entity to this investigation": "이 조사에 엔터티 추가",
"Add an organization": "조직 추가",
"Add and complete": "추가 및 완료",
"Add attack patterns": "공격 패턴 추가",
"Add attributes of the instance": "{type}의 속성을 추가합니다",
"Add citizenship": "시민권 추가",
"Add components": "구성 요소 추가",
"Add context": "컨텍스트 추가",
"Add country": "국가 추가",
"Add country of residence": "거주 국가 추가",
"Add courses of action": "조치 과정 추가",
"Add coverage metric": "커버리지 메트릭 추가",
"Add data components": "데이터 구성 요소 추가",
"Add data in content": "콘텐츠에 데이터 추가",
"Add data source": "데이터 소스 추가",
"Add data sources": "데이터 소스 추가",
"Add entities": "엔터티 추가",
"Add Entity": "엔티티 추가",
"Add entity": "엔티티 추가",
"Add external references": "외부 참조 추가",
"Add field": "필드 추가",
"Add Field": "필드 추가",
"Add Field to": "다음에 필드 추가",
"Add Field to Main Entity": "주 엔티티에 필드 추가",
"Add filter": "필터 추가",
"Add filtering": "필터링 추가",
"Add generated and existing indicators in the container": "컨테이너에 생성된 & 기존 지표 추가",
"Add generated and existing observables in the container": "컨테이너에 생성된 & 기존 지표 추가",
"Add header": "헤더 추가",
"Add in container": "컨테이너에 추가",
"Add indicators": "지표 추가",
"Add individual": "개인 추가",
"Add locations": "위치 추가",
"Add more items...": "항목 추가하기...",
"Add nationality": "국적 추가",
"Add new assignees": "새로운 담당자를 추가",
"Add new labels": "새 라벨 추가",
"Add new participants": "새로운 참가자를 추가",
"Add new specific access": "새 특정 접근 추가",
"Add notes": "노트 추가",
"Add observable": "관찰 가능 항목 추가",
"Add observables": "관찰 가능 항목 추가",
"Add option": "옵션 추가",
"Add persona": "페르소나 추가",
"Add query attribute": "쿼리 속성 추가",
"Add related data": "관련 데이터 추가",
"Add related entity": "관련 엔터티 추가",
"Add Relationship": "관계 추가",
"Add relationship": "관계 추가",
"Add Security coverage": "보안 적용 범위 추가",
"Add security platforms": "보안 플랫폼 추가",
"Add software": "소프트웨어 추가",
"Add sub attack patterns": "하위 공격 패턴 추가",
"Add subnarratives": "하위 내러티브 추가",
"Add subsectors": "하위 부문 추가",
"Add tag": "태그 추가",
"Add Tick": "틱 추가",
"Add to a container": "컨테이너에 추가",
"Add to container": "컨테이너에 추가",
"Add vulnerabilities": "취약점 추가",
"Added": "추가됨",
"added a note": "노트 추가됨",
"Additional Entities": "추가 엔티티",
"Additional Entity": "추가 엔티티",
"Additional Fields": "추가 필드",
"Additional Fields (will be applied to all created entities)": "추가 필드(생성된 모든 엔티티에 적용됨)",
"Additional fields (will be applied to all created entities)": "추가 필드(생성된 모든 엔티티에 적용됨)",
"Additional mandatory attributes": "추가 필수 속성",
"Additional Names": "추가 이름",
"Admin": "관리자",
"Administrative areas": "행정 구역",
"Administrative Areas | Locations": "관리 구역 | 위치",
"advanced": "고급",
"Advanced options": "고급 옵션",
"Advanced search": "고급 검색",
"Adversary": "Adversary",
"Affected software": "영향을 받은 소프트웨어",
"Affecting this sector": "이 부문에 영향을 미치는",
"Agentic AI (Ariane Assistant)": "에이전트 AI(아리안 어시스턴트)",
"Agentic AI capabilities": "에이전트 AI 기능",
"AI Insights": "AI 인사이트",
"AI is not enabled": "AI가 활성화되지 않았습니다",
"AI Powered": "AI 지원",
"AI Summary": "AI 요약",
"alert_GROUP_WITH_NULL_CONFIDENCE_LEVEL": "OpenCTI 6.0부터 그룹과 사용자에게 최대 신뢰 수준이 추가됩니다. 이는 플랫폼 관리자에게 가져온 데이터의 영향을 더 많이 제어할 수 있도록 하며 데이터의 원치 않는 업데이트를 방지합니다. 자세한 내용은 {link_blogpost}을(를) 참조하십시오.\n \n이 플랫폼에서는 일부 그룹의 '최대 신뢰 수준'이 현재 정의되지 않았습니다. 그들의 멤버는 플랫폼의 버전 6.X에서 데이터를 생성할 수 없습니다. 이를 방지하려면 모든 그룹에 최대 신뢰 수준이 설정되어 있는지 확인하십시오. 자세한 내용은 {link_blogpost}을 참조하십시오. 커넥터, 피드 및 스트림과 연결된 사용자에 특히 주의해야 합니다. 필요 시 개별 신뢰 수준을 설정하여 그룹 신뢰 수준을 재정의할 수 있습니다. 도움이 필요하면 {link_slack}에 참여하십시오.",
"Alerting": "알림",
"Alerting | Activity | Settings": "알림 | 활동 | 설정",
"Alias": "별명",
"Aliases": "별명",
"Aliases separated by commas": "별명을 쉼표로 구분",
"All": "모두",
"All add or remove actions done on the graph after the last expansion will be lost.": "마지막 확장 후 그래프에서 수행된 모든 추가 또는 제거 작업이 손실됩니다.",
"All confidence levels": "모든 신뢰 수준",
"All entities": "모든 엔터티",
"All investigations and dashboard where the user is the only admin, will be deleted.": "사용자가 유일한 관리자 인 모든 조사 및 대시보드는 삭제됩니다.",
"All labels": "모든 레이블",
"All notifications, triggers and digests associated with the user will be deleted.": "사용자와 연결된 모든 알림, 트리거 및 요약이 삭제됩니다.",
"All observables": "모든 관찰 가능 항목",
"All other filters": "다른 모든 필터",
"All reports": "모든 보고서",
"All rule targets": "모든 규칙 대상",
"All the results may not be displayed for these filter values, read documentation for more information.": "이러한 필터 값에 대해 모든 결과가 표시되지 않을 수 있습니다. 자세한 내용은 {link}을 참조하세요",
"All the results may not be displayed since the Dynamic filter targets too many entities.": "동적 필터가 너무 많은 엔티티를 대상으로 하기 때문에 모든 결과가 표시되지 않을 수 있습니다.",
"All threats": "모든 위협",
"All types of relationship": "모든 관계 유형",
"All types of target": "모든 대상 유형",
"All workbenches": "모든 워크벤치",
"All years": "모든 연도",
"Allow modification of sensitive configuration": "민감한 구성의 수정 허용",
"Allow multiple files": "여러 파일 허용",
"Allow multiple instances": "여러 인스턴스 허용",
"Allow multiple instances of main entity": "주 엔터티의 여러 인스턴스 허용",
"allow to deploy in one-click threat management resources such as feeds, dashboards, playbooks, etc.": "피드, 대시보드, 플레이북 등과 같은 원클릭 위협 관리 리소스에 배포할 수 있습니다.",
"Allow users to uncheck draft mode": "사용자가 초안 모드를 선택 취소할 수 있도록 허용",
"Allow users to view users of other organizations": "사용자가 다른 조직의 사용자를 볼 수 있도록 허용",
"Allowed marking definitions": "허용된 마킹 정의",
"Allowed markings": "허용된 마킹",
"Already in plat.": "이미 플랫폼에 있음",
"Already registered in XTM Hub": "이미 XTM Hub에 등록되어 있습니다",
"Also delete these elements": "이 요소들도 삭제",
"Also include first neighbours": "첫 번째 이웃도 포함",
"An analysis connector needs to be available to ask for a mapping suggestion.": "매핑 제안을 요청하려면 분석 커넥터를 사용할 수 있어야 합니다.",
"An analysis is ongoing, waiting for results.": "분석이 진행 중이며 결과를 기다리는 중입니다.",
"An element will persist in the trash for a fixed period of time before being permanently deleted, according to the garbage collection manager settings.": "요소는 휴지통 관리자 설정에 따라 영구 삭제되기 전에 일정 기간 동안 휴지통에 남아있게 됩니다.",
"An entity from a selected PIR has been updated": "선택한 PIR의 엔티티가 업데이트되었습니다",
"An entity has left a selected PIR": "엔티티가 선택한 PIR을 떠났습니다",
"An entity is linked to an entity from a selected PIR": "엔티티가 선택한 PIR의 엔티티에 연결됩니다",
"An enumeration of security platform type": "보안 플랫폼 유형의 열거",
"An enumeration of Windows service start types": "Windows 서비스 시작 유형 열거",
"An enumeration of Windows service statuses": "Windows 서비스 상태의 열거형",
"An enumeration of Windows service types": "Windows 서비스 유형 열거",
"An error occurred while creating the connector": "커넥터를 만드는 동안 오류가 발생했습니다",
"An error occurred while importing Synchronizer configuration.": "동기화 프로그램 구성을 가져오는 동안 오류가 발생했습니다.",
"An error occurred while importing Taxii Feed configuration.": "Taxii 피드 구성을 가져오는 동안 오류가 발생했습니다.",
"An error occurred while retrieving data for this widget:": "이 위젯의 데이터를 검색하는 동안 오류가 발생했습니다:",
"An error occurred while updating the connector": "커넥터를 업데이트하는 동안 오류가 발생했습니다",
"An instance trigger on an entity X notifies the following events: update/deletion of X, creation/deletion of a relationship from/to X, creation/deletion of an entity that has X in its refs (for instance contains X, is shared with X, is created by X...), adding/removing X in the ref of an entity.": "엔터티 X에 대한 인스턴스 트리거는 다음 이벤트를 알립니다: X의 업데이트/삭제, X로부터/로의 관계 생성/삭제, 참조에 X를 포함하는 엔터티의 생성/삭제 (예: X를 포함함, X와 공유됨, X에 의해 생성됨...), 엔터티의 참조에 X 추가/제거.",
"An open vocabulary of User Account types": "사용자 계정 유형에 대한 개방형 어휘",
"An unknown error has occurred! Please try again later.": "알 수 없는 오류가 발생했습니다! 나중에 다시 시도하십시오.",
"An unknown error has occurred! Please try again later.": "알 수 없는 오류가 발생했습니다! 나중에 다시 시도하십시오.",
"An unknown error occurred. Please provide a": "알 수 없는 오류가 발생했습니다. 제공하십시오",
"An unknown error occurred. Please provide a support package to your administrator or OpenCTI maintainers": "알 수 없는 오류가 발생했습니다. 관리자 또는 OpenCTI 유지보수자에게 {link_support_package}을 제공하십시오.",
"Analyses": "분석",
"Analysis": "분석",
"Analysis definition version": "분석 정의 버전",
"Analysis ended": "분석 종료",
"Analysis engine version": "분석 엔진 버전",
"Analysis started": "분석 시작",
"Analysis_definition_version": "분석_정의_버전",
"Analysis_ended": "분석_종료",
"Analysis_engine_version": "분석_엔진_버전",
"Analysis_started": "분석_시작",
"Analyst Workbench | Import | Data": "분석가 워크벤치 | 가져오기 | 데이터",
"Analyst workbenches": "분석가 작업대",
"Analytics": "분석",
"AND": "그리고",
"and ... more": "외 {count}개",
"And many more features...": "그리고 더 많은 기능...",
"API access": "API 접근",
"API key": "API 키",
"application/json": "JSON",
"application/pdf": "PDF",
"application/vnd.ms-excel": "XLS",
"application/vnd.oasis.opendocument.text": "ODT",
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": "XLSX",
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": "DOCX",
"Applied decay rule": "적용된 감쇠 규칙",
"Apply": "적용",
"Apply a new case template": "새 케이스 템플릿 적용",
"Apply case templates": "케이스 템플릿 적용",
"Apply filter to managed deployments only": "관리형 배포에만 필터 적용",
"Apply marking definitions": "마킹 정의 적용",
"Apply on": "적용 대상",
"Apply on indicator observable types": "지표 관찰 가능 항목 유형에 적용",
"Apply on indicator observable types (none = ALL)": "지표 관찰 가능 항목 유형에 적용 (없음 = 모든 유형)",
"Apply predefined rule": "미리 정의된 규칙 적용",
"APPLY RULE": "규칙 적용",
"Apply the suggestion": "제안 적용하기",
"Applying this rule on the existing data": "기존 데이터에 이 규칙 적용",
"Approve": "승인",
"Approve draft": "초안 승인",
"Architecture execution env.": "아키텍처 실행 환경",
"Architecture mode": "아키텍처 모드",
"are updating...": "업데이트 중...",
"Are you sure you want to make the change?": "변경하시겠습니까?",
"Are you sure you want to remove this widget?": "이 위젯을 제거하시겠습니까?",
"Are you sure?": "확실합니까?",
"Area": "지역",
"Areas": "지역",
"around 30 secs": "약 30초",
"Arsenal": "무기고",
"Artifacts": "아티팩트",
"Artifacts | Observations": "유물 | 관찰",
"As it happens": "실시간",
"Asc": "Asc",
"Ask a question...": "질문하기...",
"Ask AI": "AI에 물어보기",
"Ask AI (multiple formats supported)": "AI에게 질문하기(여러 형식 지원)",
"Ask Ariane": "아리안에게 물어보세요",
"ASK ARIANE": "아리안에게 물어보세요",
"Ask for knowledge enrichment": "지식 보강 요청",
"Ask new mapping": "새 매핑 요청",
"Ask your question": "질문하기",
"Assignation": "할당",
"Assignee(s)": "담당자",
"Assignees": "담당자",
"Associated CWE(s)": "연관된 CWE(들)",
"Associated CWE(s) (one by line)": "관련 CWE(한 줄씩)",
"Associated entity": "관련 법인",
"Associated file": "관련 파일",
"Associated user": "연결된 사용자",
"At least 1 location or 1 sector is required": "최소 1개 위치 또는 1개 섹터가 필요합니다",
"Attached entity name": "첨부된 엔터티 이름",
"Attached entity type": "첨부된 엔터티 유형",
"Attack Complexity (AC)": "공격 복잡도(AC)",
"Attack pattern": "공격 패턴",
"Attack pattern courses of action": "공격 패턴 조치 과정",
"Attack pattern usage": "공격 패턴 사용",
"Attack patterns": "공격 패턴",
"Attack Patterns | Techniques": "공격 패턴 | 기법",
"Attack patterns coverage": "공격 패턴 커버리지",
"Attack patterns kill chain": "공격 패턴 킬 체인",
"Attack Requirements (AT)": "공격 요구 사항(AT)",
"Attack Resource Level is an open vocabulary that captures the general level of resources that a threat actor, intrusion set, or campaign might have access to. It ranges from individual, a person acting alone, to government, the resources of a national government": "공격 리소스 수준은 위협 행위자, 침입 세트 또는 캠페인이 액세스할 수 있는 일반적인 리소스 수준을 캡처하는 개방형 어휘입니다. 개인, 즉 혼자 행동하는 사람부터 정부, 즉 국가 정부의 리소스까지 다양합니다",
"Attack Vector (AV)": "공격 벡터(AV)",
"Attribute": "속성",
"Attribute 'notifiers' of a trigger should have at least one notifier.": "트리거의 '알림자' 속성에는 최소 하나의 알림자가 있어야 합니다.",
"Attribute 'trigger_events' of a live trigger should have at least one event.": "라이브 트리거의 '트리거 이벤트' 속성에는 최소 하나의 이벤트가 있어야 합니다.",
"Attribute \"notifiers\" of a trigger should have at least one notifier.": "트리거의 '알림자' 속성에는 최소 하나의 알림자가 있어야 합니다.",
"Attribute \"trigger_events\" of a live trigger should have at least one event.": "라이브 트리거의 '트리거 이벤트' 속성에는 최소 하나의 이벤트가 있어야 합니다.",
"Attribute copied to clipboard": "클립보드에 복사된 속성",
"Attribute mapping configuration": "속성 매핑 구성",
"Attribute path to get next uri": "다음 URL을 가져올 어트리뷰트 경로",
"Attribute used to create multiple": "속성을 여러 개 생성하는 데 사용되는",
"Attributed to this actor": "이 액터에 귀속됨",
"Attributed to this campaign": "이 캠페인에 귀속됨",
"Attributed to this country": "이 국가에 귀속됨",
"Attributed to this individual": "이 개인에 귀속됨",
"Attributed to this intrusion set": "이 침입 세트에 귀속됨",
"Attributed to this organization": "이 조직에 귀속됨",
"Attributed to this region": "이 지역에 귀속됨",
"Attributes": "속성",
"Attributes of the instance": "{type}의 속성",
"Attributes of the platform": "플랫폼의 속성",
"Attributes of the user": "사용자 속성",
"Attribution": "귀속",
"Audit logs": "감사 로그",
"Audits are not supported in public dashboards": "공개 대시보드에서는 감사가 지원되지 않습니다.",
"Audits list": "감사 목록",
"Authentication": "인증",
"Authentication (AU)": "인증(AU)",
"Authentication strategies": "인증 전략",
"Authentication type": "인증 유형",
"Author": "작성자",
"Author (organization)": "작성자(조직)",
"Authorized members": "인증된 회원",
"Authorized members successfully updated": "권한이 부여된 회원이 성공적으로 업데이트되었습니다",
"Authorized_members": "접근 제한",
"auto": "자동",
"Auto collapse submenus in left navigation": "왼쪽 내비게이션에서 하위 메뉴 자동 축소",
"Auto new markings": "자동 새 마킹",
"auto:": "자동:",
"Automated using enrichment": "인텐셔닝을 사용하여 자동화",
"Automatic": "자동",
"Automatic references at file upload": "파일 업로드 시 자동 참조",
"Automatic trigger": "자동 트리거",
"Automatically authorize this group to new marking definition": "이 그룹에 새 마킹 정의를 자동으로 허가",
"Automatically convert to STIX patterns": "STIX 패턴으로 자동 변환",
"Automatically create a service account": "서비스 계정 자동 생성",
"Automatically create a user": "사용자 자동 생성",
"Automatically create indicators from observables": "관찰 항목에서 자동으로 지표 만들기",
"Automatically create observables from indicators": "지표에서 자동으로 관찰 항목 만들기",
"Automation": "자동화",
"Automation | Processing | Data": "자동화 | 처리 | 데이터",
"Autonomous system": "자율 시스템",
"Autonomous systems": "자율 시스템",
"Availability Impact (A)": "가용성 영향(A)",
"Available columns": "사용 가능한 열",
"Available for manual enrollment / trigger": "수동 등록/발동 가능",
"Available playbooks": "사용 가능한 플레이북",
"Averages of context relations": "컨텍스트 관계 평균",
"Avoid dependencies resolution": "종속성 해소 방지",
"Back": "뒤로",
"Back to login": "로그인으로 돌아가기",
"Background color": "배경 색상",
"Background primary color": "배경 원색",
"Background secondary color": "배경 보조 색상",
"Background tasks": "백그라운드 작업",
"Background tasks currently running": "현재 실행 중인 백그라운드 작업",
"Bad login or password": "잘못된 로그인 또는 비밀번호",
"Base attribute": "기본 속성",
"Base score": "기본 점수",
"Base score:": "기본 점수:",
"Base URL": "기본 URL",
"Based on": "기반",
"based-on": "관찰 가능 항목 기반",
"Basic information": "기본 정보",
"Basic user / password": "기본 사용자 / 비밀번호",
"Be careful, please define some filter for your exclusion rule, otherwise, since no filters are set, any indicator will match the rule and will have an exclusion rule": "제외 규칙에 대한 필터를 정의하지 않으면 필터가 설정되어 있지 않으므로 모든 지표가 규칙과 일치하고 제외 규칙을 갖게 되므로 주의하세요",
"Be careful, you are about to delete the selected entities": "주의하십시오, 선택한 엔터티를 삭제하려고 합니다",
"Be careful, you are about to delete the selected entities (not the relationships)": "주의하십시오, 선택한 엔터티를 삭제하려고 합니다 (관계는 제외)",
"Be careful, you are about to delete the selected observables (not the relationships)": "주의하십시오, 선택한 관찰 가능 항목을 삭제하려고 합니다 (관계는 제외)",
"Bearer token": "베어러 토큰",
"Because by default the workbench won't include the updates made on the entity after the creation of the workbench.": "기본적으로 워크벤치는 워크벤치 생성 후 엔티티에서 수행된 업데이트를 포함하지 않기 때문입니다.",
"Before creating a ticket with your support package takes some time to check if you can safely share the content depending of your security policy.": "지원 패키지로 티켓을 생성하기 전에 보안 정책에 따라 안전하게 내용을 공유할 수 있는지 확인하는 데 시간을 할애하십시오.",
"behind live stream": "라이브 스트림의 비하인드 스토리",
"Belonging to this organization": "이 조직에 속함",
"bic values can only include A-Z and 0-9, 8 or 11 characters": "bic 값은 A-Z 및 0-9, 8 또는 11 문자만 포함할 수 있습니다",
"Biographic Information": "생물 정보",
"Biographics": "생물 정보",
"Body": "본문",
"Bookmark": "북마크",
"Bookmarks are not supported in public dashboards": "공개 대시보드에서는 북마크가 지원되지 않습니다",
"Both latitude and longitude must be provided together": "위도와 경도를 모두 함께 제공해야 합니다",
"Browse files": "파일 찾아보기",
"Browse more": "자세히 보기",
"Browse the link": "링크 탐색",
"Buffering: ": "버퍼링:",
"Built-in: HTML template to PDF": "기본 제공: HTML 템플릿을 PDF로 내보내기",
"Built-in: template to HTML/PDF": "기본 제공: 템플릿을 HTML/PDF로",
"Bulk creation not supported for this type": "이 유형에는 대량 생성이 지원되지 않습니다",
"Bulk Search": "일괄 검색",
"Bulk search": "대량 검색",
"Bundle content": "번들 내용",
"Bundle details": "번들 세부 정보",
"Bundles processed": "처리된 번들",
"by": "by",
"By default we accept iso date (YYYY-MM-DD), but you can specify your own date format in ISO notation (for instance DD.MM.YYYY)": "기본적으로 ISO 날짜(YYYY-MM-DD)를 허용하지만, ISO 표기법으로 자신의 날짜 형식을 지정할 수 있습니다 (예: DD.MM.YYYY)",
"By default, all files will be used to generate the response.": "기본적으로 모든 파일이 응답 생성에 사용됩니다.",
"By enabling the OpenCTI Enterprise Edition, you (and your organization) agrees to the OpenCTI Enterprise Edition (EE) ": "OpenCTI 엔터프라이즈 에디션을 활성화하면 사용자(및 조직)는 OpenCTI 엔터프라이즈 에디션(EE)에 동의하는 것입니다",
"By enabling the OpenCTI Enterprise Edition, you (and your organization) agrees to the OpenCTI Enterprise Edition (EE) supplemental ": "OpenCTI 엔터프라이즈 에디션을 활성화하면 사용자(및 조직)는 OpenCTI 엔터프라이즈 에디션(EE) 추가 기능에 동의하는 것입니다",
"By enabling the OpenCTI LTS, you (and your organization) agrees to the": "OpenCTI LTS를 활성화하면 귀하(및 귀하의 조직)는 다음 사항에 동의하는 것입니다",
"By registering this platform into the hub, it will allow to:": "이 플랫폼을 허브에 등록하면 다음을 수행할 수 있습니다:",
"By registering this platform into the hub, it will:": "이 플랫폼을 허브에 등록하면 다음을 수행할 수 있습니다:",
"By registering your OpenCTI platform, you'll be able to:": "OpenCTI 플랫폼을 등록하면 다음과 같이 할 수 있습니다:",
"Bypass all capabilities": "모든 기능 우회",
"Bypass enforced reference": "강제 참조 무시",
"CA certificate (base64)": "CA 인증서 (base64)",
"Campaign": "캠페인",
"Campaigns": "캠페인",
"Campaigns | Threats": "캠페인 | 위협",
"can edit": "편집 가능",
"can manage": "관리 가능",
"can use": "사용할 수 있습니다",
"can view": "보기 가능",
"Cancel": "취소",
"Capabilities": "기능",
"Capabilities in Draft": "초안의 기능",
"Cards view": "카드 보기",
"Cascade delete": "계단식 삭제",
"Case priority": "사례 우선순위",
"Case severity": "사례 심각도",
"Case templates": "사례 템플릿",
"Case Templates | Taxonomies | Settings": "케이스 템플릿 | 분류법 | 설정",
"Cases": "사례",
"Cases & Analyses": "사례 및 분석",
"CaseTemplate": "케이스 템플릿",
"Category": "카테고리",
"category": "카테고리",
"Center latitude": "중심 위도",
"Center longitude": "중심 경도",
"Certificate (base64)": "인증서 (base64)",
"Change tone": "톤 변경",
"Change which data to retrieve in this widget": "이 위젯에서 검색할 데이터를 변경합니다",
"Change your password": "비밀번호 변경",
"Channel": "채널",
"Channel type": "채널 유형",
"Channel types": "채널 유형",
"channel_types": "채널 유형",
"Channels": "채널",
"Channels | Arsenal": "채널 | 아스날",
"Char to escape line": "줄 바꿈 문자",
"Check the posture in OpenBAS": "OpenBAS에서 자세 확인",
"Checkbox": "체크박스",
"Child organizations": "하위 조직",
"Chinese": "中国語",
"Choose a form to fill out and create entities": "작성할 양식을 선택하고 엔티티를 생성합니다",
"Choose target": "대상 선택",
"Choose type": "유형 선택",
"CISA KEV": "CISA KEV",
"Cities": "도시",
"Cities | Locations": "도시 | 위치",
"Citizenship": "국적",
"City": "도시",
"Cleaning up this rule on the existing data": "기존 데이터에서 이 규칙 정리 중",
"Clear": "지우기",
"Clear all filters": "모든 필터 지우기",
"Clear all works": "모든 작업 지우기",
"Clear filters": "필터 지우기",
"Clear local storage": "로컬 스토리지 지우기",
"Clear mappings": "매핑 지우기",
"Clear this connector": "이 커넥터 지우기",
"Click here to add one": "추가하려면 여기를 클릭하세요",
"Click on details to see more information": "자세히 보기를 클릭하여 더 많은 정보를 확인하세요",
"Client certificate": "클라이언트 인증서",
"Close": "닫기",
"Close registration process?": "등록 절차를 닫으시겠습니까?",
"Close unregistration process?": "등록 취소 프로세스를 닫으시겠습니까?",
"Cloud": "클라우드",
"Cloud Control Plane": "클라우드 제어 평면",
"club": "비공식 그룹",
"Cluster": "클러스터",
"Code": "코드",
"coercion": "강제/제약",
"Collapse": "축소",
"Color": "색상",
"color": "색상",
"Column": "열",
"Column index": "열 인덱스",
"Columns": "열",
"coming soon": "곧 출시 예정",
"Comma": "콤마",
"Comma-separated": "쉼표로 구분",
"comment": "코멘트",
"Commit message": "커밋 메시지",
"Commit message when updating data from the UI.": "UI에서 데이터 업데이트 시 커밋 메시지.",
"Commit messages": "커밋 메시지",
"Community": "커뮤니티",
"Compare": "비교",
"Compare with my security posture": "내 보안 태세와 비교",
"complete": "완료",
"COMPLETE_DELETE": "Complete_delete",
"Completed": "완료",
"Completed tasks": "완료된 작업",
"Completed works": "완료된 작업",
"Complex": "Complex",
"Computing activity evaluation...": "컴퓨팅 활동 평가...",
"Confidence": "신뢰도",
"confidence": "신뢰도",
"Confidence level": "신뢰도 수준",
"confidence scale configuration has been successfully updated": "신뢰도 척도 구성이 성공적으로 업데이트되었습니다",
"confidence_0": "없음",
"confidence_15": "낮음",
"confidence_50": "보통",
"confidence_75": "좋음",
"confidence_85": "강함",
"confidence_gt": "신뢰도 초과",
"confidence_lte": "신뢰도 이하",
"confidence_unknown": "알 수 없음",
"Confidences": "신뢰도",
"Confidentiality Impact (C)": "기밀성 영향(C)",
"Confidentiality impact (C)": "기밀성 영향(C)",
"Configuration": "구성",
"Configuration | Activity | Settings": "구성 | 활동 | 설정",
"Configuration version": "구성 버전",
"Configuration_version": "구성_버전",
"Configure file indexing": "파일 색인 구성",
"Confirm": "확인",
"Confirmation": "확인",
"Confirmation required": "확인 필요",
"Connected": "연결됨",
"Connected since": "연결 시작",
"Connected workers": "연결된 작업자",
"connectedToId": "관련 엔터티",
"Connection successfully verified": "연결이 성공적으로 확인되었습니다",
"Connectivity lost": "연결 끊김",
"Connector": "커넥터",
"Connector catalog": "커넥터 카탈로그",
"Connector catalog | Ingestion | Data": "커넥터 카탈로그 | 수집 | 데이터",
"Connector catalogs": "커넥터 카탈로그",
"Connector configuration": "커넥터 구성",
"Connector name": "커넥터 이름",
"Connectors": "커넥터",
"Connectors & workers": "커넥터 및 작업자",
"Connectors | Ingestion | Data": "커넥터 | 수집 | 데이터",
"Connectors API usage: register, ping, export push ...": "커넥터 API 사용법: 등록, 핑, 푸시 내보내기 ...",
"consent message": "동의 메시지",
"Constituent": "구성원",
"Contact information": "연락처 정보",
"Contact us": "문의하기",
"Container": "컨테이너",
"Container summary": "컨테이너 요약",
"Container type": "컨테이너 유형",
"Container wrapper": "컨테이너 래퍼",
"container_type": "분석 유형",
"Containers": "컨테이너",
"containers": "사례 및 분석",
"Containers (reports, groupings, notes & opinions)": "컨테이너 (보고서, 그룹, 노트 및 의견)",
"Containers digest": "컨테이너 요약",
"Contains": "포함",
"contains": "포함",
"Content": "내용",
"Content (1 / line)": "콘텐츠 (1 / 줄)",
"Content mapping view": "내용 매핑 보기",
"Content max marking definition levels": "내용 최대 마킹 정의 수준",
"Content view": "내용 보기",
"contest": "일시적인 그룹",
"Context": "컨텍스트",
"context": "컨텍스트",
"Context relations": "컨텍스트 관계",
"Context_data.created_by_ref_id": "생성자",
"Context_data.creator_ids": "생성자",
"Context_data.id": "관련 엔터티",
"Context_data.labels_ids": "라벨",
"Context_data.object_marking_refs_ids": "마킹 정의",
"Context_data.search": "검색 키워드",
"contextCreatedBy": "관련 엔터티 작성자",
"contextCreator": "관련 엔터티 생성자",
"contextEntityId": "관련 엔터티",
"contextEntityType": "관련 엔터티 유형",
"contextObjectLabel": "관련 엔터티 라벨",
"contextObjectMarking": "관련 엔터티 마킹",
"Contextual view": "컨텍스트 보기",
"CONTINUE": "계속",
"Continue": "계속",
"Continue registration": "등록 계속하기",
"Continue to register": "등록 계속하기",
"Continue to unregister": "등록 취소 계속하기",
"Continue unregistration": "등록 취소 계속하기",
"Contracts": "계약",
"Control": "제어",
"Convert": "전환",
"Convert associated files to STIX 2.1": "관련 파일을 STIX 2.1로 변환",
"Convert Service account": "서비스 계정 전환",
"Convert Service account into User": "서비스 계정을 사용자로 전환",
"Convert this workbench to a draft": "이 워크벤치를 초안으로 변환",
"Convert to draft": "초안으로 변환",
"Convert User": "사용자 전환",
"convert USER": "사용자 변환",
"Convert User into Service account": "사용자를 서비스 계정으로 변환",
"Copied to clipboard": "클립보드에 복사됨",
"Copy": "복사",
"copy": "복사",
"Copy attribute name to clipboard": "속성 이름을 클립보드에 복사했습니다",
"Copy confidence level to OpenCTI scores for indicators": "지표에 대한 신뢰 수준을 OpenCTI 점수로 복사합니다",
"Copy disabled: too many selected elements (maximum number of elements for a copy: ": "복사 불가: 선택된 요소가 너무 많습니다 (복사 가능한 최대 요소 수: ",
"Copy link": "링크 복사",
"Copy OpenCTI scores to confidence level for indicators": "OpenCTI 점수를 지표의 신뢰 수준에 복사합니다",
"Copy public link": "공개 링크 복사",
"Copy to clipboard": "클립보드에 복사",
"Copy uri to clipboard for your csv client": "CSV 클라이언트를 위한 URI를 클립보드에 복사",
"Copy uri to clipboard for your Taxii client": "Taxii 클라이언트를 위한 URI를 클립보드에 복사",
"Copy widget name to clipboard": "위젯 이름을 클립보드에 복사",
"Copy/paste mode": "복사/붙여넣기 모드",
"Copy/paste text content": "텍스트 내용 복사/붙여넣기",
"Correlate": "상관",
"Correlated cases": "상관된 사례",
"Correlated containers": "연관된 컨테이너",
"Correlated groupings": "상관된 그룹",
"Correlated indicators and observables": "상관 지표 및 관찰 항목",
"Correlated indicators and observables distribution": "상관 지표 및 관측값 분포",
"Correlated intrusion sets": "상관된 침입 세트",
"Correlated reports": "상관된 보고서",
"Correlation view": "상관 보기",
"Count": "수",
"Countries": "국가",
"Countries | Locations": "국가 | 위치",
"Country": "국가",
"Country of Residence": "거주 국가",
"Course of action": "조치 과정",
"Courses of action": "조치 과정",
"Courses of Action | Techniques": "행동 강좌 | 기법",
"Courses of action view": "조치 과정 보기",
"Cover page text color": "표지 텍스트 색상",
"Coverage": "적용 범위",
"Coverage details": "적용 범위 세부 정보",
"Coverage information": "커버리지 정보",
"Coverage Information": "적용 범위 정보",
"Coverage name": "커버리지 이름",
"Coverage recurrence (every x)": "적용 범위 반복(매 x마다)",
"Coverage score (0-100)": "커버리지 점수 (0-100)",
"Coverage update periodicity": "적용 범위 업데이트 주기",
"Coverage validity period": "커버리지 유효 기간",
"Covered entity": "적용 대상 엔터티",
"CREATE": "생성",
"Create": "생성",
"create": "생성",
"Create ...": "생성 {entity_type}",
"Create / Update dashboards": "대시보드 만들기/업데이트",
"Create / Update investigations": "조사 만들기/업데이트",
"Create / Update knowledge": "지식 만들기/업데이트",
"Create a campaign": "캠페인 생성",
"Create a case template": "사례 템플릿 생성",
"Create a channel": "채널 생성",
"Create a city": "도시 생성",
"Create a connector": "커넥터 만들기",
"Create a container and wrap the element inside it": "컨테이너를 생성하고 그 안에 요소를 래핑합니다",
"Create a content from a template": "템플릿에서 콘텐츠 만들기",
"Create a country": "국가 생성",
"Create a course of action": "조치 과정 생성",
"Create a coverage": "커버리지 만들기",
"Create a CSV Feed": "CSV 피드 만들기",
"Create a CSV Ingester": "CSV 인제스터 생성",
"Create a CSV ingester": "CSV 인제스터 생성",
"Create a CSV mapper": "CSV 매퍼 생성",
"Create a CSV Mapper configuration": "CSV 매퍼 구성 생성",
"Create a custom theme": "사용자 지정 테마 만들기",
"Create a data component": "데이터 구성 요소 생성",
"Create a data source": "데이터 소스 생성",
"Create a decay exclusion rule": "부패 제외 규칙 만들기",
"Create a decay rule": "감쇠 규칙 생성",
"Create a dissemination list": "배포 목록 만들기",
"Create a Draft": "초안 만들기",
"Create a feed": "피드 생성",
"Create a feedback": "피드백 생성",
"Create a file": "파일 생성",
"Create a fintel design": "핀텔 디자인 만들기",
"Create a form": "양식 만들기",
"Create a group": "그룹 생성",
"Create a grouping": "그룹화 생성",
"Create a individual": "개인 생성",
"Create a JSON feed": "JSON 피드 만들기",
"Create a JSON mapper": "JSON 매퍼 생성",
"Create a kill chain phase": "킬 체인 단계 생성",
"Create a label": "라벨 생성",
"Create a live activity trigger": "라이브 활동 트리거 생성",
"Create a live stream": "라이브 스트림 생성",
"Create a live trigger": "라이브 트리거 생성",
"Create a malware": "멀웨어 생성",
"Create a malware analysis": "멀웨어 분석 생성",
"Create a marking definition": "마킹 정의 생성",
"Create a message": "메시지 생성",
"Create a narrative": "서사 생성",
"Create a nested relationship": "중첩된 관계 생성",
"Create a new container at each run": "실행할 때마다 새 컨테이너 생성",
"Create a new file with the content": "내용으로 새 파일 생성",
"Create a new public dashboard": "새 공개 대시보드 생성",
"Create a new template": "새 템플릿 만들기",
"Create a note": "노트 생성",
"Create a notifier": "알림 생성",
"Create a opinions": "의견 생성",
"Create a playbook": "플레이북 생성",
"Create a position": "위치 생성",
"Create a public dashboard": "공개 대시보드 만들기",
"Create a region": "지역 생성",
"Create a regular activity digest": "정기 활동 요약 생성",
"Create a regular digest": "정기 요약 생성",
"Create a relationship": "관계 생성",
"Create a report": "보고서 생성",
"Create a request for information": "정보 요청 생성",
"Create a request for takedown": "삭제 요청 생성",
"Create a retention policy": "보존 정책 생성",
"Create a role": "역할 생성",
"Create a RSS ingester": "RSS 인제스터 생성",
"Create a sector": "부문 생성",
"Create a security coverage": "보안 적용 범위 만들기",
"Create a security platform": "보안 플랫폼 만들기",
"Create a service account for this feed": "이 피드에 대한 서비스 계정 만들기",
"Create a sighting": "목격 생성",
"Create a status": "상태 생성",
"Create a status template": "상태 템플릿 생성",
"Create a stream": "스트림 생성",
"Create a subscription": "구독 생성",
"Create a synchronizer": "동기화기 생성",
"Create a system": "시스템 생성",
"Create a task": "작업 생성",
"Create a task template": "작업 템플릿 생성",
"Create a TAXII collection": "TAXII 컬렉션 생성",
"Create a TAXII ingester": "TAXII 인제스터 생성",
"Create a template": "템플릿 만들기",
"Create a threat actor group": "위협 행위자 그룹 생성",
"Create a threat actor individual": "위협 행위자 개인 생성",
"Create a tool": "도구 생성",
"Create a user": "사용자 생성",
"Create a user for this feed": "이 피드에 대한 사용자 만들기",
"Create a vocabulary": "어휘 생성",
"Create a vulnerability": "취약점 생성",
"Create a widget": "위젯 생성",
"Create a workbench": "작업대 생성",
"Create a workspace": "작업 공간 생성",
"Create an area": "지역 생성",
"Create an artifact": "아티팩트 생성",
"Create an attack pattern": "공격 패턴 생성",
"Create an attribute": "속성 생성",
"Create an automatic user": "자동 사용자 만들기",
"Create an entity": "엔터티 생성",
"Create an event": "이벤트 생성",
"Create an exclusion list": "제외 목록 만들기",
"Create an external reference": "외부 참조 생성",
"Create an incident": "사건 생성",
"Create an incident response": "사건 대응 생성",
"Create an indicator": "지표 생성",
"Create an indicator based on an observable": "옵저버블을 기반으로 인디케이터를 생성합니다",
"Create an indicator from this observable": "이 관찰 가능 항목에서 지표 생성",
"Create an infrastructure": "인프라 생성",
"Create an intrusion set": "침입 세트 생성",
"Create an investigation": "조사 만들기",
"Create an observable": "관찰 가능 항목 생성",
"Create an observed data": "관찰된 데이터 생성",
"Create an opinion": "의견 생성",
"Create an organization": "조직 생성",
"Create an outcome based on a template": "템플릿을 기반으로 결과물 만들기",
"Create and map": "생성 및 매핑",
"Create as draft": "초안으로 만들기",
"Create as draft by default": "기본적으로 초안으로 생성",
"Create dashboard": "대시보드 생성",
"Create external reference at upload": "업로드 시 외부 참조 생성",
"Create file": "파일 만들기",
"Create indicators from all observables in the bundle": "번들에 있는 모든 통합지표에서 지표 만들기",
"Create investigation": "조사 생성",
"Create missing entities": "누락된 엔티티 만들기",
"Create multiple entities": "여러 엔터티 만들기",
"Create multiple observables": "여러 관측값 만들기",
"Create multiple relationships": "여러 관계 만들기",
"Create observables based on an indicator": "인디케이터를 기반으로 관찰 가능 항목 만들기",
"Create observables from all indicators in the bundle": "번들에 있는 모든 지표에서 관찰 가능 항목 만들기",
"Create observables from this indicator": "이 지표에서 관찰 가능 항목 생성",
"Create OpenCTI Stream": "OpenCTI 스트림 생성",
"Create priority intelligence requirement": "우선 순위 인텔리전스 요구 사항 만들기",
"Create relations in bulk": "대량으로 관계 만들기",
"Create relations in bulk for": "다음에 대한 대량 관계 만들기",
"Create Relationship": "관계 만들기",
"Create unknown entities": "알 수 없는 엔터티 만들기",
"Create Widget": "위젯 만들기",
"Create Workbench": "워크벤치 생성",
"created": "생성됨",
"Created by": "만든 사람",
"Created By": "만든 사람",
"Created entities": "생성된 엔터티",
"Created the": "생성됨",
"created_at": "수집됨",
"created_at_gt": "이후에 수집됨",
"created_at_lt": "이전에 수집됨",
"created_gt": "이후에 생성됨",
"created_lt": "이전에 생성됨",
"created-by": "작성자",
"Created-by.internal_id": "작성자",
"createdBy": "작성자",
"Creating entities...": "엔티티 생성 중...",
"Creation": "생성",
"Creation date": "생성 날짜",
"Creation date (in this platform)": "생성 날짜 (이 플랫폼에서)",
"Creator": "생성자",
"Creator_id": "생성자",
"creator_id": "기술 생성자",
"Creators": "생성자",
"Credential": "자격 증명",
"Credentials": "자격 증명",
"Criteria": "기준",
"Critical": "중대한",
"CRITICAL": "중요",
"CSIRT": "CSIRT",
"CSV data.": "CSV 데이터",
"CSV Feeds": "CSV 피드",
"CSV feeds": "CSV 피드",
"CSV Feeds | Data sharing | Data": "CSV 피드 | 데이터 공유 | 데이터",
"CSV Feeds | Ingestion | Data": "CSV 피드 | 수집 | 데이터",
"CSV file": "CSV 파일",
"CSV mapper created": "CSV 매퍼 생성",
"CSV Mapper edition": "CSV 매퍼 에디션",
"CSV Mappers": "CSV 매퍼",
"CSV Mappers | Processing | Data": "CSV 매퍼 | 처리 | 데이터",
"CSV separator": "CSV 구분자",
"CSV URL": "CSV URL",
"Current cache version date": "현재 캐시 버전 날짜",
"Current entity refers to the entity in which you will use the Fintel template. Removing this filter means you will lost the context of the container in which the template is used.": "현재 엔터티는 핀텔 템플릿을 사용할 엔터티를 의미합니다. 이 필터를 제거하면 템플릿이 사용되는 컨테이너의 컨텍스트가 손실됩니다.",
"Current instance": "현재 인스턴스",
"Current password": "현재 비밀번호",
"Current platform": "현재 플랫폼",
"Current specific accesses": "현재 특정 접근",
"Current stable score": "현재 안정 점수",
"Current state": "현재 상태",
"Current User": "현재 사용자",
"Custom dashboard": "맞춤 대시보드",
"Custom dashboards": "맞춤 대시보드",
"Custom dashboards | Dashboards": "사용자 지정 대시보드 | 대시보드",
"Customization": "맞춤 설정",
"Customize columns": "열 사용자 지정",
"Customize scale": "척도 맞춤 설정",
"CVSS v2": "CVSS v2",
"CVSS v3": "CVSS v3",
"CVSS v4": "CVSS v4",
"CVSS2 Access Complexity (AC)": "CVSS2 액세스 복잡성(AC)",
"CVSS2 Access Vector (AV)": "CVSS2 액세스 벡터(AV)",
"CVSS2 Authentication (Au)": "CVSS2 인증(Au)",
"CVSS2 Availability Impact (A)": "CVSS2 가용성 영향(A)",
"CVSS2 Confidentiality Impact (C)": "CVSS2 기밀성 영향(C)",
"CVSS2 Exploitability (E)": "CVSS2 익스플로잇 가능성(E)",
"CVSS2 Integrity Impact (I)": "CVSS2 무결성 영향(I)",
"CVSS2 Remediation Level (RL)": "CVSS2 치료 수준(RL)",
"CVSS2 Report Confidence (RC)": "CVSS2 보고서 신뢰도(RC)",
"CVSS2 Score": "CVSS2 점수",
"CVSS2 Temporal Score": "CVSS2 시간 점수",
"CVSS2 Vector": "CVSS2 벡터",
"CVSS3 - Attack vector": "CVSS3 - 공격 벡터",
"CVSS3 - Attack vector (AV)": "CVSS3 - 공격 벡터 (AV)",
"CVSS3 - Availability impact": "CVSS3 - 가용성 영향",
"CVSS3 - Availability impact (A)": "CVSS3 - 가용성 영향 (A)",
"CVSS3 - Confidentiality impact": "CVSS3 - 기밀성 영향",
"CVSS3 - Confidentiality impact (C)": "CVSS3 - 기밀성 영향 (C)",
"CVSS3 - Integrity impact": "CVSS3 - 무결성 영향",
"CVSS3 - Integrity impact (I)": "CVSS3 - 무결성 영향 (I)",
"CVSS3 - Scope (S)": "CVSS3 - 범위(S)",
"CVSS3 - Score": "CVSS3 - 점수",
"CVSS3 - Severity": "CVSS3 - 심각도",
"CVSS3 Attack Complexity (AC)": "CVSS3 공격 복잡도(AC)",
"CVSS3 Attack Vector (AV)": "CVSS3 공격 벡터(AV)",
"CVSS3 Availability Impact (A)": "CVSS3 가용성 영향(A)",
"CVSS3 Confidentiality Impact (C)": "CVSS3 기밀성 영향(C)",
"CVSS3 Exploit Code Maturity (E)": "CVSS3 익스플로잇 코드 성숙도(E)",
"CVSS3 Integrity Impact (I)": "CVSS3 무결성 영향(I)",
"CVSS3 Privileges Required (PR)": "CVSS3 권한 필요(PR)",
"CVSS3 Remediation Level (RL)": "CVSS3 수정 수준(RL)",
"CVSS3 Report Confidence (RC)": "CVSS3 보고서 신뢰도(RC)",
"CVSS3 Score": "CVSS3 점수",
"CVSS3 Severity": "CVSS3 심각도",
"CVSS3 Temporal Score": "CVSS3 시간 점수",
"CVSS3 User interaction (UI)": "CVSS3 사용자 상호작용(UI)",
"CVSS3 Vector": "CVSS3 벡터",
"CVSS4 Attack Complexity (AC)": "CVSS4 공격 복잡도(AC)",
"CVSS4 Attack Requirements (AT)": "CVSS4 공격 요구 사항(AT)",
"CVSS4 Attack Vector (AV)": "CVSS4 공격 벡터(AV)",
"CVSS4 Exploit Maturity (E)": "CVSS4 익스플로잇 성숙도(E)",
"CVSS4 Privileges Required (PR)": "CVSS4 권한 필요(PR)",
"CVSS4 Score": "CVSS4 점수",
"CVSS4 Severity": "CVSS4 심각도",
"CVSS4 SS Avalability Impact (SA)": "CVSS4 SS 가용성 영향(SA)",
"CVSS4 SS Confidentiality Impact (SC)": "CVSS4 SS 기밀성 영향(SC)",
"CVSS4 SS Integrity Impact (SI)": "CVSS4 SS 무결성 영향(SI)",
"CVSS4 User Interaction (UI)": "CVSS4 사용자 인터랙션(UI)",
"CVSS4 Vector": "CVSS4 벡터",
"CVSS4 VS Availability Impact (VA)": "CVSS4 VS 가용성 영향(VA)",
"CVSS4 VS Confidentiality Impact (VC)": "CVSS4 VS 기밀성 영향(VC)",
"CVSS4 VS Integrity Impact (VI)": "CVSS4 VS 무결성 영향(VI)",
"Danger Zone": "위험 구역",
"DangerZoneTooltip": "여기서 구성을 변경하면 플랫폼의 안정성에 중대한 영향을 미칠 수 있습니다. 민감한 구성을 변경할 수 있는 권한이 있는 사용자만 변경할 수 있습니다. 자신이 수행하는 작업에 대해 잘 알고 있는지 확인하세요.",
"Dark": "어두운",
"Dark (with background)": "어두운 (배경 포함)",
"Dark (without background)": "어두운 (배경 없음)",
"Dark theme": "어두운 테마",
"Dashboard": "대시보드",
"dashboard": "대시보드",
"Dashboard cannot be exported to image": "대시보드를 이미지로 내보낼 수 없습니다",
"Dashboard cannot be exported to pdf": "대시보드를 PDF로 내보낼 수 없습니다",
"Dashboard settings": "대시보드 설정",
"Dashboards": "대시보드",
"Dashboards from your groups & organizations": "그룹 및 조직의 대시보드",
"Data": "데이터",
"Data component": "데이터 구성 요소",
"Data components": "데이터 구성 요소",
"Data Components | Techniques": "데이터 구성 요소 | 기술",
"Data curation": "데이터 큐레이션",
"Data fetched:": "데이터를 가져옵니다:",
"Data import": "데이터 가져오기",
"Data import and analyst workbenches": "데이터 가져오기 및 분석가 작업대",
"Data sharing": "데이터 공유",
"Data sharing configuration": "데이터 공유 구성",
"Data source": "데이터 소스",
"Data sources": "데이터 소스",
"Data Sources | Techniques": "데이터 소스 | 기법",
"Data type": "데이터 유형",
"Date": "날짜",
"Date attribute": "날짜 속성",
"Date of Birth": "생년월일",
"Date of birth": "생년월일",
"Date pattern": "날짜 패턴",
"Date reference": "날짜 참조",
"Date Seen": "본 날짜",
"Date/Time": "날짜/시간",
"Day": "일",
"day": "일",
"Day remaining": "남은 일수",
"Day: ": "일: ",
"day(s)": "일",
"Days": "일",
"days": "일",
"Days remaining": "남은 일수",
"Deactivate": "비활성화",
"Deactivating this rule will automatically remove the relationships previously generated by the rule. Please be aware that disabling this rule may impact your platform's data and performance.": "이 규칙을 비활성화하면 이전에 규칙에 의해 생성된 관계가 자동으로 제거됩니다. 이 규칙을 비활성화하면 플랫폼의 데이터 및 성능에 영향을 미칠 수 있습니다.",
"Decay exclusion rules": "부패 제외 규칙",
"Decay factor": "감쇠 인자",
"Decay rule": "부패 규칙",
"Decay rules": "감쇠 규칙",
"Decay Rules | Customization | Settings": "감쇠 규칙 | 사용자 지정 | 설정",
"Decay rules are applied on indicators by priority order (from greatest to lowest, lowest being 0). There are built-in rules applied by default that are not editable, you can add a custom decay rule and define its priority order.": "감쇠 규칙은 우선순위 순서에 따라 지표에 적용됩니다 (가장 큰 것부터 가장 작은 것까지, 가장 작은 것이 0). 기본적으로 적용되는 내장 규칙이 있으며, 편집할 수 없지만 사용자 정의 감쇠 규칙을 추가하고 우선순위 순서를 정의할 수 있습니다.",
"Decline": "거절",
"Decreasing": "감소",
"Default": "기본값",
"Default author": "기본 작성자",
"Default case templates": "기본 사례 템플릿",
"Default checked": "기본값 확인",
"Default checked (true)": "기본값 확인(true)",
"Default dashboard": "기본 대시보드",
"Default group for ingestion user": "수집 사용자의 기본 그룹",
"Default group for Service accounts": "서비스 계정의 기본 그룹",
"Default mailer": "기본 메일러",
"Default mandatory attributes": "기본 필수 속성",
"Default marking definitions": "기본 마킹 정의",
"Default markings": "기본 마킹",
"Default membership": "기본 회원",
"Default report types": "기본 보고서 유형",
"Default theme": "기본 테마",
"Default unchecked (false)": "기본값 미선택(거짓)",
"Default value": "기본값",