You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
ernstleierzopf
changed the title
Multiple basic data types can not be recognized properly.
7. Multiple basic data types can not be recognized properly.
Jun 13, 2020
Some data types are not supported yet for various reasons. The currently supported data types are specified in source/Node.py in line self.datatype = ['string', 'integer', 'float', 'ipaddress'] # , 'datetime', 'base64', 'hex']
The main problem is that it is difficult to accurately detect these data types without too many false positives. For example, most alphanumeric strings can be interpreted as base64.
Maybe there is a way to detect these types more consistently when enough data fits. There could be a threshhold for classfying this data. The cases in test 1 are very simple and could be used to test implementations when they should be supported.
These can be tested with unittest 1.
The text was updated successfully, but these errors were encountered: