pwn 0.5.618 → 0.5.621

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -2
  3. data/README.md +14 -6
  4. data/bin/pwn_gqrx_scanner +25 -5
  5. data/documentation/Agent-Tool-Registry.md +4 -4
  6. data/documentation/Cron.md +13 -0
  7. data/documentation/Diagrams.md +6 -2
  8. data/documentation/Extrospection.md +96 -11
  9. data/documentation/Home.md +5 -4
  10. data/documentation/How-PWN-Works.md +7 -4
  11. data/documentation/Mistakes.md +97 -0
  12. data/documentation/Persistence.md +4 -1
  13. data/documentation/SDR.md +23 -5
  14. data/documentation/Skills-Memory-Learning.md +16 -5
  15. data/documentation/Transparent-Browser.md +18 -1
  16. data/documentation/diagrams/agent-tool-registry.svg +103 -100
  17. data/documentation/diagrams/ai-integration-tool-calling.svg +24 -24
  18. data/documentation/diagrams/aws-cloud-security.svg +25 -25
  19. data/documentation/diagrams/burp-vs-zap-preference.svg +12 -12
  20. data/documentation/diagrams/code-scanning-sast.svg +25 -25
  21. data/documentation/diagrams/cron-scheduling.svg +23 -23
  22. data/documentation/diagrams/dot/agent-tool-registry.dot +3 -3
  23. data/documentation/diagrams/dot/extrospection-world-awareness.dot +33 -10
  24. data/documentation/diagrams/dot/memory-skills-detailed.dot +16 -5
  25. data/documentation/diagrams/dot/mistakes-negative-feedback.dot +93 -0
  26. data/documentation/diagrams/dot/overall-pwn-architecture.dot +7 -5
  27. data/documentation/diagrams/dot/persistence-filesystem.dot +4 -2
  28. data/documentation/diagrams/dot/pwn-ai-feedback-learning-loop.dot +25 -7
  29. data/documentation/diagrams/dot/sdr-radio-flow.dot +13 -11
  30. data/documentation/diagrams/driver-framework.svg +13 -13
  31. data/documentation/diagrams/extrospection-world-awareness.svg +241 -93
  32. data/documentation/diagrams/fuzzing-workflow.svg +24 -24
  33. data/documentation/diagrams/hardware-hacking.svg +18 -18
  34. data/documentation/diagrams/history-to-drivers.svg +18 -18
  35. data/documentation/diagrams/memory-skills-detailed.svg +169 -97
  36. data/documentation/diagrams/mistakes-negative-feedback.svg +266 -0
  37. data/documentation/diagrams/network-infra-testing.svg +27 -27
  38. data/documentation/diagrams/overall-pwn-architecture.svg +184 -173
  39. data/documentation/diagrams/penetration-testing-workflow.svg +30 -30
  40. data/documentation/diagrams/persistence-filesystem.svg +111 -87
  41. data/documentation/diagrams/plugin-ecosystem.svg +35 -35
  42. data/documentation/diagrams/pwn-ai-feedback-learning-loop.svg +263 -149
  43. data/documentation/diagrams/pwn-repl-prototyping.svg +20 -20
  44. data/documentation/diagrams/reporting-pipeline.svg +18 -18
  45. data/documentation/diagrams/reverse-engineering-flow.svg +21 -21
  46. data/documentation/diagrams/sdr-radio-flow.svg +76 -56
  47. data/documentation/diagrams/sessions-cron-automation.svg +18 -18
  48. data/documentation/diagrams/swarm-multi-agent.svg +39 -39
  49. data/documentation/diagrams/web-application-testing.svg +26 -26
  50. data/documentation/diagrams/zero-day-research-flow.svg +25 -25
  51. data/documentation/pwn-ai-Agent.md +28 -15
  52. data/lib/pwn/ai/agent/extrospection.rb +494 -6
  53. data/lib/pwn/ai/agent/learning.rb +67 -7
  54. data/lib/pwn/ai/agent/loop.rb +72 -6
  55. data/lib/pwn/ai/agent/mistakes.rb +369 -0
  56. data/lib/pwn/ai/agent/prompt_builder.rb +10 -1
  57. data/lib/pwn/ai/agent/tools/extrospection.rb +88 -3
  58. data/lib/pwn/ai/agent/tools/mistakes.rb +132 -0
  59. data/lib/pwn/ai/agent.rb +1 -0
  60. data/lib/pwn/plugins/jira_data_center.rb +2 -2
  61. data/lib/pwn/sdr/decoder/adsb.rb +82 -0
  62. data/lib/pwn/sdr/decoder/apt.rb +136 -0
  63. data/lib/pwn/sdr/decoder/base.rb +258 -171
  64. data/lib/pwn/sdr/decoder/bluetooth.rb +71 -0
  65. data/lib/pwn/sdr/decoder/dect.rb +70 -0
  66. data/lib/pwn/sdr/decoder/dsp.rb +396 -0
  67. data/lib/pwn/sdr/decoder/flex.rb +177 -210
  68. data/lib/pwn/sdr/decoder/gps.rb +74 -0
  69. data/lib/pwn/sdr/decoder/gsm.rb +31 -62
  70. data/lib/pwn/sdr/decoder/iridium.rb +66 -0
  71. data/lib/pwn/sdr/decoder/lora.rb +80 -0
  72. data/lib/pwn/sdr/decoder/lte.rb +67 -0
  73. data/lib/pwn/sdr/decoder/morse.rb +138 -0
  74. data/lib/pwn/sdr/decoder/p25.rb +74 -0
  75. data/lib/pwn/sdr/decoder/pager.rb +61 -0
  76. data/lib/pwn/sdr/decoder/pocsag.rb +176 -54
  77. data/lib/pwn/sdr/decoder/rfid.rb +79 -0
  78. data/lib/pwn/sdr/decoder/rtl433.rb +86 -0
  79. data/lib/pwn/sdr/decoder/rtty.rb +139 -0
  80. data/lib/pwn/sdr/decoder/wifi.rb +77 -0
  81. data/lib/pwn/sdr/decoder/zigbee.rb +74 -0
  82. data/lib/pwn/sdr/decoder.rb +75 -7
  83. data/lib/pwn/sdr/frequency_allocation.rb +82 -41
  84. data/lib/pwn/sdr/gqrx.rb +186 -95
  85. data/lib/pwn/version.rb +1 -1
  86. data/spec/lib/pwn/ai/agent/mistakes_spec.rb +36 -0
  87. data/spec/lib/pwn/ai/agent/tools/mistakes_spec.rb +12 -0
  88. data/spec/lib/pwn/sdr/decoder/adsb_spec.rb +15 -0
  89. data/spec/lib/pwn/sdr/decoder/apt_spec.rb +15 -0
  90. data/spec/lib/pwn/sdr/decoder/bluetooth_spec.rb +15 -0
  91. data/spec/lib/pwn/sdr/decoder/dect_spec.rb +15 -0
  92. data/spec/lib/pwn/sdr/decoder/dsp_spec.rb +15 -0
  93. data/spec/lib/pwn/sdr/decoder/gps_spec.rb +15 -0
  94. data/spec/lib/pwn/sdr/decoder/iridium_spec.rb +15 -0
  95. data/spec/lib/pwn/sdr/decoder/lora_spec.rb +15 -0
  96. data/spec/lib/pwn/sdr/decoder/lte_spec.rb +15 -0
  97. data/spec/lib/pwn/sdr/decoder/morse_spec.rb +15 -0
  98. data/spec/lib/pwn/sdr/decoder/p25_spec.rb +15 -0
  99. data/spec/lib/pwn/sdr/decoder/pager_spec.rb +15 -0
  100. data/spec/lib/pwn/sdr/decoder/rfid_spec.rb +15 -0
  101. data/spec/lib/pwn/sdr/decoder/rtl433_spec.rb +15 -0
  102. data/spec/lib/pwn/sdr/decoder/rtty_spec.rb +15 -0
  103. data/spec/lib/pwn/sdr/decoder/wifi_spec.rb +15 -0
  104. data/spec/lib/pwn/sdr/decoder/zigbee_spec.rb +15 -0
  105. data/third_party/pwn_rdoc.jsonl +115 -5
  106. metadata +46 -6
  107. data/README.md.bak +0 -200
