mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-07 20:28:48 -05:00
[GH-ISSUE #47] Import entities: same type entities not imported properly #318
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ameygat on GitHub (Nov 12, 2025).
Original GitHub issue: https://github.com/reconurge/flowsint/issues/47
Import entities when I try to import csv file with multiple domains from a csv file with structure:
domain,detection.fyi
domain,ridiculous-breakpoint-gw.aws-use1.cloud-ara.tyk.io
domain,boriz400.com
The csv file has 27 records but all the Labels are named as "domain" so only 1 node was imported after clicking button "Import 27 Entities"
At second and third time of test it added 0 records not sure why is that.
When I edit the first some records with label like "domain", "domain1" , "domain2" , "domain3", "domain4", the import added 4 records and kept rest of records with "domain" only 5 records were added out of 27. So I think solution might be unique labels at time of import.
@dextmorgn commented on GitHub (Nov 12, 2025):
Right, so what happens is the parser doesn't detect
detection.fyito be the key to use for the labelling.Maybe the user should be able to choose a key to use as default label key, in your case
detection.fyi.I'll work on enhancing this import feature.
In the meanwhile, if you still want to import your list (as you don't have that many keys in your csv it seems) I'd suggest importing your list as txt file, under the format:
It should take you less time that inserting them all by hand, and should detect them correctly.
@ameygat commented on GitHub (Nov 13, 2025):
Thanks for the quick reply. I would use the temporary solution given by you for now.