Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
131 changes: 131 additions & 0 deletions ak_vendor/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,137 @@ class Meta:
NONE = ["N", "None"]


@choices
class CVSSV4AttackVectorEnum:
"""
CVSSv4 attack vector
"""

class Meta:
NETWORK = ["N", "Network"]
ADJACENT = ["A", "Adjacent"]
LOCAL = ["L", "Local"]
PHYSICAL = ["P", "Physical"]


@choices
class CVSSV4AttackComplexityEnum:
"""
CVSSv4 attack complexity
"""

class Meta:
LOW = ["L", "Low"]
HIGH = ["H", "High"]


@choices
class CVSSV4PrivilegesRequiredEnum:
"""
CVSSv4 privileges required
"""

class Meta:
NONE = ["N", "None"]
LOW = ["L", "Low"]
HIGH = ["H", "High"]


@choices
class CVSSV4AttackRequirementsEnum:
"""
CVSSv4 attack requirements
"""

class Meta:
NONE = ["N", "None"]
PRESENT = ["P", "Present"]


@choices
class CVSSV4VulnerableConfidentialityImpactEnum:
"""
CVSSv4 vulnerable system confidentiality impact (VC)
"""

class Meta:
HIGH = ["H", "High"]
LOW = ["L", "Low"]
NONE = ["N", "None"]


@choices
class CVSSV4VulnerableIntegrityImpactEnum:
"""
CVSSv4 vulnerable system integrity impact (VI)
"""

class Meta:
HIGH = ["H", "High"]
LOW = ["L", "Low"]
NONE = ["N", "None"]


@choices
class CVSSV4VulnerableAvailabilityImpactEnum:
"""
CVSSv4 vulnerable system availability impact (VA)
"""

class Meta:
HIGH = ["H", "High"]
LOW = ["L", "Low"]
NONE = ["N", "None"]


@choices
class CVSSV4SubsequentConfidentialityImpactEnum:
"""
CVSSv4 subsequent system confidentiality impact (SC)
"""

class Meta:
HIGH = ["H", "High"]
LOW = ["L", "Low"]
NONE = ["N", "None"]


@choices
class CVSSV4SubsequentIntegrityImpactEnum:
"""
CVSSv4 subsequent system integrity impact (SI)
"""

class Meta:
HIGH = ["H", "High"]
LOW = ["L", "Low"]
NONE = ["N", "None"]


@choices
class CVSSV4SubsequentAvailabilityImpactEnum:
"""
CVSSv4 subsequent system availability impact (SA)
"""

class Meta:
HIGH = ["H", "High"]
LOW = ["L", "Low"]
NONE = ["N", "None"]


@choices
class CVSSV4UserInteractionEnum:
"""
CVSSv4 user interaction (N/P/A)
"""

class Meta:
NONE = ["N", "None"]
PASSIVE = ["P", "Passive"]
ACTIVE = ["A", "Active"]


@choices
class MFAMethodEnum:
"""
Expand Down
Binary file modified ak_vendor/locale/ja/LC_MESSAGES/django.mo
Binary file not shown.
46 changes: 39 additions & 7 deletions ak_vendor/locale/ja/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -4554,16 +4554,24 @@ msgstr "CVSS"
msgid "Version 3.0 Base Score"
msgstr "バージョン3.0ベーススコア"

#: ak_vendor/templates/report_template.html:1116
msgid "Attack vector"
#: ak_vendor/templates/report_template.html:1182
msgid "Version 4.0 Base Score"
msgstr "バージョン4.0ベーススコア"

#: ak_vendor/templates/report_template.html:1140
msgid "Attack Vector"
msgstr "アタックベクトル"

#: ak_vendor/templates/report_template.html:1120
msgid "Attack complexity"
#: ak_vendor/templates/report_template.html:1144
msgid "Attack Complexity"
msgstr "攻撃の複雑さ"

#: ak_vendor/templates/report_template.html:1126
msgid "Privileges required"
#: ak_vendor/templates/report_template.html:1196
msgid "Attack Requirements"
msgstr "攻撃要件"

#: ak_vendor/templates/report_template.html:1150
msgid "Privileges Required"
msgstr "特権が必要です"

#: ak_vendor/templates/report_template.html:1130
Expand All @@ -4586,7 +4594,31 @@ msgstr "完全性の影響"
msgid "Availability Impact"
msgstr "可用性への影響"

#: ak_vendor/templates/report_template.html:1160
#: ak_vendor/templates/report_template.html:1210
msgid "Vulnerable System Confidentiality"
msgstr "脆弱なシステムの機密性"

#: ak_vendor/templates/report_template.html:1216
msgid "Vulnerable System Integrity"
msgstr "脆弱なシステムの完全性"

#: ak_vendor/templates/report_template.html:1220
msgid "Vulnerable System Availability"
msgstr "脆弱なシステムの可用性"

#: ak_vendor/templates/report_template.html:1226
msgid "Subsequent System Confidentiality"
msgstr "その後のシステムの機密保持"

#: ak_vendor/templates/report_template.html:1230
msgid "Subsequent System Integrity"
msgstr "その後のシステムの整合性"

#: ak_vendor/templates/report_template.html:1236
msgid "Subsequent System Availability"
msgstr "その後のシステムの可用性"

#: ak_vendor/templates/report_template.html:1249
msgid "Regulatory"
msgstr "規制上"

Expand Down
Loading
Loading