-
released this
2026-04-11 08:20:07 -05:00 | 3 commits to main since this release📅 Originally published on GitHub: Sat, 11 Apr 2026 13:33:07 GMT
🏷️ Git tag created: Sat, 11 Apr 2026 13:20:07 GMTWhat's Changed
- Support for basic RBAC
- Update README with support badges by @dextmorgn in https://github.com/reconurge/flowsint/pull/131
- feat(app): Added 'tags-input'. Changed the text input for aliases in details panel by @hillw3318-ui in https://github.com/reconurge/flowsint/pull/128
- HudsonRock Integration Enrichers for Infostealer related data by @z3rodaycve in https://github.com/reconurge/flowsint/pull/129
- Feat/rbac by @dextmorgn in https://github.com/reconurge/flowsint/pull/136
New Contributors
- @hillw3318-ui made their first contribution in https://github.com/reconurge/flowsint/pull/128
- @z3rodaycve made their first contribution in https://github.com/reconurge/flowsint/pull/129
Full Changelog: https://github.com/reconurge/flowsint/compare/v1.2.7...v1.2.8
Downloads
-
released this
2026-03-15 07:34:34 -05:00 | 36 commits to main since this release📅 Originally published on GitHub: Sun, 15 Mar 2026 14:28:35 GMT
🏷️ Git tag created: Sun, 15 Mar 2026 12:34:34 GMTNew sketch features
- You can now double click on the sketch canva to add a new item rapidly. A detection happens in real time depending on the input.
- You can now easily create relations between items by holding
alt(oroptionon mac) then dragging from one node to another
What's Changed
- Feat/repositories by @dextmorgn in https://github.com/reconurge/flowsint/pull/119
- Feat/enricher templates by @dextmorgn in https://github.com/reconurge/flowsint/pull/122
- Fix/custom types by @dextmorgn in https://github.com/reconurge/flowsint/pull/123
- feat(core): Soft delete by @gustavorps in https://github.com/reconurge/flowsint/pull/125
- fix(api): Better support to reverse proxy deploy by @gustavorps in https://github.com/reconurge/flowsint/pull/126
New Contributors
- @gustavorps made their first contribution in https://github.com/reconurge/flowsint/pull/125
Full Changelog: https://github.com/reconurge/flowsint/compare/v1.2.6...v1.2.7
Downloads
-
released this
2026-02-05 15:41:18 -06:00 | 110 commits to main since this release📅 Originally published on GitHub: Thu, 05 Feb 2026 21:59:44 GMT
🏷️ Git tag created: Thu, 05 Feb 2026 21:41:18 GMTUse of services for proper business logic.
What's Changed
- fix(enricher): graceful handling of invalid phone/email in website_to_crawler by @AlexanderLueftl in https://github.com/reconurge/flowsint/pull/113
- Upgrade GitHub Actions for Node 24 compatibility by @salmanmkc in https://github.com/reconurge/flowsint/pull/114
- Upgrade GitHub Actions to latest versions by @salmanmkc in https://github.com/reconurge/flowsint/pull/115
- feat/refactor services by @dextmorgn in https://github.com/reconurge/flowsint/pull/117
New Contributors
- @AlexanderLueftl made their first contribution in https://github.com/reconurge/flowsint/pull/113
- @salmanmkc made their first contribution in https://github.com/reconurge/flowsint/pull/114
Full Changelog: https://github.com/reconurge/flowsint/compare/v1.2.5...v1.2.6
Downloads
-
released this
2026-01-25 16:39:19 -06:00 | 122 commits to main since this release📅 Originally published on GitHub: Sun, 25 Jan 2026 22:44:22 GMT
🏷️ Git tag created: Sun, 25 Jan 2026 22:39:19 GMTfix(ci): only upload Trivy SARIF when scan succeeds
Full Changelog: https://github.com/reconurge/flowsint/compare/v1.2.4...v1.2.5
Downloads
-
released this
2026-01-25 14:13:01 -06:00 | 123 commits to main since this release📅 Originally published on GitHub: Sun, 25 Jan 2026 20:22:11 GMT
🏷️ Git tag created: Sun, 25 Jan 2026 20:13:01 GMT- Minify docker images (up to 90% downsize).
- Fix mentionlist in analysis editor, that was using deprecated attributes
What's Changed
- feat(chore): update deploy components by @dextmorgn in https://github.com/reconurge/flowsint/pull/112
Full Changelog: https://github.com/reconurge/flowsint/compare/v1.2.3...v1.2.4
Downloads
-
released this
2026-01-25 09:19:28 -06:00 | 126 commits to main since this release📅 Originally published on GitHub: Sun, 25 Jan 2026 15:23:23 GMT
🏷️ Git tag created: Sun, 25 Jan 2026 15:19:28 GMTmigrate from AGPL-3.0 to Apache License 2.0.
Downloads
-
released this
2026-01-25 09:02:07 -06:00 | 127 commits to main since this release📅 Originally published on GitHub: Sun, 25 Jan 2026 15:02:52 GMT
🏷️ Git tag created: Sun, 25 Jan 2026 15:02:07 GMTremove not ready feature (create on paste)
Downloads
-
released this
2026-01-25 08:57:13 -06:00 | 128 commits to main since this release📅 Originally published on GitHub: Sun, 25 Jan 2026 14:58:19 GMT
🏷️ Git tag created: Sun, 25 Jan 2026 14:57:13 GMTFixes Makefile
make prodandmake devcommands.Downloads
-
released this
2026-01-25 08:30:57 -06:00 | 130 commits to main since this release📅 Originally published on GitHub: Sun, 25 Jan 2026 14:32:55 GMT
🏷️ Git tag created: Sun, 25 Jan 2026 14:30:57 GMT- usage of a new format of GraphNode to manipulate in front and back:
⚠️ Make sure you run
make migrate-prodif you want to keep your existing neo4j data (ormake migrate-devin dev mode) after pulling those changes, so that the migration can parse those in the right format.export type GraphNode = { id: string nodeType: string nodeLabel: string nodeProperties: NodeProperties // Domain, Ip, Individual... nodeSize: number nodeColor: string | null nodeIcon: keyof typeof LucideIcons | null nodeImage: string | null nodeFlag: flagColor | null nodeShape: NodeShape // circle, hexagonal, square, triangle nodeMetadata: NodeMetadata x: number y: number val?: number neighbors?: any[] links?: any[] }And proper way to store them in neo4j.
- proper way and usage of
GraphService,GraphRepositoryandGraphSerializer. Previous implementation was shady.
What's Changed
- feat: big codebase refactor + new node display features by @dextmorgn in https://github.com/reconurge/flowsint/pull/111
Full Changelog: https://github.com/reconurge/flowsint/compare/v1.1.0...v1.2.0
Downloads
-
released this
2026-01-16 02:09:45 -06:00 | 147 commits to main since this release📅 Originally published on GitHub: Wed, 21 Jan 2026 17:58:14 GMT
🏷️ Git tag created: Fri, 16 Jan 2026 08:09:45 GMTA bunch of fixes and features, including :
- json/txt import
- json/png export
- new graph settings
- outlined icons
- custom icons by types
- update an edge
What's Changed
- feat: only support pydantic models for manipulation by @dextmorgn in https://github.com/reconurge/flowsint/pull/92
- feat(enrichers): email_to_username + fix sherlock by @dextmorgn in https://github.com/reconurge/flowsint/pull/97
- feat: export graph as JSON and PNG by @dextmorgn in https://github.com/reconurge/flowsint/pull/101
- feat(app): custom icons by @dextmorgn in https://github.com/reconurge/flowsint/pull/102
- Add images to README for enhanced visuals by @dextmorgn in https://github.com/reconurge/flowsint/pull/104
Full Changelog: https://github.com/reconurge/flowsint/compare/v1.0.0...1.1.0
Downloads
mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-06 19:58:38 -05:00