Skip to content

Commit 8fd4ec5

Browse files
authored
Merge pull request #1361 from chrisr3d/main
New tool to validate Attribute values
2 parents 528fdfa + dda5307 commit 8fd4ec5

File tree

3 files changed

+1271
-1
lines changed

3 files changed

+1271
-1
lines changed

pymisp/tools/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
from .asnobject import ASNObject # noqa
1414
from .geolocationobject import GeolocationObject # noqa
1515
from .git_vuln_finder_object import GitVulnFinderObject # noqa
16+
from .attributevalidationtool import ( #noqa
17+
AttributeValidationTool, validate_attribute, validate_attributes,
18+
validate_event, validate_object, validate_objects, ValidationError)
1619

1720
from .vehicleobject import VehicleObject # noqa
1821
from .csvloader import CSVLoader # noqa
@@ -51,5 +54,8 @@
5154
'GitVulnFinderObject', 'VehicleObject', 'CSVLoader',
5255
'SSHAuthorizedKeysObject', 'feed_meta_generator', 'update_objects',
5356
'EMailObject', 'URLObject', 'PEObject', 'PESectionObject', 'ELFObject',
54-
'ELFSectionObject', 'MachOObject', 'MachOSectionObject'
57+
'ELFSectionObject', 'MachOObject', 'MachOSectionObject',
58+
'AttributeValidationTool', 'validate_attribute', 'validate_attributes',
59+
'validate_event', 'validate_object', 'validate_objects',
60+
'ValidationError'
5561
]

0 commit comments

Comments
 (0)