-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathja.json
More file actions
1067 lines (1067 loc) · 49.5 KB
/
Copy pathja.json
File metadata and controls
1067 lines (1067 loc) · 49.5 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
{
"1 - Confirmed by other sources": "プラットフォームのエンティティファイル",
"2 - Probably True": "1 - 他の情報源によって確認された",
"2FA state": "2FAの状態",
"3 - Possibly True": "2 - たぶんそう",
"4 - Doubtful": "3 - 可能性がある",
"5 - Improbable": "4 - 疑わしい",
"6 - Truth Cannot be judged": "範囲外",
"Abstract": "注釈の種類",
"Access right": "アクセス権",
"Account creation date": "アカウント作成日",
"Account expiration date": "アカウントの有効期限",
"Account first login date": "アカウントの初回ログイン日",
"Account last login date": "アカウントの最終ログイン日",
"Account login": "アカウントログイン",
"Account number": "口座番号",
"Account status": "アカウントの状態",
"Account type": "アカウントタイプ",
"Actions": "アクション",
"Activated": "アクティブ化された",
"Active": "アクティブ",
"Activity listeners IDs": "アクティビティリスナーID",
"Added after": "現在の状態カーソル",
"Added value": "追加値",
"Added_after_start": "追加_開始後",
"Additional names": "追加名",
"Administrated organizations": "管理団体",
"Administrator": "管理者",
"AI insight activation": "AIによる洞察の活性化",
"Algorithm": "アルゴリズム",
"Alias": "別名",
"Aliases": "エイリアス",
"Allowed markings": "許可マーク",
"Analysis content source": "分析内容ソース",
"Analysis content type": "分析内容タイプ",
"Analysis definition version": "提出日",
"Analysis end date": "分析終了日",
"Analysis ended": "結果名",
"Analysis engine version": "分析定義バージョン",
"Analysis SCO": "サンプル",
"Analysis start date": "分析開始日",
"Analysis started": "分析終了日",
"Analysis type": "分析タイプ",
"API Token": "APIトークン",
"API Tokens": "APIトークン",
"Applicant": "申請者",
"Architecture execution env.": "実装言語",
"Artifact content": "人工物の内容",
"ASLR enabled": "ASLR有効",
"Assignees": "譲受人",
"Associated CWE(s)": "関連CWE",
"Atime": "Atime",
"Attachment": "作成者",
"Attack vector": "完全性の影響",
"Attribute": "属性",
"Attribute name": "属性名",
"Attributes": "属性",
"Attributes configuration": "利用可能な設定",
"Attribution propagation": "帰属伝播",
"Authentication name": "認証名",
"Authentication type": "認証値",
"Authentication value": "の後に追加",
"Author": "コメント",
"Author of related entity": "関連エンティティの作成者",
"Authority key identifier": "権限キー識別子",
"Authorize to new markings": "新しいマーキングへの許可",
"Authorized authorities": "付与可能なグループ",
"Authorized members": "許可されたメンバー",
"Authorized members activation date": "公認メンバーのアクティベーション日",
"Authors": "作成者",
"Auto": "オート",
"Auto collapse submenus": "サブメニューの自動折りたたみ",
"Auto create group": "グループ自動作成",
"Auto enrichment disable": "オートエンリッチメント無効",
"Autonomous system number": "自律システム番号",
"Availability impact": "機密性への影響",
"Available for types": "タイプで利用可能",
"Available settings": "ワークフロー起動",
"Available since": "利用可能",
"Banner level": "バナーレベル",
"Banner text": "バナーテキスト",
"Base score": "基本重要度",
"Base severity": "攻撃ベクトル",
"Base type": "ベースタイプ",
"Basic constraints": "基本制約",
"Basic information": "基本情報",
"BCC": "BCC",
"Belonging propagation": "帰属伝播",
"Belongs to": "に属する",
"BIC": "BIC",
"Biographics": "経歴",
"Body": "本文",
"body": "ボディ",
"Body multiplart": "本体マルチパート",
"Body raw reference": "本文生参照",
"Bookmarks": "ブックマーク",
"Born In": "生まれ",
"Built-in": "設定",
"Button display name": "ボタン表示名",
"Can escalate privs": "特権をエスカレートできる",
"Capabilities": "脅威行為者のタイプ",
"Capability order": "能力順",
"Card number": "カード番号",
"Carousel order": "インデックスの日付",
"Case template": "評価",
"Category": "マニフェスト",
"CC": "CC",
"Certifiate policies": "認証ポリシー",
"Channel types": "データソース",
"Child": "子",
"CISA KEV": "CISA KEV",
"Client certificate authentication": "クライアント証明書認証",
"ClientCertStrategy": "クライアント証明書戦略",
"Collection": "認証タイプ",
"Color": "色",
"Command line": "コマンドライン",
"Comment": "コメント",
"Comments": "内容の長さ",
"Commit": "コミット",
"Compatible with playbooks": "プレイブックとの互換性",
"Completed": "完了",
"Completed number": "完了番号",
"Completion date": "完了日",
"Confidence": "信頼度",
"Confidence level": "信頼度",
"Confidentiality impact": "インシデントタイプ",
"Configuration": "組織タイプ",
"Configuration version": "モジュール",
"Connector catalog": "コネクタカタログ",
"Connector ID": "コネクタID",
"Connector information": "コネクタ情報",
"Connector manager": "コネクター・マネージャー",
"Connector manager current status": "コネクタマネージャの現在のステータス",
"Connector manager image": "コネクタマネージャイメージ",
"Connector manager requested status": "コネクタマネージャ要求ステータス",
"Connector name": "コネクタ名",
"Connector scope": "コネクタスコープ",
"Connector state": "コネクタの状態",
"Connector trigger filters": "コネクター・トリガー・フィルター",
"Connector type": "コネクタタイプ",
"Connector user id": "コネクター・ユーザーID",
"Connectors": "コネクタ",
"Consent confirm text": "同意確認テキスト",
"Consent message": "同意メッセージ",
"Contact information": "連絡先情報",
"Contains": "含む",
"Contains observable": "観測値を含む",
"content": "コンテンツ",
"Content": "内容",
"Content disposition": "内容処分",
"Content length": "作成ツール",
"Content mapping": "最初に観測された",
"Content markings": "コンテンツマーク",
"Content type": "コンテンツタイプ",
"Context": "コンテキスト",
"Context data": "コンテキストデータ",
"Contextual only": "コンテキストのみ",
"Copy confidence level to OpenCTI scores for indicators": "指標の信頼度をOpenCTIのスコアにコピーする",
"Copy OpenCTI scores to confidence level for indicators": "OpenCTIのスコアを指標の信頼度にコピーする",
"Count": "偽陽性",
"Coverage": "カバレッジ",
"Coverage name": "カバレッジ名",
"Coverage score": "カバレッジスコア",
"Coverage target": "カバレッジターゲット",
"CPE": "CPE",
"Created": "情報タイプ",
"Created at": "で作成",
"Created by": "作成者",
"Created date": "キーワード",
"Creation date": "作成日",
"Creator of related entity": "関連エンティティの作成者",
"Creator tool": "作成日",
"Creators": "クリエーター",
"Credential": "資格情報",
"Credential last modification date": "クレデンシャル最終変更日",
"Credentials": "資格",
"CRL distribution points": "CRL配布ポイント",
"Csv_mapper": "Csv_mapper",
"Csv_mapper_id": "Csv_mapper_id",
"Csv_mapper_type": "Csv_mapper_type",
"Ctime": "Ctime",
"Current draft context": "現在のドラフト状況",
"Current state cursor": "ヘッダー",
"Current state date": "摂取実行",
"Current stated date": "現在の記載日",
"Current_state_hash": "現在の状態_ハッシュ",
"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 Exploitability (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 Complexity (AC)": "CVSS3 攻撃複雑度 (AC)",
"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 Exploit Code Maturity (E)": "CVSS3 エクスプロイトコードの成熟度 (E)",
"CVSS3 Integrity impact": "CVSS3 完全性の影響",
"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 Scope (S)": "CVSS3 スコープ (S)",
"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)": "機密性への影響 (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)",
"CVV": "CVV",
"CWD": "CWD",
"Dark accent": "ダークアクセント",
"Dark background": "暗い背景",
"Dark logo": "ダークロゴ",
"Dark logo collapsed": "ダークロゴ折りたたみ",
"Dark logo login": "ダークロゴログイン",
"Dark navigation": "暗いナビゲーション",
"Dark paper": "暗い紙",
"Dark primary": "暗いプライマリ",
"Dark secondary": "ダークセカンダリー",
"Dashboard": "ダッシュボード",
"Dashboard id": "ダッシュボードID",
"Data": "データ",
"Data source": "レイヤー",
"Data type": "データ型",
"Date": "日付",
"Date of birth": "性別",
"Decay applied rule": "マーキング",
"Decay base score": "崩壊ベーススコア",
"Decay base score date": "崩壊履歴",
"Decay exclusion applied rule": "崩壊除外ルール適用",
"Decay factor": "減衰係数",
"Decay history": "ディケイ適用ルール",
"Decay next reaction date": "崩壊ベーススコア",
"Decryption key": "復号キー",
"Default assignation": "デフォルトの割り当て",
"Default dashboard": "デフォルトダッシュボード",
"Default Group used for integration user creation": "統合ユーザーの作成に使用されるデフォルトグループ",
"Default hidden types": "デフォルトの非表示タイプ",
"Default marking": "デフォルトのマーキング",
"Default time field": "デフォルト時間フィールド",
"Definition": "ソース名",
"Deleted by": "削除者",
"Deleted elements": "削除された要素",
"Deleted entity id": "削除されたエンティティID",
"Deleted entity name": "削除されたエンティティ名",
"Deleted entity type": "削除されたエンティティタイプ",
"Deletion date": "削除日",
"Demographics": "人口統計",
"DEP enabled": "DEP有効",
"Description": "説明",
"Descriptions": "説明",
"Detail changes": "詳細変更",
"Detection": "外部ID",
"Digest period": "サマリー期間",
"Disabled": "無効",
"Dismissible": "無視可能",
"Display name": "表示名",
"DLL service": "DLLサービス",
"Do you want to delete this support package?": "このサポートパッケージを削除しますか?",
"Draft change": "ドラフト変更",
"Draft ids": "ドラフトID",
"Draft name": "ドラフト名",
"Draft operation": "ドラフト操作",
"Draft status": "ドラフト状況",
"Draft update patch": "ドラフト更新パッチ",
"DST": "DST",
"DST byte count": "DST バイト数",
"DST packets": "DSTパケット",
"DST Payload": "DSTペイロード",
"DST port": "DSTポート",
"Due date": "個人的な動機",
"Due date (UTC)": "期限 (UTC)",
"Duplicate a CSV mapper": "CSVマッパーを複製する",
"Duplicate a feed": "フィードの複製",
"Duration": "持続時間",
"dynamic": "ダイナミック",
"Dynamic from": "ダイナミック",
"Dynamic source": "動的ソース",
"Dynamic target": "動的ターゲット",
"Dynamic to": "動的に",
"Element ID": "要素ID",
"Email": "電子メール",
"Email date": "メール送信日",
"Email from": "メール送信元",
"Email Object": "電子メール",
"Email to": "メール送信先",
"Emails": "電子メール",
"Enabled": "有効",
"Encapsulates": "カプセル化",
"Encaspulated by": "によってカプセル化される",
"Encoding": "関連クリエーター",
"Encryption algorithm": "暗号化アルゴリズム",
"End date": "回数",
"Endd date": "終了日",
"Enforce reference": "属性設定",
"Enrichment resolution": "濃縮分解能",
"Enterprise edition date": "エンタープライズ版日付",
"Enterprise edition license": "エンタープライズ版ライセンス",
"Entity": "エンティティ",
"Entity details": "団体詳細",
"Entity dynamic mapping": "エンティティ動的マッピング",
"Entity ID": "エンティティID",
"Entity metrics": "エンティティ",
"Entity name": "エンティティ名",
"Entity Type": "エンティティタイプ",
"Entity type": "エンティティタイプ",
"Environment variables": "環境変数",
"EPSS Percentile": "EPSS - パーセンタイル",
"EPSS Score": "EPSS - スコア",
"Equal": "イコール",
"Error": "エラー",
"Errors": "エラー",
"Ethnicity": "民族",
"Event access": "イベントアクセス",
"Event end date": "イベント終了日",
"Event scope": "イベントスコープ",
"Event source": "イベントソース",
"Event start date": "イベント開始日",
"Event status": "イベントステータス",
"Event type": "イベントタイプ",
"Event types": "パターンタイプ",
"Event user metadata": "イベントユーザメタデータ",
"Excluded IDs": "除外ID",
"Exclusion list cache build manager": "キャッシュビルドマネージャーの除外リスト",
"Exclusion list cache sync manager": "除外リストキャッシュ同期マネージャ",
"Exclusion list entity types": "除外リストのエンティティタイプ",
"Exclusion list file size": "除外リストのファイルサイズ",
"Exclusion list values count": "除外リストの値数",
"EXCLUSION_LIST_CACHE_BUILD_MANAGER": "キャッシュビルドマネージャーの除外リスト",
"EXCLUSION_LIST_CACHE_SYNC_MANAGER": "除外リストキャッシュ同期マネージャ",
"Expected import number": "インポート予定番号",
"Expected number": "予想番号",
"Expiration date": "有効期限",
"Expires at": "有効期限",
"Explanation": "意見",
"Export scope": "エクスポートスコープ",
"Export type": "エクスポートタイプ",
"Extended key usage": "拡張キーの使用",
"Extensions": "拡張機能",
"External": "外部",
"External ID": "最初に見た",
"External id": "キルチェーン名",
"External reference": "外部参照",
"External references": "外部参照",
"External URI": "外部URI",
"Eye color": "髪の色",
"False positive": "作成",
"Feed attributes": "フィード属性",
"Feed types": "フィードタイプ",
"Field": "フィールド",
"File errors": "カルーセルに含める",
"File ID": "ファイルID",
"File id": "ファイルID",
"File identifier": "製品",
"File markings": "ファイルマーク",
"File messages": "ファイルエラー",
"File metadata": "ファイル名",
"File mime": "ファイルmime",
"File name": "ファイル名",
"File size": "ファイルサイズ",
"Filename": "作業台ラベル",
"Files": "ファイル",
"Filters": "フィルタ",
"Fingerprint MD5": "フィンガープリント MD5",
"Fingerprint sha256": "フィンガープリント sha256",
"Fintel template widgets": "フィンテル テンプレート ウィジェット",
"First observation": "最初の観測",
"First observed": "最後に観測された",
"First seen": "最後に見た",
"First seen active": "初見アクティブ",
"Firstname": "名前",
"Form Schema": "フォームスキーマ",
"Format": "フォーマット",
"Freshness date": "鮮度期限",
"From": "から",
"from": "から",
"Garbage collection manager": "ゴミ収集マネージャー",
"Gender": "職種",
"Goals": "リソースレベル",
"Google analytics V4": "グーグルアナリティクスV4",
"Gradiant From Color": "色からのグラデーション",
"Gradiant To Color": "色へのグラデーション",
"Grant": "グラント",
"Grantable groups": "開始",
"Granted by": "によって許可される",
"Granted refs": "参考文献",
"Graph data": "グラフデータ",
"Group": "グループ",
"Group Confidence Level": "グループ信頼度",
"Group name": "グループ名",
"Grouping types": "グループ分け",
"Groups": "グループ",
"Groups management": "グループ管理",
"Groups restriction IDs": "グループ制限ID",
"Hair color": "身長",
"Hash": "外部ID",
"Hashes": "ハッシュ",
"Header": "表現",
"Header authentication configuration": "ヘッダー認証設定",
"Headers": "ヘッダー",
"HeaderStrategy": "ヘッダー戦略",
"Height": "身長",
"Height measure": "身長メジャー",
"Height measure date": "身長測定日",
"Hidden": "ヒドゥン",
"Holder name": "ホルダー名",
"HUB_REGISTRATION_MANAGER": "ハブ登録マネージャー",
"IBAN": "IBAN",
"ID": "ID",
"Id": "イド",
"Identities propagation in reports": "レポートにおけるアイデンティティの伝播",
"Identity class": "アイデンティティクラス",
"IDP Identifier": "IDP識別子",
"Image": "画像",
"Implementation languages": "能力",
"In PIR": "PIR内",
"In regards of": "に関して",
"In regards of (dynamic)": "ダイナミック)に関して",
"Incident response type": "インシデント対応タイプ",
"Incident type": "重大度",
"Include header": "ヘッダを含む",
"Include in carousel": "カルーセルの順番",
"Include inferences": "推論を含む",
"Included IDs": "含まれるID",
"Index date": "添付ファイル",
"Indicator decay manager": "インジケーター・ディケイ・マネージャー",
"Indicator filters": "インジケーターフィルター",
"Indicator observable types": "インジケータの観測可能なタイプ",
"Indicator pattern": "指標パターン",
"Indicator types": "有効期限",
"Indicators propagation in reports": "レポート内の指標伝播",
"Infer an incident when a sighting is created for a valid indicator.": "有効なインジケーターに対して目撃情報が作成された場合、そのインシデントを推測する。",
"Infer sightings based on observed data and indicators.": "観測データと指標に基づいて目撃情報を推測する。",
"Infer the targeting of an entity through a sighting of a specific indicator.": "特定の指標を目撃した場合、その指標をターゲットとしているエンティティを推測する。",
"Inference of targeting via a sighting": "目撃情報によるターゲットの推測",
"Inference weight": "推論の重み",
"Information": "最終更新日",
"Information types": "テイクダウンの種類",
"Infrastructure types": "インフラの種類",
"Ingestion running": "コレクション",
"Ingestion state": "摂取状態",
"Ingestion_running": "Ingestion_running(インジェスト実行中",
"Inhibit any policy": "任意のポリシーの禁止",
"Initiator": "イニシエータ",
"Input": "入力",
"Installed software": "分析 SCO",
"Instance filters": "インスタンスフィルタ",
"Instance trigger": "通知タイプ",
"Integrity impact": "可用性への影響",
"Integrity level": "完全性レベル",
"Internal aliases": "内部エイリアス",
"Internal file": "内部ファイル",
"Internal id": "内部ID",
"Investigated entities": "",
"Is built-in": "内蔵",
"Is detected": "検出される",
"Is enabled": "有効",
"Is family": "アーキテクチャの実行環境",
"Is inferred": "推測される",
"Is live": "ライブ",
"Is read": "ユーザー",
"Is sensitive changes allowed": "センシティブな変更は許されるか",
"Issuer": "発行者",
"Issuer alternative name": "発行者別名",
"Job title": "配偶者の有無",
"Json_mapper_id": "Json_mapper_id",
"Key": "キー",
"Key length": "鍵の長さ",
"Key modification date": "キーの変更日",
"Key type": "キータイプ",
"Key usage": "キーの使用",
"Keywords": "メタデータ日付",
"Kill chain name": "フェーズ名",
"Kill chain order": "キルチェーンオーダー",
"Kill chain phase": "キルチェーンフェーズ",
"Label": "ラベル",
"Label IDs": "ラベルID",
"Label of related entity": "関連エンティティのラベル",
"Labels": "エンコード",
"Lang": "カテゴリ",
"Language": "言語",
"Languages": "言語",
"Last coverage": "最後の取材",
"Last deleted count": "最終削除回数",
"Last event id": "最終イベントID",
"Last execution": "最終実行",
"Last execution date": "最終実行日",
"Last ingestion run": "最終摂取ラン",
"Last modification date": "最終修正日",
"Last modification since": "アップロード状況",
"Last modifier": "最後の修飾子",
"Last observation": "最後の観測",
"Last observed": "観測数",
"Last PIR score date": "最終PIRスコア日付",
"Last run": "最後の実行",
"Last run end date": "物語タイプ",
"Last run start date": "最終実行終了日",
"Last score evolution": "最終スコアの推移",
"Last seen": "目的",
"Last update": "最終更新日",
"Lastname": "姓",
"Latest containers": "最新コンテナ",
"Latest created relationships": "最新作成リレーションシップ",
"Latitude": "緯度",
"Layers": "6 - 真実は判断できない",
"LdapStrategy": "LDAP戦略",
"Lifetime": "生涯",
"Light accent": "ライトアクセント",
"Light background": "明るい背景",
"Light logo": "ライトロゴ",
"Light logo collapsed": "ライトロゴ折りたたみ",
"Light logo login": "ライトロゴ",
"Light navigation": "ライトナビゲーション",
"Light paper": "ライトペーパー",
"Light primary": "ライトプライマリ",
"Light secondary": "ライトセカンダリ",
"Likelihood": "コンテンツマッピング",
"Linked objects": "リンクオブジェクト",
"Linked to": "リンク先",
"List of authentication strategy migrated": "移行した認証ストラテジーのリスト",
"List of parameters": "パラメータ一覧",
"Listen deletion": "リッスン削除",
"Listen through http callback": "httpコールバックを介してリッスンする",
"Local authentication": "ローカル認証",
"LocalStrategy": "地域戦略",
"Location propagation": "位置情報の伝播",
"Location type": "ロケーションタイプ",
"Locations propagation in reports": "レポートにおける位置情報の伝播",
"Log sources": "インフラの種類",
"Login message": "ログインメッセージ",
"Logout remote": "ログアウト・リモート",
"Longitude": "経度",
"LZJD": "LZJD",
"Magic number hex": "マジックナンバー16進数",
"Main entity type": "主体タイプ",
"Main observable type": "崩壊次反応日",
"Maliciousness": "悪意",
"Malware analysis operating System": "マルウェア解析オペレーティングシステム",
"Malware analysis sample": "マルウェア分析サンプル",
"Malware types": "ファミリー",
"Manage access restrictions": "アクセス制限の管理",
"Manage advanced access restrictions on entities": "エンティティの高度なアクセス制限を管理する",
"Manager contracts": "マネージャー契約",
"Manager ID": "設定",
"Manager running": "マネージャー実行中",
"Manifest": "タグ",
"Mappings": "マッピング",
"Marital status": "目の色",
"Marking": "現在の状態",
"Marking color": "マーキングの色",
"Marking definition": "マーキング定義",
"Marking definition labels": "定義ラベルのマーキング",
"Marking definitions": "マーキングの定義",
"Marking of related entity": "関連エンティティのマーク",
"Marking order": "マーキング命令",
"Marking Type": "マーキング・タイプ",
"Marking type": "マーキングタイプ",
"Markings": "マーキング",
"Masked Token": "Masked Token",
"Match Pir with source of relationship": "海賊と関係元を一致させる",
"Max concurrent sessions (0 equals no maximum)": "最大同時セッション数(0は最大なし)",
"Max Confidence": "最大信頼度",
"Max policy length": "最大ポリシー長",
"Max shareable markings": "共有可能な最大マーキング",
"Maximum marking": "最大マーキング",
"Maximum retention": "最大保有期間",
"Maximum retention unit": "最大保持単位",
"MD5": "MD5",
"Measure": "測定日",
"Measure date": "重量",
"Media category": "メディアカテゴリ",
"Media publication date": "メディア掲載日",
"media_category": "メディアカテゴリー",
"Message": "メッセージ",
"Message ID": "メッセージID",
"Messages": "メッセージ",
"Metadata date": "更新日",
"Metric name": "メトリック名",
"Metric value": "メトリクス値",
"Mime type": "Mimeタイプ",
"Min policy length": "最小ポリシー長",
"Min policy lowercase": "最小ポリシーの小文字",
"Min policy number": "最小ポリシー数",
"Min policy symbols": "最小ポリシー記号",
"Min policy uppercase": "最小ポリシーの大文字",
"Min policy words": "最小政策語数",
"Modification date": "変更日",
"Modified": "変更",
"Modified date": "修飾子",
"Modifier": "印刷日",
"Modules": "解析エンジンのバージョン",
"Monochrome labels and entity types": "モノクロラベルとエンティティタイプ",
"Most recent history": "最新の履歴",
"Mtime": "Mtime",
"Multipart": "マルチパート",
"Name": "名前",
"Name constraints": "名前制約",
"Name encoding": "名前エンコーディング",
"Narrative types": "更新日",
"Network traffic active": "アクティブなネットワークトラフィック",
"Network traffic end date": "ネットワークトラフィック終了日",
"Network traffic start date": "ネットワークトラフィック開始日",
"New value": "新しい値",
"No creators accumulation": "クリエーターの蓄積がない",
"No dependencies": "依存関係なし",
"Not equal": "等しくない",
"Note types": "尤度",
"Notes about this entity": "このエンティティに関するメモ",
"Notification content": "通知タイトル",
"Notification event message": "通知関連インスタンス",
"Notification events": "通知イベントメッセージ",
"Notification message": "通知メッセージ",
"Notification operation": "読み込まれる",
"Notification related instance": "通知操作",
"Notification title": "通知イベント",
"Notification type": "通知内容",
"Notifier connector ID": "通知コネクタID",
"Notifiers": "受信者",
"Number": "番号",
"Number observed": "説明",
"Number of nodes in cluster": "クラスタのノード数",
"Number of sub-keys": "サブキーの数",
"Object markings": "オブジェクトのマーキング",
"Objective": "概要",
"Observable content": "観測可能な内容",
"Observable description": "観測可能な記述",
"Observable type": "観測可能タイプ",
"Observables": "観測可能なもの",
"Observables propagation in reports": "レポートにおける観測値の伝播",
"OpenCTI version": "OpenCTI バージョン",
"Opened connection": "オープン接続",
"OpenIDConnectStrategy": "OpenIDコネクト戦略",
"Operating System": "インストールされているソフトウェア",
"Operation": "操作",
"Operator": "演算子",
"Opinion": "レポートの種類",
"Opinion metrics": "意見測定基準",
"Opinions max": "最大意見数",
"Opinions mean": "意見の平均値",
"Opinions min": "意見の最小値",
"Opinions total number": "意見総数",
"Order": "オーダー",
"Order in carousel": "カルーセル内の順序",
"Order mode for queries": "クエリーのオーダーモード",
"Organization": "組織",
"Organization propagation via participation": "参加による組織の伝播",
"Organization type": "権限",
"Organizations": "団体",
"Organizations management": "組織管理",
"Origin of the case": "ケースの由来",
"Original creation date": "オリジナル作成日",
"Other entities": "その他",
"OTP mandatory": "OTP必須",
"OTP QR": "ワンタイムパスワードQR",
"OTP secret": "OTPシークレット",
"Out of Range": "5 - ありえない",
"Outcomes": "通知者",
"Overrides": "オーバーライド",
"Overview layout customization": "レイアウトカスタマイズの概要",
"Owner sid": "オーナーサイド",
"Package status": "パッケージの状態",
"Package upload directory": "パッケージアップロードディレクトリ",
"Package upload status on each node": "各ノードのパッケージアップロード状況",
"Package url": "パッケージのURL",
"Parent": "親",
"Parent directory": "親ディレクトリ",
"Parent types": "親タイプ",
"Parent-child propagation": "親子伝播",
"Participants": "参加者",
"Password": "パスワード",
"Path": "パス",
"Path encoding": "パスエンコーディング",
"Pattern": "インジケータの種類",
"Pattern type": "パターンバージョン",
"Pattern version": "パターン",
"Payload": "ペイロード",
"Period": "トリガー時間",
"Periodicity": "周期性",
"Permissions required": "検出",
"Persona name": "ペルソナ名",
"Persona Type": "ペルソナのタイプ",
"Persona type": "ペルソナタイプ",
"Personal motivation": "道具の種類",
"Personal motivations": "生年月日",
"Phase name": "終了日",
"PID": "PID",
"PIR Criteria": "PIR基準",
"PIR Explanations": "PIRの説明",
"PIR explanations criterion": "PIRの説明基準",
"PIR explanations dependencies": "PIRの説明の依存関係",
"PIR explanations dependencies author ID": "PIRの説明の依存関係の著者ID",
"PIR explanations dependencies element ID": "PIRの説明の依存要素ID",
"PIR Filters": "PIRフィルター",
"PIR ID": "PIR ID",
"PIR IDS": "PIR IDS",
"PIR information": "PIR情報",
"PIR Rescan in days": "PIR再スキャン日数",
"PIR Score": "PIRスコア",
"PIR scores": "PIRスコア",
"PIR Type": "PIRタイプ",
"Platform creation date": "プラットフォーム作成日",
"Platform data sharing max markings": "プラットフォームのデータ共有 最大マーキング",
"Platform email": "プラットフォームメール",
"Platform entity files ref": "プラットフォーム非表示タイプ",
"Platform favicon": "プラットフォームのファビコン",
"Platform hidden type": "強制参照",
"Platform language": "プラットフォーム言語",
"Platform messages": "プラットフォームメッセージ",
"Platform organization": "プラットフォームの組織",
"Platform theme": "プラットフォームテーマ",
"Platform title": "プラットフォームタイトル",
"Platform version": "プラットフォームバージョン",
"Platform(s) affinity": "プラットフォーム",
"Platforms": "必要なパーミッション",
"Playbook definition": "プレイブックの定義",
"Playbook running": "プレイブックの実行",
"Policy constraints": "ポリシー制約",
"Policy mappings": "ポリシーのマッピング",
"Position": "位置",
"Postal code": "番地",
"Precision": "精度\n\nプラットフォーム",
"Prevent default groups": "デフォルトグループの防止",
"Previous value": "前の値",
"Primary motivation": "二次的動機",
"Print date": "アップロード日",
"Priority": "優先度",
"Priority group": "優先グループ",
"Private key usage not after": "秘密鍵の使用は",
"Private key usage not before": "秘密鍵の使用",
"Privileged": "特権",
"Process creation date": "プロセス作成日",
"Processed date": "処理日",
"Processed number": "処理番号",
"Product": "設定バージョン",
"Product Name": "製品名",
"Product name": "商品名",
"Product version": "製品バージョン",
"Propagate a targeting from a child to its parent via attribution.": "アトリビューションにより、子から親へターゲティングを伝播する。",
"Propagate a targeting from a child to its parent via belonging.": "#__# 所属を経由して、子から親へターゲティングを伝播する。",
"Propagate a targeting from a child to its parent via location.": "#__# ロケーションによって、子から親へターゲティングを伝播する。",
"Propagate a usage from a child to its parent via attribution.": "子から親へ、属性経由で利用を伝播する。",
"Propagate a usage from a subtechnique to its parent.": "使用法をサブテクニックから親に伝播する。",
"Propagate an organization from a child to its parent via participation.": "参加によって子から親に組織を伝播する。",
"Propagate attributions across parents or children.": "親子間で属性を伝播させる。",
"Propagate belonging across parents or children.": "親子間で所属を伝播する",
"Propagate indicators of an observable in a report.": "レポート中の観察可能な指標を伝播する。",
"Propagate locations across parents or children.": "親子間で位置を伝播する",
"Propagate observables of an indicator in a report.": "レポート内で指標の観測値を伝播する。",
"Propagate related objects over the whole graph. Testing only.": "グラフ全体に関連オブジェクトを伝播。テストのみ。",
"Propagate relation between 2 objects via a common observable.": "2つのオブジェクト間の関係を共通の観測値を介して伝播する。",
"Propagate sightings of indicators to observables.": "指標を観測値に伝播。",
"Propagate sightings of observables to indicators.": "観測値を指標に伝播する。",
"Propagate targeting when the target relationship is located somewhere.": "ターゲット関係がどこかにある場合、ターゲティングを伝播する。",
"Propagate the parents of a location in a report.": "レポート内の位置の親を伝播する。",
"Propagate the parents of an identity in a report.": "レポート内のアイデンティティの親を伝播する。",
"Protocols": "プロトコル",
"Provider": "プロバイダ",
"Provider Configuration": "プロバイダー設定",
"Provider identifier": "プロバイダー識別子",
"Public": "公開",
"Public feed": "公開フィード",
"Public key": "公開鍵",
"Public manifest": "公開マニフェスト",
"Public stream": "公開ストリーム",
"Public taxii": "公租公課",
"Publication date": "出版日",
"publication_date": "掲載日",
"PublicKey": "パブリックキー",
"Query attributes": "クエリ属性",
"Raise incident based on sighting": "目撃情報による事件発生",
"Rating": "チャンネルタイプ",
"Raw": "生",
"Raw email": "生メール",
"Reaction points": "反応点",
"Received lines": "受信行数",
"Reception date": "受付日",
"Recipients": "トリガーID",
"Related creator": "関連外部参照",
"Related entities": "関連団体",
"Related entity": "関連エンティティ",
"Related external reference": "ファイルメッセージ",
"Related type": "関連タイプ",
"Relation propagation testing rule": "関係伝播テストルール",
"Relation propagation via an observable": "オブザーバブルを介した関係伝播",
"Relations connections": "関係接続",
"Relationship type": "関係タイプ",
"Reliability": "信頼性",
"Reliability (of author)": "信頼性",
"Reliability (self or author)": "信頼性(自己または著者)",
"Reliability (self)": "信頼性(自己)",
"Reliability of author": "著者の信頼性",
"Remaining count": "残り回数",
"Remove access restrictions": "アクセス制限の解除",
"Remove advanced access restrictions on entities": "エンティティの高度なアクセス制限を移動する",
"Removed": "削除された",
"Removed value": "削除された値",
"Report propagation": "報告伝播",
"Report publication date": "レポート発行日",
"Report types": "脅威ハンティング",
"Representation": "表現",
"Representations": "スキップ行文字",
"Representative": "代表者",
"Request access data as json field": "アクセスデータをjsonフィールドでリクエスト",
"Request access workflow": "リクエストアクセスワークフロー",
"Resolves to": "に解決する",
"Resource level": "主な動機",
"Restrict delete to its own entities": "削除を自身のエンティティに制限する",
"Result": "VMホスト",
"Result name": "分析結果",
"Retention manager": "リテンション・マネージャー",
"Revoke score": "失効点数",
"Revoked": "ラング",
"RIR": "RIR",
"Role": "役割",
"Roles": "役割",
"Rolling time": "ローリングタイム",
"Rule": "ルール",
"Running": "実行中",
"SamlStrategy": "サムルの戦略",
"Sample": "マネージャーID",
"Samples": "サンプル",
"Scheduling period": "スケジューリング期間",
"Scope": "範囲",
"Score": "スコア",
"SDHASH": "SDHASH",
"Search": "検索",
"Secondary motivation": "郵便番号",
"Security platform type": "セキュリティ・プラットフォーム・タイプ",
"Selected attribute date": "選択された属性の日付",
"Selected IDs": "選択されたID",
"Self signed": "自己署名",
"Send email from template": "テンプレートからのメール送信",
"Send email from template to targets": "テンプレートからターゲットにメールを送信",
"Sender": "送信者",
"Sender email": "送信者メールアドレス",
"Separator": "セパレーター",
"Serial number": "シリアル番号",
"Service account": "サービスアカウント",
"Service name": "サービス名",
"Service status": "サービスステータス",
"Service type": "サービスタイプ",
"Setting": "最終実行開始日",
"Severity": "ソース",
"SHA-1": "SHA-1",
"SHA-256": "SHA-256",
"SHA-512": "SHA-512",
"SHA3-256": "SHA3-256",
"SHA3-512": "SHA3-512",
"Shared with": "と共有",
"Show submenu icons": "サブメニューアイコンを表示する",
"Sightings of observables via observed data": "観測データを介した観測可能性の目撃",
"Sightings propagation from indicator": "指標からの目撃伝播",
"Sightings propagation from observable": "観測データによる 観測値の伝播",
"Signature algorithm": "署名アルゴリズム",
"Size": "サイズ",
"Skip line character": "情報",
"Sophistication": "個人的な動機",
"Source": "有効",
"Source connector": "ソースコネクター",
"Source entity": "ソースエンティティ",
"Source name": "ハッシュ",
"Source type": "ソースタイプ",
"SRC": "SRC",
"SRC byte count": "SRCバイト数",
"SRC packets": "SRCパケット数",
"SRC Payload": "SRC ペイロード",
"SRC port": "SRCポート",
"SSDEEP": "SSDEEP",
"SSL verify": "SSLベリファイ",
"SSO Advanced configuration": "SSO詳細設定",
"SSO Configuration": "SSOの設定",
"Standard id": "標準ID",
"Start": "期限",
"Start date": "開始日",
"Start time": "開始時間",
"Start type": "開始タイプ",
"Startup information": "起動情報",
"State reset": "状態リセット",
"State reset timestamp": "状態リセットのタイムスタンプ",
"Stateless session": "ステートレス・セッション",
"Status": "ステータス",
"STIX IDs": "STIX ID",
"Stop time": "停止時間",
"Strategy": "ストラテジー",
"Stream id": "ストリームID",
"Street address": "マルウェアの種類",
"Sub pagination activation": "サブページネーション",
"Sub pagination uri path": "サブページ分割のURIパス",
"Sub pagination verb": "サブページ分割動詞",
"Subject": "件名",
"Subject alternative name": "サブジェクト代替名",
"Subject directory attributes": "サブジェクトディレクトリ属性",
"Subject key identifier": "サブジェクトキー識別子",
"Subject public key algorithm": "対象公開鍵アルゴリズム",
"Subject public key exponent": "主題の公開鍵の指数",
"Subject public key modulus": "対象公開鍵モジュラス",
"Submission date": "分析開始日",
"SWID": "SWID",
"Synchronized": "同期",
"Tags": "調査対象",
"Takedown types": "タスク",
"Target entity": "ターゲットエンティティ",
"Target type": "ターゲットタイプ",
"Targeting propagation via attribution": "アトリビューションによるターゲティング伝播",
"Targeting propagation via belonging": "帰属による伝播目標",
"Targeting propagation via location": "場所によるターゲティング",
"Targeting propagation when located": "居場所による伝播目標",
"Task": "課題",
"Task filters": "タスクフィルタ",
"Tasks": "ケーステンプレート",
"Taxii response more value": "Taxii レスポンスの値を増やす",
"Technique": "技術",
"Technique ID": "テクニックID",
"Telemetry manager": "テレメトリー・マネージャー",
"TELEMETRY_MANAGER": "テレメトリー・マネージャー",
"Template": "テンプレート",
"Template and utils": "テンプレートとユーティリティ",
"Template body": "テンプレート本文",
"Template content": "テンプレートの内容",
"Template description": "テンプレートの説明",
"Template filters": "テンプレートフィルター",
"Template id": "テンプレートID",
"Template ID": "テンプレートID",
"Template name": "テンプレート名",
"Template widget description": "テンプレート・ウィジェットの説明",
"Template widget name": "テンプレート・ウィジェット名",
"Template widgets IDs": "テンプレート・ウィジェットID",
"Templates": "テンプレート",
"Text Color": "テキストの色",
"Theme": "テーマ",
"Theme accent": "テーマ・アクセント",
"Theme background": "テーマ背景",
"Theme login aside color": "テーマログイン脇の色",
"Theme login aside gradient end": "テーマログイン脇グラデーション終了",
"Theme login aside gradient start": "テーマログイン脇グラデーション開始",
"Theme login aside image": "テーマログイン脇画像",
"Theme logo": "テーマロゴ",
"Theme logo collapsed": "テーマロゴ折りたたみ",
"Theme logo login": "テーマロゴ",
"Theme nav": "テーマナビ",
"Theme paper": "テーマペーパー",
"Theme primary": "テーマプライマリー",
"Theme secondary": "テーマ二次",
"Theme text color": "テーマの文字色",
"This list displays all the entities that have some access restriction enabled, meaning that they are only accessible to some specific users. You can remove this access restriction on this screen.": "このリストには、一部のアクセス制限が有効になっている、つまり一部の特定のユーザーしかアクセスできないエンティティがすべて表示されます。この画面では、このアクセス制限を削除できます。",
"Threat actor types": "洗練度",
"Threat hunting": "ログソース",
"Timestamp": "タイムスタンプ",
"Title": "タイトル",
"TLSH": "TLSH",
"To": "宛先",
"to": "から",
"Token": "トークン",
"Tool types": "道具のバージョン",
"Tool version": "基本スコア",
"Tracking number": "追跡番号",
"Translated": "翻訳",
"Translations": "翻訳",
"Trigger": "トリガー",
"Trigger for personal notifiers": "個人通知機のトリガー",
"Trigger IDs": "期間",
"Trigger name": "トリガー名",
"Trigger scope": "成果",
"Trigger time": "トリガータイプ",
"Trigger type": "インスタンス・トリガー",
"Type": "タイプ",
"Type affinity": "タイプ",
"Type of related entity": "関連エンティティのタイプ",
"Types": "タイプ",
"Unit system": "ユニットシステム",
"Unshare with organizations within the platform": "プラットフォーム内の組織との共有を解除する",
"Updated": "トリガースコープ",
"Updated at": "更新日時",
"Upload date": "ファイル識別子",
"Upload status": "ファイルのメタデータ",
"Uploaded files": "アップロードされたファイル",