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
Hi all, I've recently faced an issue with MISP app (rc-cts-misp):
when a thread feed service returns for an artifact a hit with duplicating field names, Resilient doesn't display the hit and doesn't make the artifact red. I've fixed it locally like here siniysv@1cc78f8
My fix just makes a field name unique by adding a number to it.
Second issue is with MISP tag parsing, the app expects to see tags with colon(:) but there might be a single word tags as well. Again, fixed it locally by adding try-except siniysv@1cc78f8
There are issues with Chinese symbols in artifacts as well, the app throws exception because of Unicode->ASCII conversion: UnicodeEncodeError in LOG.info("MISP Lookup: " + str(artifact_value)), probably because of Python version.
The text was updated successfully, but these errors were encountered:
Hi all, I've recently faced an issue with MISP app (rc-cts-misp):
when a thread feed service returns for an artifact a hit with duplicating field names, Resilient doesn't display the hit and doesn't make the artifact red. I've fixed it locally like here siniysv@1cc78f8
My fix just makes a field name unique by adding a number to it.
Second issue is with MISP tag parsing, the app expects to see tags with colon(:) but there might be a single word tags as well. Again, fixed it locally by adding try-except siniysv@1cc78f8
There are issues with Chinese symbols in artifacts as well, the app throws exception because of Unicode->ASCII conversion: UnicodeEncodeError in LOG.info("MISP Lookup: " + str(artifact_value)), probably because of Python version.
The text was updated successfully, but these errors were encountered: