mirror of
https://github.com/q3alique/codeflow
synced 2026-06-21 14:06:02 +00:00
acc1b4f3e7
Static taint-analysis and visualization tool for source-code security review. Supports deep analysis for Python, JavaScript/TypeScript, Java, Go, and C#, with structural support for all other languages via the generic extractor. Outputs: interactive HTML report, LLM-ready Markdown review document, and optional Burp Suite JSON export. Self-bootstrapping launcher (run.py) requires no virtual environment.
12 lines
431 B
Python
12 lines
431 B
Python
from codeflow.renderer.layout_engine import layout_flow, layout_overview, Position
|
|
from codeflow.renderer.svg_renderer import render_flow_svg, render_overview_svg
|
|
from codeflow.renderer.html_builder import build_html
|
|
from codeflow.renderer.burp_exporter import export as burp_export
|
|
|
|
__all__ = [
|
|
"layout_flow", "layout_overview", "Position",
|
|
"render_flow_svg", "render_overview_svg",
|
|
"build_html",
|
|
"burp_export",
|
|
]
|