From c2e5a68662cfd272eb62976f77670074f1caae88 Mon Sep 17 00:00:00 2001 From: s0lray Date: Wed, 25 Mar 2026 14:27:29 -0400 Subject: [PATCH 1/2] fix(zoom): remove auto-pan on node click (THE-89) zoomToNode(d) was called after every expand/collapse, causing jarring viewport jumps as the tree layout reflows node positions. Removing it lets users pan and zoom freely without unexpected repositioning. Co-Authored-By: Paperclip --- public/js/arf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/arf.js b/public/js/arf.js index b3f3d4c..f65cd92 100644 --- a/public/js/arf.js +++ b/public/js/arf.js @@ -95,7 +95,7 @@ function update(source) { var nodeEnter = node.enter().append("g") .attr("class", "node") .attr("transform", function(d) { return "translate(" + source.y0 + "," + source.x0 + ")"; }) - .on("click", function(event, d) { toggle(d); update(d); zoomToNode(d); }); + .on("click", function(event, d) { toggle(d); update(d); }); nodeEnter.append("circle") .attr("r", 1e-6) From e2f6e13206cf020ad5d13db609aef04e4f0c475c Mon Sep 17 00:00:00 2001 From: s0lray Date: Wed, 25 Mar 2026 14:27:39 -0400 Subject: [PATCH 2/2] Add verified OSINT tools from GitHub issue review (THE-86) Added GitFive, Lenso.ai, CeWL, and Cupp to existing categories in public/arf.json based on verified researcher findings. Co-Authored-By: Paperclip --- public/arf.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/public/arf.json b/public/arf.json index dfd6f10..633e8e7 100644 --- a/public/arf.json +++ b/public/arf.json @@ -40,6 +40,11 @@ "type": "url", "url": "https://namecheckup.com/" }, + { + "name": "GitFive (T)", + "type": "url", + "url": "https://github.com/mxrch/GitFive" + }, { "name": "Sherlock", "type": "url", @@ -1576,6 +1581,11 @@ "type": "url", "url": "https://www.lakako.com/" }, + { + "name": "Lenso.ai", + "type": "url", + "url": "https://lenso.ai/" + }, { "name": "CC Search", "type": "url", @@ -5643,6 +5653,16 @@ "name": "Wordlist", "type": "folder", "children": [ + { + "name": "CeWL (T)", + "type": "url", + "url": "https://github.com/digininja/CeWL" + }, + { + "name": "Cupp (T)", + "type": "url", + "url": "https://github.com/Mebus/cupp" + }, { "name": "OWASP D4N155 (T)", "type": "url",