feat(types,enrichers): add Technology type and tech_detect transformer - #183
Merged
dextmorgn merged 1 commit intoJun 20, 2026
Merged
Conversation
Adds application-level technology fingerprinting, extending coverage beyond ip/port/website/ssl_certificate as requested in reconurge#59. - New `Technology` type (name, version, category, source) registered in the type registry, the package exports, and TYPE_TO_MODEL. Its from_string accepts both bare names ("nginx") and wappalyzer-style "name:version" pairs ("PHP:8.1"). - New `tech_detect` enricher: Website -> Technology, using the existing httpx tool with -td (wappalyzer dataset). Each detected technology becomes a Technology node linked to the website with a USES_TECHNOLOGY relationship; results are de-duplicated per probe. Tests cover the Technology type (label, from_string, registry), the tech entry parser, enricher registration/metadata, and scan() with the httpx Docker tool mocked, so no Docker daemon is required. Closes reconurge#59
dextmorgn
approved these changes
Jun 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds application-level technology fingerprinting as requested in #59:
Technologytype, andtech_detecttransformer (Website→Technology) built on the existinghttpxtool.Closes #59
Why
Flowsint already models infrastructure (
ip,port,website,ssl_certificate). This extends coverage into the application layer — what software/frameworks a site runs — which complements port/website data and lays groundwork for stack mapping and vuln correlation (the benefits called out in the issue).Changes
flowsint-types/technology.py(new) —Technology(name, version, category, source), modeled on the existingWebTrackertype. Registered via@flowsint_type, exported fromflowsint_types/__init__.py, and added toTYPE_TO_MODEL.from_stringaccepts both bare names (nginx) and wappalyzer-stylename:versionpairs (PHP:8.1).flowsint-enrichers/website/to_technologies.py(new) —TechDetectEnricher(name = "tech_detect"), auto-registered. InputWebsite, outputTechnology. Runs the existingHttpxToolwith-td(httpx's wappalyzer-based tech detection), reads thetechfield from the JSON output, de-dupes per probe, and links each technology to the source website with aUSES_TECHNOLOGYrelationship. Follows the established tool-backed enricher pattern (e.g.website_to_webtrackers,ip_to_ports).The
techJSON field and the-tdflag are per httpx'srunner.Resultstruct (Technologies []string+"json:\"tech\""+`).Testing
Tests cover the
Technologytype (label,from_string, registry membership), the tech-entry parser, enricher registration/metadata, andscan()with thehttpxDocker tool mocked — so the suite needs no Docker daemon.