mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-07 12:26:24 -05:00
[PR #138] Release of my collection of Flowsint enrichers #845
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?
📋 Pull Request Information
Original PR: https://github.com/reconurge/flowsint/pull/138
Author: @z3rodaycve
Created: 4/21/2026
Status: 🔄 Open
Base:
main← Head:feature/collection-enrichers📝 Commits (2)
0d04423Release of DeHashed, httpX, veriphone, scamalytics enrichersf79403dFixed to_ssl enricher to use httpX Docker Tool📊 Changes
9 files changed (+1151 additions, -1 deletions)
View changed files
📝
flowsint-api/Dockerfile(+1 -1)➕
flowsint-enrichers/src/flowsint_enrichers/domain/to_dehashed.py(+161 -0)➕
flowsint-enrichers/src/flowsint_enrichers/domain/to_ssl.py(+100 -0)➕
flowsint-enrichers/src/flowsint_enrichers/email/to_dehashed.py(+161 -0)➕
flowsint-enrichers/src/flowsint_enrichers/ip/to_dehashed.py(+163 -0)➕
flowsint-enrichers/src/flowsint_enrichers/ip/to_fraudscore.py(+157 -0)➕
flowsint-enrichers/src/flowsint_enrichers/phone/to_carrier.py(+120 -0)➕
flowsint-enrichers/src/flowsint_enrichers/social/to_dehashed.py(+161 -0)➕
flowsint-enrichers/src/flowsint_enrichers/website/to_subdomain.py(+127 -0)📄 Description
Hello,
I would like to share my collection of Flowsint enrichers. Most of them are based on feature requests (#75, #72), others are personal ideas that I wanted to implement.
The following enrichers have been created:
WebsiteToSubdomains(performs an automated scan to find subdomains of a given domain)|> Utilizes the C99.nl API (api.c99.nl)
PhoneToCarrier(looks up the carrier of the provided phone number)|> Utilizes the Veriphone API (veriphone.io)
IpToFraudScore(performs a reverse lookup on an IP address and retrieves its fraud score)|> Utilizes the Scamlytics API (scamalytics.com/ip/api/pricing)
Based on issue #75
UsernameToDehashed(fetches breach intelligence for a given username)|> Uses the DeHashed API for lookups (dehashed.com/api)
IpToIntelligence(fetches breach intelligence for a given IP address)EmailToDehashed(fetches breach intelligence for a given email address)DomainToDehashed(fetches breach intelligence for a given domain)Based on issue #72
DomainToTLS(retrieves TLS information for a domain)|> Requires ProjectDiscovery’s httpx toolkit, so a change was made to the
flowsint-api/Dockerfile🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.