openc2lib.types.targets.idn_domain_name
1from openc2lib.types.data.idn_hostname import IDNHostname 2from openc2lib.core.target import target 3 4@target('idn_domain_name') 5class IDNDomainName(IDNHostname): 6 """ OpenC2 IDNDomainName 7 8 Implements the `idn_domain_name` target (Section 3.4.1.7). 9 Internationalized Domain Name, [RFC5890], Section 2.3.2.3. 10 The current requirements are equivalend to `IDNHostname`. 11 """ 12
5@target('idn_domain_name') 6class IDNDomainName(IDNHostname): 7 """ OpenC2 IDNDomainName 8 9 Implements the `idn_domain_name` target (Section 3.4.1.7). 10 Internationalized Domain Name, [RFC5890], Section 2.3.2.3. 11 The current requirements are equivalend to `IDNHostname`. 12 """
OpenC2 IDNDomainName
Implements the idn_domain_name target (Section 3.4.1.7).
Internationalized Domain Name, [RFC5890], Section 2.3.2.3.
The current requirements are equivalend to IDNHostname.