@@ -9,34 +9,34 @@
9
9
  <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(43.2 485.95)">
10
10
  <title>PWN_REPL</title>
11
11
  <polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-485.95 796.57,-485.95 796.57,43.2 -43.2,43.2"/>
12
- <text xml:space="preserve" text-anchor="start" x="183.93" y="-420.75" font-family="sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">The pwn REPL — Interactive Prototyping</text>
13
- <text xml:space="preserve" text-anchor="start" x="266.81" y="-409.3" font-family="sans-Serif" font-size="11.00" fill="#94a3b8">Pry + full PWN:: preload + custom commands</text>
12
+ <text xml:space="preserve" text-anchor="start" x="183.93" y="-420.75" font-family="Helvetica,sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">The pwn REPL — Interactive Prototyping</text>
13
+ <text xml:space="preserve" text-anchor="start" x="266.81" y="-409.3" font-family="Helvetica,sans-Serif" font-size="11.00" fill="#94a3b8">Pry + full PWN:: preload + custom commands</text>
14
14
  <g id="clust1" class="cluster">
15
15
  <title>cluster_repl</title>
16
16
  <path fill="#2e1065" stroke="#6d28d9" stroke-width="2" d="M139,-242.5C139,-242.5 513,-242.5 513,-242.5 519,-242.5 525,-248.5 525,-254.5 525,-254.5 525,-313.75 525,-313.75 525,-319.75 519,-325.75 513,-325.75 513,-325.75 139,-325.75 139,-325.75 133,-325.75 127,-319.75 127,-313.75 127,-313.75 127,-254.5 127,-254.5 127,-248.5 133,-242.5 139,-242.5"/>
17
- <text xml:space="preserve" text-anchor="middle" x="326" y="-302.75" font-family="sans-Serif" font-size="20.00" fill="#ddd6fe">Plugins::REPL &#160;(Pry)</text>
17
+ <text xml:space="preserve" text-anchor="middle" x="326" y="-302.75" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#ddd6fe">Plugins::REPL &#160;(Pry)</text>
18
18
  </g>
19
19
  <g id="clust3" class="cluster">
20
20
  <title>cluster_cmds</title>
21
21
  <path fill="#022c22" stroke="#047857" d="M53,-125.25C53,-125.25 674,-125.25 674,-125.25 680,-125.25 686,-131.25 686,-137.25 686,-137.25 686,-196.5 686,-196.5 686,-202.5 680,-208.5 674,-208.5 674,-208.5 53,-208.5 53,-208.5 47,-208.5 41,-202.5 41,-196.5 41,-196.5 41,-137.25 41,-137.25 41,-131.25 47,-125.25 53,-125.25"/>
22
- <text xml:space="preserve" text-anchor="middle" x="363.5" y="-185.5" font-family="sans-Serif" font-size="20.00" fill="#a7f3d0">Custom Commands</text>
22
+ <text xml:space="preserve" text-anchor="middle" x="363.5" y="-185.5" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#a7f3d0">Custom Commands</text>
23
23
  </g>
24
24
  <g id="clust5" class="cluster">
25
25
  <title>cluster_ns</title>
26
26
  <path fill="#422006" stroke="#a16207" d="M20,-8C20,-8 322,-8 322,-8 328,-8 334,-14 334,-20 334,-20 334,-79.25 334,-79.25 334,-85.25 328,-91.25 322,-91.25 322,-91.25 20,-91.25 20,-91.25 14,-91.25 8,-85.25 8,-79.25 8,-79.25 8,-20 8,-20 8,-14 14,-8 20,-8"/>
27
- <text xml:space="preserve" text-anchor="middle" x="171" y="-68.25" font-family="sans-Serif" font-size="20.00" fill="#fde68a">Live Namespace</text>
27
+ <text xml:space="preserve" text-anchor="middle" x="171" y="-68.25" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#fde68a">Live Namespace</text>
28
28
  </g>
29
29
  <!-- User -->
30
30
  <g id="node1" class="node">
31
31
  <title>User</title>
32
32
  <path fill="#7dd3fc" stroke="#334155" stroke-width="1.3" d="M357.5,-403.75C357.5,-403.75 320.5,-403.75 320.5,-403.75 314.5,-403.75 308.5,-397.75 308.5,-391.75 308.5,-391.75 308.5,-379.75 308.5,-379.75 308.5,-373.75 314.5,-367.75 320.5,-367.75 320.5,-367.75 357.5,-367.75 357.5,-367.75 363.5,-367.75 369.5,-373.75 369.5,-379.75 369.5,-379.75 369.5,-391.75 369.5,-391.75 369.5,-397.75 363.5,-403.75 357.5,-403.75"/>
33
- <text xml:space="preserve" text-anchor="middle" x="339" y="-382.62" font-family="sans-Serif" font-size="10.00" fill="#0f172a">👤 &#160;$ pwn</text>
33
+ <text xml:space="preserve" text-anchor="middle" x="339" y="-382.62" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">👤 &#160;$ pwn</text>
34
34
  </g>
35
35
  <!-- Prompt -->
36
36
  <g id="node2" class="node">
37
37
  <title>Prompt</title>
