Add Pivotick static HTML export format to gen_graphml.py#1181
Merged
Conversation
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.
Motivation
gen_graphml.pyso generated MISP galaxy graphs can be opened directly in a browser and viewed using the Pivotick visualization library without a separate build step.Description
to_pivotick_html(nodes, edges, pivotick_library_url)which serializes the graph into an embedded JSON payload and returns a self-contained HTML page that dynamically imports Pivotick as an ES module and boots it in viewer mode.pivotick-htmloutput format to--output-formatand map it to the.htmlextension inoutput_suffix.--pivotick-library-urlCLI option (defaulting to the Pivotickdevelopbranch jsDelivr URL) so consumers can override the module URL used by the generated page.graphml,dot, andjson-graphbehavior.Testing
python -m py_compile tools/gen_graphml.pyand the file compiled successfully.python tools/gen_graphml.py --output-format pivotick-html -o /tmp/misp-pivotick.html --select-name ransomware --cross-cluster-matching value --no-existing-relationshipsand the tool printed a success message indicating the HTML was written (example: "pivotick-html graph written to /tmp/misp-pivotick.html with 3 galaxies and 2102 clusters.").Codex Task