38
38
  <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M229.38,-286.5C229.38,-286.5 146.62,-286.5 146.62,-286.5 140.62,-286.5 134.62,-280.5 134.62,-274.5 134.62,-274.5 134.62,-262.5 134.62,-262.5 134.62,-256.5 140.62,-250.5 146.62,-250.5 146.62,-250.5 229.38,-250.5 229.38,-250.5 235.38,-250.5 241.38,-256.5 241.38,-262.5 241.38,-262.5 241.38,-274.5 241.38,-274.5 241.38,-280.5 235.38,-286.5 229.38,-286.5"/>
39
- <text xml:space="preserve" text-anchor="middle" x="188" y="-265" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn[v0.5.x]:001 &gt;&gt;&gt;</text>
39
+ <text xml:space="preserve" text-anchor="middle" x="188" y="-265" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">pwn[v0.5.x]:001 &gt;&gt;&gt;</text>
40
40
  </g>
41
41
  <!-- User&#45;&gt;Prompt -->
42
42
  <g id="edge1" class="edge">
@@ -48,23 +48,23 @@
48
48
  <g id="node3" class="node">
49
49
  <title>Preload</title>
50
50
  <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M384.88,-286.5C384.88,-286.5 293.12,-286.5 293.12,-286.5 287.12,-286.5 281.12,-280.5 281.12,-274.5 281.12,-274.5 281.12,-262.5 281.12,-262.5 281.12,-256.5 287.12,-250.5 293.12,-250.5 293.12,-250.5 384.88,-250.5 384.88,-250.5 390.88,-250.5 396.88,-256.5 396.88,-262.5 396.88,-262.5 396.88,-274.5 396.88,-274.5 396.88,-280.5 390.88,-286.5 384.88,-286.5"/>
51
- <text xml:space="preserve" text-anchor="middle" x="339" y="-271" font-family="sans-Serif" font-size="10.00" fill="#0f172a">autoload PWN::*</text>
52
- <text xml:space="preserve" text-anchor="middle" x="339" y="-259" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Banner · MonkeyPatch</text>
51
+ <text xml:space="preserve" text-anchor="middle" x="339" y="-271" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">autoload PWN::*</text>
52
+ <text xml:space="preserve" text-anchor="middle" x="339" y="-259" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Banner · MonkeyPatch</text>
53
53
  </g>
54
54
  <!-- User&#45;&gt;Preload -->
55
55
  <!-- Hist -->
56
56
  <g id="node4" class="node">
57
57
  <title>Hist</title>
58
58
  <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M505.25,-286.5C505.25,-286.5 448.75,-286.5 448.75,-286.5 442.75,-286.5 436.75,-280.5 436.75,-274.5 436.75,-274.5 436.75,-262.5 436.75,-262.5 436.75,-256.5 442.75,-250.5 448.75,-250.5 448.75,-250.5 505.25,-250.5 505.25,-250.5 511.25,-250.5 517.25,-256.5 517.25,-262.5 517.25,-262.5 517.25,-274.5 517.25,-274.5 517.25,-280.5 511.25,-286.5 505.25,-286.5"/>
59
- <text xml:space="preserve" text-anchor="middle" x="477" y="-271" font-family="sans-Serif" font-size="10.00" fill="#0f172a">~/.pwn_history</text>
60
- <text xml:space="preserve" text-anchor="middle" x="477" y="-259" font-family="sans-Serif" font-size="10.00" fill="#0f172a">replay · edit</text>
59
+ <text xml:space="preserve" text-anchor="middle" x="477" y="-271" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">~/.pwn_history</text>
60
+ <text xml:space="preserve" text-anchor="middle" x="477" y="-259" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">replay · edit</text>
61
61
  </g>
62
62
  <!-- User&#45;&gt;Hist -->
63
63
  <!-- CAI -->
64
64
  <g id="node5" class="node">
65
65
  <title>CAI</title>
66
66
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M91,-169.25C91,-169.25 61,-169.25 61,-169.25 55,-169.25 49,-163.25 49,-157.25 49,-157.25 49,-145.25 49,-145.25 49,-139.25 55,-133.25 61,-133.25 61,-133.25 91,-133.25 91,-133.25 97,-133.25 103,-139.25 103,-145.25 103,-145.25 103,-157.25 103,-157.25 103,-163.25 97,-169.25 91,-169.25"/>
67
- <text xml:space="preserve" text-anchor="middle" x="76" y="-147.75" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai</text>
67
+ <text xml:space="preserve" text-anchor="middle" x="76" y="-147.75" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai</text>
68
68
  </g>
69
69
  <!-- Prompt&#45;&gt;CAI -->
70
70
  <g id="edge4" class="edge">
@@ -76,7 +76,7 @@
76
76
  <g id="node6" class="node">
77
77
  <title>CASM</title>
78
78
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M186.88,-169.25C186.88,-169.25 155.12,-169.25 155.12,-169.25 149.12,-169.25 143.12,-163.25 143.12,-157.25 143.12,-157.25 143.12,-145.25 143.12,-145.25 143.12,-139.25 149.12,-133.25 155.12,-133.25 155.12,-133.25 186.88,-133.25 186.88,-133.25 192.88,-133.25 198.88,-139.25 198.88,-145.25 198.88,-145.25 198.88,-157.25 198.88,-157.25 198.88,-163.25 192.88,-169.25 186.88,-169.25"/>
79
- <text xml:space="preserve" text-anchor="middle" x="171" y="-147.75" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;asm</text>
79
+ <text xml:space="preserve" text-anchor="middle" x="171" y="-147.75" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;asm</text>
80
80
  </g>
81
81
  <!-- Prompt&#45;&gt;CASM -->
82
82
  <g id="edge5" class="edge">
@@ -88,21 +88,21 @@
88
88
  <g id="node11" class="node">
89
89
  <title>NS</title>
90
90
  <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M313.62,-52C313.62,-52 28.38,-52 28.38,-52 22.38,-52 16.38,-46 16.38,-40 16.38,-40 16.38,-28 16.38,-28 16.38,-22 22.38,-16 28.38,-16 28.38,-16 313.62,-16 313.62,-16 319.62,-16 325.62,-22 325.62,-28 325.62,-28 325.62,-40 325.62,-40 325.62,-46 319.62,-52 313.62,-52"/>
91
- <text xml:space="preserve" text-anchor="middle" x="171" y="-37.05" font-family="sans-Serif" font-size="11.00" fill="#0f172a">PWN::Plugins &#160;· &#160;PWN::SAST &#160;· &#160;PWN::AWS &#160;· &#160;PWN::SDR</text>
92
- <text xml:space="preserve" text-anchor="middle" x="171" y="-23.55" font-family="sans-Serif" font-size="11.00" fill="#0f172a">PWN::WWW &#160;· &#160;PWN::Reports &#160;· &#160;PWN::AI &#160;· &#160;PWN::Memory</text>
91
+ <text xml:space="preserve" text-anchor="middle" x="171" y="-37.05" font-family="Helvetica,sans-Serif" font-size="11.00" fill="#0f172a">PWN::Plugins &#160;· &#160;PWN::SAST &#160;· &#160;PWN::AWS &#160;· &#160;PWN::SDR</text>
92
+ <text xml:space="preserve" text-anchor="middle" x="171" y="-23.55" font-family="Helvetica,sans-Serif" font-size="11.00" fill="#0f172a">PWN::WWW &#160;· &#160;PWN::Reports &#160;· &#160;PWN::AI &#160;· &#160;PWN::Memory</text>
93
93
  </g>
94
94
  <!-- Prompt&#45;&gt;NS -->
95
95
  <g id="edge13" class="edge">
96
96
  <title>Prompt&#45;&gt;NS</title>
97
97
  <path fill="none" stroke="#f59e0b" stroke-width="2" d="M233.46,-249.97C242.47,-247.05 251.95,-244.37 261,-242.5 308.48,-232.68 663.08,-244.09 696,-208.5 721.12,-181.34 719.84,-153.54 696,-125.25 650.59,-71.37 473.25,-49.66 337.11,-40.91"/>
98
98
  <polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="2" points="337.32,-38.12 329.16,-40.41 336.97,-43.7 337.32,-38.12"/>
99
- <text xml:space="preserve" text-anchor="middle" x="733.87" y="-147.95" font-family="sans-Serif" font-size="9.00" fill="#cbd5e1">direct call</text>
99
+ <text xml:space="preserve" text-anchor="middle" x="733.87" y="-147.95" font-family="Helvetica,sans-Serif" font-size="9.00" fill="#cbd5e1">direct call</text>
100
100
  </g>
101
101
  <!-- CMEM -->
102
102
  <g id="node7" class="node">
103
103
  <title>CMEM</title>
104
104
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M309.38,-169.25C309.38,-169.25 250.62,-169.25 250.62,-169.25 244.62,-169.25 238.62,-163.25 238.62,-157.25 238.62,-157.25 238.62,-145.25 238.62,-145.25 238.62,-139.25 244.62,-133.25 250.62,-133.25 250.62,-133.25 309.38,-133.25 309.38,-133.25 315.38,-133.25 321.38,-139.25 321.38,-145.25 321.38,-145.25 321.38,-157.25 321.38,-157.25 321.38,-163.25 315.38,-169.25 309.38,-169.25"/>
105
- <text xml:space="preserve" text-anchor="middle" x="280" y="-147.75" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai&#45;memory</text>
105
+ <text xml:space="preserve" text-anchor="middle" x="280" y="-147.75" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai&#45;memory</text>
106
106
  </g>
107
107
  <!-- Preload&#45;&gt;CMEM -->
108
108
  <g id="edge6" class="edge">
@@ -114,7 +114,7 @@
114
114
  <g id="node8" class="node">
115
115
  <title>CSESS</title>
116
116
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M436.25,-169.25C436.25,-169.25 373.75,-169.25 373.75,-169.25 367.75,-169.25 361.75,-163.25 361.75,-157.25 361.75,-157.25 361.75,-145.25 361.75,-145.25 361.75,-139.25 367.75,-133.25 373.75,-133.25 373.75,-133.25 436.25,-133.25 436.25,-133.25 442.25,-133.25 448.25,-139.25 448.25,-145.25 448.25,-145.25 448.25,-157.25 448.25,-157.25 448.25,-163.25 442.25,-169.25 436.25,-169.25"/>
117
- <text xml:space="preserve" text-anchor="middle" x="405" y="-147.75" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai&#45;sessions</text>
117
+ <text xml:space="preserve" text-anchor="middle" x="405" y="-147.75" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai&#45;sessions</text>
118
118
  </g>
119
119
  <!-- Preload&#45;&gt;CSESS -->
120
120
  <g id="edge7" class="edge">
@@ -126,7 +126,7 @@
126
126
  <g id="node9" class="node">
127
127
  <title>CCRON</title>
128
128
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M542.12,-169.25C542.12,-169.25 499.88,-169.25 499.88,-169.25 493.88,-169.25 487.88,-163.25 487.88,-157.25 487.88,-157.25 487.88,-145.25 487.88,-145.25 487.88,-139.25 493.88,-133.25 499.88,-133.25 499.88,-133.25 542.12,-133.25 542.12,-133.25 548.12,-133.25 554.12,-139.25 554.12,-145.25 554.12,-145.25 554.12,-157.25 554.12,-157.25 554.12,-163.25 548.12,-169.25 542.12,-169.25"/>
129
- <text xml:space="preserve" text-anchor="middle" x="521" y="-147.75" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai&#45;cron</text>
129
+ <text xml:space="preserve" text-anchor="middle" x="521" y="-147.75" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai&#45;cron</text>
130
130
  </g>
131
131
  <!-- Hist&#45;&gt;CCRON -->
132
132
  <g id="edge8" class="edge">
@@ -138,7 +138,7 @@
138
138
  <g id="node10" class="node">
139
139
  <title>CDEL</title>
140
140
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M666.12,-169.25C666.12,-169.25 605.88,-169.25 605.88,-169.25 599.88,-169.25 593.88,-163.25 593.88,-157.25 593.88,-157.25 593.88,-145.25 593.88,-145.25 593.88,-139.25 599.88,-133.25 605.88,-133.25 605.88,-133.25 666.12,-133.25 666.12,-133.25 672.12,-133.25 678.12,-139.25 678.12,-145.25 678.12,-145.25 678.12,-157.25 678.12,-157.25 678.12,-163.25 672.12,-169.25 666.12,-169.25"/>
141
- <text xml:space="preserve" text-anchor="middle" x="636" y="-147.75" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai&#45;delegate</text>
141
+ <text xml:space="preserve" text-anchor="middle" x="636" y="-147.75" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;ai&#45;delegate</text>
142
142
  </g>
143
143
  <!-- Hist&#45;&gt;CDEL -->
144
144
  <g id="edge9" class="edge">
@@ -9,33 +9,33 @@
9
9
  <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(43.2 377.45)">
10
10
  <title>PWN_Reports</title>
11
11
  <polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-377.45 571.2,-377.45 571.2,43.2 -43.2,43.2"/>
12
- <text xml:space="preserve" text-anchor="start" x="99.75" y="-312.25" font-family="sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">PWN::Reports — Findings Pipeline</text>
12
+ <text xml:space="preserve" text-anchor="start" x="99.75" y="-312.25" font-family="Helvetica,sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">PWN::Reports — Findings Pipeline</text>
13
13
  <g id="clust1" class="cluster">
14
14
  <title>cluster_src</title>
15
15
  <path fill="#022c22" stroke="#047857" d="M12,-8C12,-8 148.75,-8 148.75,-8 154.75,-8 160.75,-14 160.75,-20 160.75,-20 160.75,-283 160.75,-283 160.75,-289 154.75,-295 148.75,-295 148.75,-295 12,-295 12,-295 6,-295 0,-289 0,-283 0,-283 0,-20 0,-20 0,-14 6,-8 12,-8"/>
16
- <text xml:space="preserve" text-anchor="middle" x="80.38" y="-272" font-family="sans-Serif" font-size="20.00" fill="#a7f3d0">Finding Sources</text>
16
+ <text xml:space="preserve" text-anchor="middle" x="80.38" y="-272" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#a7f3d0">Finding Sources</text>
17
17
  </g>
18
18
  <g id="clust2" class="cluster">
19
19
  <title>cluster_gen</title>
20
20
  <path fill="#422006" stroke="#a16207" d="M242.75,-8C242.75,-8 337.75,-8 337.75,-8 343.75,-8 349.75,-14 349.75,-20 349.75,-20 349.75,-283 349.75,-283 349.75,-289 343.75,-295 337.75,-295 337.75,-295 242.75,-295 242.75,-295 236.75,-295 230.75,-289 230.75,-283 230.75,-283 230.75,-20 230.75,-20 230.75,-14 236.75,-8 242.75,-8"/>
21
- <text xml:space="preserve" text-anchor="middle" x="290.25" y="-272" font-family="sans-Serif" font-size="20.00" fill="#fde68a">Generators</text>
21
+ <text xml:space="preserve" text-anchor="middle" x="290.25" y="-272" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#fde68a">Generators</text>
22
22
  </g>
23
23
  <g id="clust3" class="cluster">
24
24
  <title>cluster_out</title>
25
25
  <path fill="#2e1065" stroke="#6d28d9" d="M431.75,-8C431.75,-8 508,-8 508,-8 514,-8 520,-14 520,-20 520,-20 520,-283 520,-283 520,-289 514,-295 508,-295 508,-295 431.75,-295 431.75,-295 425.75,-295 419.75,-289 419.75,-283 419.75,-283 419.75,-20 419.75,-20 419.75,-14 425.75,-8 431.75,-8"/>
26
- <text xml:space="preserve" text-anchor="middle" x="469.88" y="-272" font-family="sans-Serif" font-size="20.00" fill="#ddd6fe">Delivery</text>
26
+ <text xml:space="preserve" text-anchor="middle" x="469.88" y="-272" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#ddd6fe">Delivery</text>
27
27
  </g>
28
28
  <!-- Sast -->
29
29
  <g id="node1" class="node">
30
30
  <title>Sast</title>
31
31
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M104,-52C104,-52 55.75,-52 55.75,-52 49.75,-52 43.75,-46 43.75,-40 43.75,-40 43.75,-28 43.75,-28 43.75,-22 49.75,-16 55.75,-16 55.75,-16 104,-16 104,-16 110,-16 116,-22 116,-28 116,-28 116,-40 116,-40 116,-46 110,-52 104,-52"/>
32
- <text xml:space="preserve" text-anchor="middle" x="79.88" y="-30.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">PWN::SAST</text>
32
+ <text xml:space="preserve" text-anchor="middle" x="79.88" y="-30.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">PWN::SAST</text>
33
33
  </g>
34
34
  <!-- Rsast -->
35
35
  <g id="node5" class="node">
36
36
  <title>Rsast</title>
37
37
  <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M319.62,-52C319.62,-52 260.88,-52 260.88,-52 254.88,-52 248.88,-46 248.88,-40 248.88,-40 248.88,-28 248.88,-28 248.88,-22 254.88,-16 260.88,-16 260.88,-16 319.62,-16 319.62,-16 325.62,-16 331.62,-22 331.62,-28 331.62,-28 331.62,-40 331.62,-40 331.62,-46 325.62,-52 319.62,-52"/>
38
- <text xml:space="preserve" text-anchor="middle" x="290.25" y="-30.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Reports::SAST</text>
38
+ <text xml:space="preserve" text-anchor="middle" x="290.25" y="-30.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Reports::SAST</text>
39
39
  </g>
40
40
  <!-- Sast&#45;&gt;Rsast -->
41
41
  <g id="edge1" class="edge">
@@ -47,13 +47,13 @@
47
47
  <g id="node2" class="node">
48
48
  <title>Fuzz</title>
49
49
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M105.88,-120C105.88,-120 53.88,-120 53.88,-120 47.88,-120 41.88,-114 41.88,-108 41.88,-108 41.88,-96 41.88,-96 41.88,-90 47.88,-84 53.88,-84 53.88,-84 105.88,-84 105.88,-84 111.88,-84 117.88,-90 117.88,-96 117.88,-96 117.88,-108 117.88,-108 117.88,-114 111.88,-120 105.88,-120"/>
50
- <text xml:space="preserve" text-anchor="middle" x="79.88" y="-98.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Fuzz</text>
50
+ <text xml:space="preserve" text-anchor="middle" x="79.88" y="-98.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Fuzz</text>
51
51
  </g>
52
52
  <!-- Rfuzz -->
53
53
  <g id="node6" class="node">
54
54
  <title>Rfuzz</title>
55
55
  <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M317.38,-120C317.38,-120 263.12,-120 263.12,-120 257.12,-120 251.12,-114 251.12,-108 251.12,-108 251.12,-96 251.12,-96 251.12,-90 257.12,-84 263.12,-84 263.12,-84 317.38,-84 317.38,-84 323.38,-84 329.38,-90 329.38,-96 329.38,-96 329.38,-108 329.38,-108 329.38,-114 323.38,-120 317.38,-120"/>
56
- <text xml:space="preserve" text-anchor="middle" x="290.25" y="-98.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Reports::Fuzz</text>
56
+ <text xml:space="preserve" text-anchor="middle" x="290.25" y="-98.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Reports::Fuzz</text>
57
57
  </g>
58
58
  <!-- Fuzz&#45;&gt;Rfuzz -->
59
59
  <g id="edge2" class="edge">
@@ -65,13 +65,13 @@
65
65
  <g id="node3" class="node">
66
66
  <title>Uri</title>
67
67
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M100.62,-188C100.62,-188 59.12,-188 59.12,-188 53.12,-188 47.12,-182 47.12,-176 47.12,-176 47.12,-164 47.12,-164 47.12,-158 53.12,-152 59.12,-152 59.12,-152 100.62,-152 100.62,-152 106.62,-152 112.62,-158 112.62,-164 112.62,-164 112.62,-176 112.62,-176 112.62,-182 106.62,-188 100.62,-188"/>
68
- <text xml:space="preserve" text-anchor="middle" x="79.88" y="-166.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">URI Buster</text>
68
+ <text xml:space="preserve" text-anchor="middle" x="79.88" y="-166.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">URI Buster</text>
69
69
  </g>
70
70
  <!-- Ruri -->
71
71
  <g id="node7" class="node">
72
72
  <title>Ruri</title>
73
73
  <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M329.75,-188C329.75,-188 250.75,-188 250.75,-188 244.75,-188 238.75,-182 238.75,-176 238.75,-176 238.75,-164 238.75,-164 238.75,-158 244.75,-152 250.75,-152 250.75,-152 329.75,-152 329.75,-152 335.75,-152 341.75,-158 341.75,-164 341.75,-164 341.75,-176 341.75,-176 341.75,-182 335.75,-188 329.75,-188"/>
74
- <text xml:space="preserve" text-anchor="middle" x="290.25" y="-166.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Reports::URIBuster</text>
74
+ <text xml:space="preserve" text-anchor="middle" x="290.25" y="-166.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Reports::URIBuster</text>
75
75
  </g>
76
76
  <!-- Uri&#45;&gt;Ruri -->
77
77
  <g id="edge3" class="edge">
@@ -83,13 +83,13 @@
83
83
  <g id="node4" class="node">
84
84
  <title>Phone</title>
85
85
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M107.75,-256C107.75,-256 52,-256 52,-256 46,-256 40,-250 40,-244 40,-244 40,-232 40,-232 40,-226 46,-220 52,-220 52,-220 107.75,-220 107.75,-220 113.75,-220 119.75,-226 119.75,-232 119.75,-232 119.75,-244 119.75,-244 119.75,-250 113.75,-256 107.75,-256"/>
86
- <text xml:space="preserve" text-anchor="middle" x="79.88" y="-234.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">BareSIP recon</text>
86
+ <text xml:space="preserve" text-anchor="middle" x="79.88" y="-234.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">BareSIP recon</text>
87
87
  </g>
88
88
  <!-- Rphone -->
89
89
  <g id="node8" class="node">
90
90
  <title>Rphone</title>
91
91
  <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M320.38,-256C320.38,-256 260.12,-256 260.12,-256 254.12,-256 248.12,-250 248.12,-244 248.12,-244 248.12,-232 248.12,-232 248.12,-226 254.12,-220 260.12,-220 260.12,-220 320.38,-220 320.38,-220 326.38,-220 332.38,-226 332.38,-232 332.38,-232 332.38,-244 332.38,-244 332.38,-250 326.38,-256 320.38,-256"/>
92
- <text xml:space="preserve" text-anchor="middle" x="290.25" y="-234.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Reports::Phone</text>
92
+ <text xml:space="preserve" text-anchor="middle" x="290.25" y="-234.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Reports::Phone</text>
93
93
  </g>
94
94
  <!-- Phone&#45;&gt;Rphone -->
95
95
  <g id="edge4" class="edge">
@@ -101,8 +101,8 @@
101
101
  <g id="node9" class="node">
102
102
  <title>HTML</title>
103
103
  <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M500,-52C500,-52 439.75,-52 439.75,-52 433.75,-52 427.75,-46 427.75,-40 427.75,-40 427.75,-28 427.75,-28 427.75,-22 433.75,-16 439.75,-16 439.75,-16 500,-16 500,-16 506,-16 512,-22 512,-28 512,-28 512,-40 512,-40 512,-46 506,-52 500,-52"/>
104
- <text xml:space="preserve" text-anchor="middle" x="469.88" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">HTML</text>
105
- <text xml:space="preserve" text-anchor="middle" x="469.88" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">(Header/Footer)</text>
104
+ <text xml:space="preserve" text-anchor="middle" x="469.88" y="-36.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">HTML</text>
105
+ <text xml:space="preserve" text-anchor="middle" x="469.88" y="-24.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">(Header/Footer)</text>
106
106
  </g>
107
107
  <!-- Rsast&#45;&gt;HTML -->
108
108
  <g id="edge5" class="edge">
@@ -114,7 +114,7 @@
114
114
  <g id="node10" class="node">
115
115
  <title>JSON</title>
116
116
  <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M484.88,-120C484.88,-120 454.88,-120 454.88,-120 448.88,-120 442.88,-114 442.88,-108 442.88,-108 442.88,-96 442.88,-96 442.88,-90 448.88,-84 454.88,-84 454.88,-84 484.88,-84 484.88,-84 490.88,-84 496.88,-90 496.88,-96 496.88,-96 496.88,-108 496.88,-108 496.88,-114 490.88,-120 484.88,-120"/>
117
- <text xml:space="preserve" text-anchor="middle" x="469.88" y="-98.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">JSON</text>
117
+ <text xml:space="preserve" text-anchor="middle" x="469.88" y="-98.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">JSON</text>
118
118
  </g>
119
119
  <!-- Rfuzz&#45;&gt;JSON -->
120
120
  <g id="edge6" class="edge">
@@ -126,8 +126,8 @@
126
126
  <g id="node11" class="node">
127
127
  <title>DD</title>
128
128
  <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M498.5,-188C498.5,-188 441.25,-188 441.25,-188 435.25,-188 429.25,-182 429.25,-176 429.25,-176 429.25,-164 429.25,-164 429.25,-158 435.25,-152 441.25,-152 441.25,-152 498.5,-152 498.5,-152 504.5,-152 510.5,-158 510.5,-164 510.5,-164 510.5,-176 510.5,-176 510.5,-182 504.5,-188 498.5,-188"/>
129
- <text xml:space="preserve" text-anchor="middle" x="469.88" y="-172.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">DefectDojo</text>
130
- <text xml:space="preserve" text-anchor="middle" x="469.88" y="-160.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">import/reimport</text>
129
+ <text xml:space="preserve" text-anchor="middle" x="469.88" y="-172.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">DefectDojo</text>
130
+ <text xml:space="preserve" text-anchor="middle" x="469.88" y="-160.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">import/reimport</text>
131
131
  </g>
132
132
  <!-- Ruri&#45;&gt;DD -->
133
133
  <g id="edge7" class="edge">
@@ -139,7 +139,7 @@
139
139
  <g id="node12" class="node">
140
140
  <title>Jira</title>
141
141
  <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M498.88,-256C498.88,-256 440.88,-256 440.88,-256 434.88,-256 428.88,-250 428.88,-244 428.88,-244 428.88,-232 428.88,-232 428.88,-226 434.88,-220 440.88,-220 440.88,-220 498.88,-220 498.88,-220 504.88,-220 510.88,-226 510.88,-232 510.88,-232 510.88,-244 510.88,-244 510.88,-250 504.88,-256 498.88,-256"/>
142
- <text xml:space="preserve" text-anchor="middle" x="469.88" y="-234.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">JiraDataCenter</text>
142
+ <text xml:space="preserve" text-anchor="middle" x="469.88" y="-234.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">JiraDataCenter</text>
143
143
  </g>
144
144
  <!-- Rphone&#45;&gt;Jira -->
145
145
  <g id="edge8" class="edge">
@@ -9,35 +9,35 @@
9
9
  <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(43.2 257.2)">
10
10
  <title>PWN_RE</title>
11
11
  <polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-257.2 927.45,-257.2 927.45,43.2 -43.2,43.2"/>
12
- <text xml:space="preserve" text-anchor="start" x="241.12" y="-192" font-family="sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">Reverse Engineering &amp; Binary Exploitation</text>
13
- <text xml:space="preserve" text-anchor="start" x="317.25" y="-180.55" font-family="sans-Serif" font-size="11.00" fill="#94a3b8">pwn&#45;asm · Assembly · XXD · FFI · Radare2 banners</text>
12
+ <text xml:space="preserve" text-anchor="start" x="241.12" y="-192" font-family="Helvetica,sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">Reverse Engineering &amp; Binary Exploitation</text>
13
+ <text xml:space="preserve" text-anchor="start" x="317.25" y="-180.55" font-family="Helvetica,sans-Serif" font-size="11.00" fill="#94a3b8">pwn&#45;asm · Assembly · XXD · FFI · Radare2 banners</text>
14
14
  <g id="clust1" class="cluster">
15
15
  <title>cluster_static</title>
16
16
  <path fill="#022c22" stroke="#047857" d="M202,-14C202,-14 323.25,-14 323.25,-14 329.25,-14 335.25,-20 335.25,-26 335.25,-26 335.25,-153 335.25,-153 335.25,-159 329.25,-165 323.25,-165 323.25,-165 202,-165 202,-165 196,-165 190,-159 190,-153 190,-153 190,-26 190,-26 190,-20 196,-14 202,-14"/>
17
- <text xml:space="preserve" text-anchor="middle" x="262.62" y="-142" font-family="sans-Serif" font-size="20.00" fill="#a7f3d0">Static</text>
17
+ <text xml:space="preserve" text-anchor="middle" x="262.62" y="-142" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#a7f3d0">Static</text>
18
18
  </g>
19
19
  <g id="clust2" class="cluster">
20
20
  <title>cluster_disasm</title>
21
21
  <path fill="#422006" stroke="#a16207" d="M417.25,-8C417.25,-8 523.25,-8 523.25,-8 529.25,-8 535.25,-14 535.25,-20 535.25,-20 535.25,-155 535.25,-155 535.25,-161 529.25,-167 523.25,-167 523.25,-167 417.25,-167 417.25,-167 411.25,-167 405.25,-161 405.25,-155 405.25,-155 405.25,-20 405.25,-20 405.25,-14 411.25,-8 417.25,-8"/>
22
- <text xml:space="preserve" text-anchor="middle" x="470.25" y="-144" font-family="sans-Serif" font-size="20.00" fill="#fde68a">Disassemble</text>
22
+ <text xml:space="preserve" text-anchor="middle" x="470.25" y="-144" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#fde68a">Disassemble</text>
23
23
  </g>
24
24
  <g id="clust3" class="cluster">
25
25
  <title>cluster_dyn</title>
26
26
  <path fill="#450a0a" stroke="#b91c1c" d="M617.25,-14C617.25,-14 698.75,-14 698.75,-14 704.75,-14 710.75,-20 710.75,-26 710.75,-26 710.75,-153 710.75,-153 710.75,-159 704.75,-165 698.75,-165 698.75,-165 617.25,-165 617.25,-165 611.25,-165 605.25,-159 605.25,-153 605.25,-153 605.25,-26 605.25,-26 605.25,-20 611.25,-14 617.25,-14"/>
27
- <text xml:space="preserve" text-anchor="middle" x="658" y="-142" font-family="sans-Serif" font-size="20.00" fill="#fecaca">Dynamic</text>
27
+ <text xml:space="preserve" text-anchor="middle" x="658" y="-142" font-family="Helvetica,sans-Serif" font-size="20.00" fill="#fecaca">Dynamic</text>
28
28
  </g>
29
29
  <!-- Bin -->
30
30
  <g id="node1" class="node">
31
31
  <title>Bin</title>
32
32
  <path fill="#7dd3fc" stroke="#334155" stroke-width="1.3" d="M100,-92C100,-92 12,-92 12,-92 6,-92 0,-86 0,-80 0,-80 0,-68 0,-68 0,-62 6,-56 12,-56 12,-56 100,-56 100,-56 106,-56 112,-62 112,-68 112,-68 112,-80 112,-80 112,-86 106,-92 100,-92"/>
33
- <text xml:space="preserve" text-anchor="middle" x="56" y="-70.88" font-family="sans-Serif" font-size="10.00" fill="#0f172a">🔎 &#160;Binary / Firmware</text>
33
+ <text xml:space="preserve" text-anchor="middle" x="56" y="-70.88" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">🔎 &#160;Binary / Firmware</text>
34
34
  </g>
35
35
  <!-- XXD -->
36
36
  <g id="node2" class="node">
37
37
  <title>XXD</title>
38
38
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M296.5,-58C296.5,-58 228.75,-58 228.75,-58 222.75,-58 216.75,-52 216.75,-46 216.75,-46 216.75,-34 216.75,-34 216.75,-28 222.75,-22 228.75,-22 228.75,-22 296.5,-22 296.5,-22 302.5,-22 308.5,-28 308.5,-34 308.5,-34 308.5,-46 308.5,-46 308.5,-52 302.5,-58 296.5,-58"/>
39
- <text xml:space="preserve" text-anchor="middle" x="262.62" y="-42.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::XXD</text>
40
- <text xml:space="preserve" text-anchor="middle" x="262.62" y="-30.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">hex dump / patch</text>
39
+ <text xml:space="preserve" text-anchor="middle" x="262.62" y="-42.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Plugins::XXD</text>
40
+ <text xml:space="preserve" text-anchor="middle" x="262.62" y="-30.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">hex dump / patch</text>
41
41
  </g>
42
42
  <!-- Bin&#45;&gt;XXD -->
43
43
  <g id="edge1" class="edge">
@@ -49,8 +49,8 @@
49
49
  <g id="node3" class="node">
50
50
  <title>BDBA</title>
51
51
  <path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M315.25,-126C315.25,-126 210,-126 210,-126 204,-126 198,-120 198,-114 198,-114 198,-102 198,-102 198,-96 204,-90 210,-90 210,-90 315.25,-90 315.25,-90 321.25,-90 327.25,-96 327.25,-102 327.25,-102 327.25,-114 327.25,-114 327.25,-120 321.25,-126 315.25,-126"/>
52
- <text xml:space="preserve" text-anchor="middle" x="262.62" y="-110.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">BlackDuckBinaryAnalysis</text>
53
- <text xml:space="preserve" text-anchor="middle" x="262.62" y="-98.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">SBOM · CVE match</text>
52
+ <text xml:space="preserve" text-anchor="middle" x="262.62" y="-110.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">BlackDuckBinaryAnalysis</text>
53
+ <text xml:space="preserve" text-anchor="middle" x="262.62" y="-98.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">SBOM · CVE match</text>
54
54
  </g>
55
55
  <!-- Bin&#45;&gt;BDBA -->
56
56
  <g id="edge2" class="edge">
@@ -62,9 +62,9 @@
62
62
  <g id="node4" class="node">
63
63
  <title>Asm</title>
64
64
  <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M506.62,-60C506.62,-60 432.88,-60 432.88,-60 426.88,-60 420.88,-54 420.88,-48 420.88,-48 420.88,-28 420.88,-28 420.88,-22 426.88,-16 432.88,-16 432.88,-16 506.62,-16 506.62,-16 512.62,-16 518.62,-22 518.62,-28 518.62,-28 518.62,-48 518.62,-48 518.62,-54 512.62,-60 506.62,-60"/>
65
- <text xml:space="preserve" text-anchor="middle" x="469.75" y="-46.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Assembly</text>
66
- <text xml:space="preserve" text-anchor="middle" x="469.75" y="-34.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">opcodes ↔ asm</text>
67
- <text xml:space="preserve" text-anchor="middle" x="469.75" y="-22.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">multi&#45;arch</text>
65
+ <text xml:space="preserve" text-anchor="middle" x="469.75" y="-46.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Assembly</text>
66
+ <text xml:space="preserve" text-anchor="middle" x="469.75" y="-34.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">opcodes ↔ asm</text>
67
+ <text xml:space="preserve" text-anchor="middle" x="469.75" y="-22.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">multi&#45;arch</text>
68
68
  </g>
69
69
  <!-- XXD&#45;&gt;Asm -->
70
70
  <g id="edge3" class="edge">
@@ -76,8 +76,8 @@
76
76
  <g id="node5" class="node">
77
77
  <title>PwnAsm</title>
78
78
  <path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M505.88,-128C505.88,-128 433.62,-128 433.62,-128 427.62,-128 421.62,-122 421.62,-116 421.62,-116 421.62,-104 421.62,-104 421.62,-98 427.62,-92 433.62,-92 433.62,-92 505.88,-92 505.88,-92 511.88,-92 517.88,-98 517.88,-104 517.88,-104 517.88,-116 517.88,-116 517.88,-122 511.88,-128 505.88,-128"/>
79
- <text xml:space="preserve" text-anchor="middle" x="469.75" y="-112.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;asm REPL</text>
80
- <text xml:space="preserve" text-anchor="middle" x="469.75" y="-100.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">multiline shellcode</text>
79
+ <text xml:space="preserve" text-anchor="middle" x="469.75" y="-112.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">pwn&#45;asm REPL</text>
80
+ <text xml:space="preserve" text-anchor="middle" x="469.75" y="-100.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">multiline shellcode</text>
81
81
  </g>
82
82
  <!-- BDBA&#45;&gt;PwnAsm -->
83
83
  <g id="edge4" class="edge">
@@ -89,8 +89,8 @@
89
89
  <g id="node6" class="node">
90
90
  <title>FFI</title>
91
91
  <path fill="#fda4af" stroke="#334155" stroke-width="1.3" d="M690.75,-58C690.75,-58 625.25,-58 625.25,-58 619.25,-58 613.25,-52 613.25,-46 613.25,-46 613.25,-34 613.25,-34 613.25,-28 619.25,-22 625.25,-22 625.25,-22 690.75,-22 690.75,-22 696.75,-22 702.75,-28 702.75,-34 702.75,-34 702.75,-46 702.75,-46 702.75,-52 696.75,-58 690.75,-58"/>
92
- <text xml:space="preserve" text-anchor="middle" x="658" y="-42.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">PWN::FFI::Stdio</text>
93
- <text xml:space="preserve" text-anchor="middle" x="658" y="-30.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">native calls</text>
92
+ <text xml:space="preserve" text-anchor="middle" x="658" y="-42.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">PWN::FFI::Stdio</text>
93
+ <text xml:space="preserve" text-anchor="middle" x="658" y="-30.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">native calls</text>
94
94
  </g>
95
95
  <!-- Asm&#45;&gt;FFI -->
96
96
  <g id="edge5" class="edge">
@@ -102,8 +102,8 @@
102
102
  <g id="node7" class="node">
103
103
  <title>Fuzz</title>
104
104
  <path fill="#fda4af" stroke="#334155" stroke-width="1.3" d="M690.38,-126C690.38,-126 625.62,-126 625.62,-126 619.62,-126 613.62,-120 613.62,-114 613.62,-114 613.62,-102 613.62,-102 613.62,-96 619.62,-90 625.62,-90 625.62,-90 690.38,-90 690.38,-90 696.38,-90 702.38,-96 702.38,-102 702.38,-102 702.38,-114 702.38,-114 702.38,-120 696.38,-126 690.38,-126"/>
105
- <text xml:space="preserve" text-anchor="middle" x="658" y="-110.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Fuzz</text>
106
- <text xml:space="preserve" text-anchor="middle" x="658" y="-98.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">targeted crashes</text>
105
+ <text xml:space="preserve" text-anchor="middle" x="658" y="-110.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Fuzz</text>
106
+ <text xml:space="preserve" text-anchor="middle" x="658" y="-98.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">targeted crashes</text>
107
107
  </g>
108
108
  <!-- PwnAsm&#45;&gt;Fuzz -->
109
109
  <g id="edge6" class="edge">
@@ -115,8 +115,8 @@
115
115
  <g id="node8" class="node">
116
116
  <title>Xpl</title>
117
117
  <path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M872.25,-92C872.25,-92 800.75,-92 800.75,-92 794.75,-92 788.75,-86 788.75,-80 788.75,-80 788.75,-68 788.75,-68 788.75,-62 794.75,-56 800.75,-56 800.75,-56 872.25,-56 872.25,-56 878.25,-56 884.25,-62 884.25,-68 884.25,-68 884.25,-80 884.25,-80 884.25,-86 878.25,-92 872.25,-92"/>
118
- <text xml:space="preserve" text-anchor="middle" x="836.5" y="-76.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Exploit PoC</text>
119
- <text xml:space="preserve" text-anchor="middle" x="836.5" y="-64.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Metasploit module</text>
118
+ <text xml:space="preserve" text-anchor="middle" x="836.5" y="-76.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Exploit PoC</text>
119
+ <text xml:space="preserve" text-anchor="middle" x="836.5" y="-64.5" font-family="Helvetica,sans-Serif" font-size="10.00" fill="#0f172a">Metasploit module</text>
120
120
  </g>
121
121
  <!-- FFI&#45;&gt;Xpl -->
122
122
  <g id="edge7" class="edge">