pwn 0.5.615 → 0.5.617
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.
- checksums.yaml +4 -4
- data/README.md +24 -10
- data/bin/pwn +47 -2
- data/bin/pwn_gqrx_scanner +75 -18
- data/documentation/Diagrams.md +123 -40
- data/documentation/General-PWN-Usage.md +50 -30
- data/documentation/Home.md +78 -51
- data/documentation/How-PWN-Works.md +59 -57
- data/documentation/Installation.md +53 -28
- data/documentation/What-is-PWN.md +51 -32
- data/documentation/Why-PWN.md +41 -11
- data/documentation/diagrams/ai-integration-tool-calling.svg +141 -103
- data/documentation/diagrams/build.sh +20 -0
- data/documentation/diagrams/burp-vs-zap-preference.svg +47 -62
- data/documentation/diagrams/code-scanning-sast.svg +139 -79
- data/documentation/diagrams/dot/_THEME.md +27 -0
- data/documentation/diagrams/dot/agent-tool-registry.dot +59 -0
- data/documentation/diagrams/dot/ai-integration-tool-calling.dot +47 -20
- data/documentation/diagrams/dot/aws-cloud-security.dot +48 -0
- data/documentation/diagrams/dot/burp-vs-zap-preference.dot +23 -12
- data/documentation/diagrams/dot/code-scanning-sast.dot +46 -18
- data/documentation/diagrams/dot/cron-scheduling.dot +40 -0
- data/documentation/diagrams/dot/driver-framework.dot +36 -14
- data/documentation/diagrams/dot/extrospection-world-awareness.dot +55 -0
- data/documentation/diagrams/dot/fuzzing-workflow.dot +44 -24
- data/documentation/diagrams/dot/history-to-drivers.dot +31 -17
- data/documentation/diagrams/dot/memory-skills-detailed.dot +57 -25
- data/documentation/diagrams/dot/network-infra-testing.dot +51 -19
- data/documentation/diagrams/dot/overall-pwn-architecture.dot +110 -44
- data/documentation/diagrams/dot/penetration-testing-workflow.dot +56 -25
- data/documentation/diagrams/dot/plugin-ecosystem.dot +41 -27
- data/documentation/diagrams/dot/pwn-ai-feedback-learning-loop.dot +87 -46
- data/documentation/diagrams/dot/pwn-repl-prototyping.dot +49 -30
- data/documentation/diagrams/dot/reporting-pipeline.dot +43 -14
- data/documentation/diagrams/dot/reverse-engineering-flow.dot +40 -18
- data/documentation/diagrams/dot/sdr-radio-flow.dot +45 -0
- data/documentation/diagrams/dot/sessions-cron-automation.dot +41 -14
- data/documentation/diagrams/dot/swarm-multi-agent.dot +70 -0
- data/documentation/diagrams/dot/web-application-testing.dot +45 -23
- data/documentation/diagrams/dot/zero-day-research-flow.dot +46 -24
- data/documentation/diagrams/driver-framework.svg +87 -66
- data/documentation/diagrams/fuzzing-workflow.svg +128 -115
- data/documentation/diagrams/history-to-drivers.svg +84 -82
- data/documentation/diagrams/memory-skills-detailed.svg +167 -119
- data/documentation/diagrams/network-infra-testing.svg +146 -84
- data/documentation/diagrams/overall-pwn-architecture.svg +356 -185
- data/documentation/diagrams/penetration-testing-workflow.svg +161 -108
- data/documentation/diagrams/plugin-ecosystem.svg +225 -121
- data/documentation/diagrams/pwn-ai-feedback-learning-loop.svg +257 -185
- data/documentation/diagrams/pwn-repl-prototyping.svg +126 -137
- data/documentation/diagrams/reporting-pipeline.svg +128 -68
- data/documentation/diagrams/reverse-engineering-flow.svg +100 -80
- data/documentation/diagrams/sessions-cron-automation.svg +112 -68
- data/documentation/diagrams/web-application-testing.svg +136 -100
- data/documentation/diagrams/zero-day-research-flow.svg +116 -112
- data/git_commit.sh +1 -1
- data/lib/pwn/ai/agent/assembly.rb +1 -1
- data/lib/pwn/ai/agent/btc.rb +1 -1
- data/lib/pwn/ai/agent/burp_suite.rb +1 -1
- data/lib/pwn/ai/agent/extrospection.rb +618 -0
- data/lib/pwn/ai/agent/gqrx.rb +2 -2
- data/lib/pwn/ai/agent/hacker_one.rb +1 -1
- data/lib/pwn/ai/agent/introspection.rb +91 -0
- data/lib/pwn/ai/agent/learning.rb +6 -4
- data/lib/pwn/ai/agent/loop.rb +15 -0
- data/lib/pwn/ai/agent/prompt_builder.rb +10 -1
- data/lib/pwn/ai/agent/sast.rb +1 -1
- data/lib/pwn/ai/agent/swarm.rb +437 -0
- data/lib/pwn/ai/agent/tools/cron.rb +163 -0
- data/lib/pwn/ai/agent/tools/extrospection.rb +280 -0
- data/lib/pwn/ai/agent/tools/learning.rb +108 -0
- data/lib/pwn/ai/agent/tools/memory.rb +27 -0
- data/lib/pwn/ai/agent/tools/metrics.rb +61 -0
- data/lib/pwn/ai/agent/tools/sessions.rb +139 -0
- data/lib/pwn/ai/agent/tools/skills.rb +30 -0
- data/lib/pwn/ai/agent/tools/swarm.rb +229 -0
- data/lib/pwn/ai/agent/transparent_browser.rb +1 -1
- data/lib/pwn/ai/agent/vuln_gen.rb +2 -2
- data/lib/pwn/ai/agent.rb +3 -0
- data/lib/pwn/ai/anthropic.rb +19 -4
- data/lib/pwn/ai.rb +0 -1
- data/lib/pwn/config.rb +10 -23
- data/lib/pwn/cron.rb +16 -7
- data/lib/pwn/plugins/repl.rb +90 -281
- data/lib/pwn/sdr/decoder/base.rb +251 -0
- data/lib/pwn/sdr/decoder/gsm.rb +84 -185
- data/lib/pwn/sdr/decoder/pocsag.rb +62 -217
- data/lib/pwn/sdr/decoder.rb +1 -0
- data/lib/pwn/sdr/gqrx.rb +446 -65
- data/lib/pwn/version.rb +1 -1
- data/spec/lib/pwn/ai/agent/extrospection_spec.rb +15 -0
- data/spec/lib/pwn/ai/agent/introspection_spec.rb +15 -0
- data/spec/lib/pwn/ai/agent/swarm_spec.rb +34 -0
- data/spec/lib/pwn/ai/agent/tools/cron_spec.rb +40 -0
- data/spec/lib/pwn/ai/agent/tools/extrospection_spec.rb +40 -0
- data/spec/lib/pwn/ai/agent/tools/metrics_spec.rb +20 -0
- data/spec/lib/pwn/ai/agent/tools/sessions_spec.rb +35 -0
- data/spec/lib/pwn/ai/agent/tools/swarm_spec.rb +17 -0
- data/spec/lib/pwn/{ai/introspection_spec.rb → sdr/decoder/base_spec.rb} +3 -3
- data/third_party/pwn_rdoc.jsonl +178 -33
- metadata +27 -3
- data/lib/pwn/ai/introspection.rb +0 -76
|
@@ -3,177 +3,166 @@
|
|
|
3
3
|
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
4
|
<!-- Generated by graphviz version 14.1.2 (0)
|
|
5
5
|
-->
|
|
6
|
-
<!-- Title:
|
|
7
|
-
<svg width="
|
|
8
|
-
viewBox="0.00 0.00
|
|
9
|
-
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(
|
|
10
|
-
<title>
|
|
11
|
-
<polygon fill="
|
|
6
|
+
<!-- Title: PWN_REPL Pages: 1 -->
|
|
7
|
+
<svg width="840pt" height="529pt"
|
|
8
|
+
viewBox="0.00 0.00 840.00 529.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
9
|
+
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(43.2 485.95)">
|
|
10
|
+
<title>PWN_REPL</title>
|
|
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
14
|
<g id="clust1" class="cluster">
|
|
13
|
-
<title>
|
|
14
|
-
<
|
|
15
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
15
|
+
<title>cluster_repl</title>
|
|
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  (Pry)</text>
|
|
18
|
+
</g>
|
|
19
|
+
<g id="clust3" class="cluster">
|
|
20
|
+
<title>cluster_cmds</title>
|
|
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>
|
|
23
|
+
</g>
|
|
24
|
+
<g id="clust5" class="cluster">
|
|
25
|
+
<title>cluster_ns</title>
|
|
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>
|
|
16
28
|
</g>
|
|
17
29
|
<!-- User -->
|
|
18
30
|
<g id="node1" class="node">
|
|
19
31
|
<title>User</title>
|
|
20
|
-
<path fill="
|
|
21
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
22
|
-
<text xml:space="preserve" text-anchor="middle" x="35" y="-133.12" font-family="Arial" font-size="9.00">(Researcher)</text>
|
|
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">👤  $ pwn</text>
|
|
23
34
|
</g>
|
|
24
|
-
<!--
|
|
35
|
+
<!-- Prompt -->
|
|
25
36
|
<g id="node2" class="node">
|
|
26
|
-
<title>
|
|
27
|
-
<path fill="
|
|
28
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
37
|
+
<title>Prompt</title>
|
|
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 >>></text>
|
|
29
40
|
</g>
|
|
30
|
-
<!-- User->
|
|
41
|
+
<!-- User->Prompt -->
|
|
31
42
|
<g id="edge1" class="edge">
|
|
32
|
-
<title>User->
|
|
33
|
-
<path fill="none" stroke="
|
|
34
|
-
<polygon fill="
|
|
35
|
-
<text xml:space="preserve" text-anchor="middle" x="95.5" y="-162.62" font-family="Arial" font-size="8.00">pwn</text>
|
|
43
|
+
<title>User->Prompt</title>
|
|
44
|
+
<path fill="none" stroke="#38bdf8" stroke-width="2" d="M315.75,-367.25C300.22,-355.54 279.35,-339.76 261,-325.75 247.26,-315.26 232.11,-303.6 219.19,-293.63"/>
|
|
45
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="2" points="221.09,-291.56 213.04,-288.89 217.66,-295.99 221.09,-291.56"/>
|
|
36
46
|
</g>
|
|
37
|
-
<!--
|
|
47
|
+
<!-- Preload -->
|
|
38
48
|
<g id="node3" class="node">
|
|
39
|
-
<title>
|
|
40
|
-
<
|
|
41
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
42
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
43
|
-
</g>
|
|
44
|
-
<!-- Shell->Pry -->
|
|
45
|
-
<g id="edge2" class="edge">
|
|
46
|
-
<title>Shell->Pry</title>
|
|
47
|
-
<path fill="none" stroke="black" d="M224.91,-169.45C242.31,-165.29 261.95,-160.58 280.05,-156.25"/>
|
|
48
|
-
<polygon fill="black" stroke="black" points="280.7,-159.69 289.61,-153.96 279.07,-152.89 280.7,-159.69"/>
|
|
49
|
-
<text xml:space="preserve" text-anchor="middle" x="252.5" y="-166.22" font-family="Arial" font-size="8.00">starts</text>
|
|
50
|
-
</g>
|
|
51
|
-
<!-- Pry->User -->
|
|
52
|
-
<g id="edge12" class="edge">
|
|
53
|
-
<title>Pry->User</title>
|
|
54
|
-
<path fill="none" stroke="black" d="M280.96,-137.67C262.9,-136.64 243.03,-135.68 224.75,-135.17 178.66,-133.88 167.08,-133.41 121,-135.17 108.2,-135.66 94.35,-136.56 81.61,-137.54"/>
|
|
55
|
-
<polygon fill="black" stroke="black" points="81.49,-134.04 71.8,-138.33 82.05,-141.01 81.49,-134.04"/>
|
|
56
|
-
<text xml:space="preserve" text-anchor="middle" x="172.88" y="-147.07" font-family="Arial" font-size="8.00">interactive results</text>
|
|
57
|
-
<text xml:space="preserve" text-anchor="middle" x="172.88" y="-137.32" font-family="Arial" font-size="8.00">inspect / pp / tab-complete</text>
|
|
49
|
+
<title>Preload</title>
|
|
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>
|
|
58
53
|
</g>
|
|
59
|
-
<!--
|
|
54
|
+
<!-- User->Preload -->
|
|
55
|
+
<!-- Hist -->
|
|
60
56
|
<g id="node4" class="node">
|
|
61
|
-
<title>
|
|
62
|
-
<path fill="
|
|
63
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
64
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
<!-- Pry->Plugins -->
|
|
69
|
-
<g id="edge3" class="edge">
|
|
70
|
-
<title>Pry->Plugins</title>
|
|
71
|
-
<path fill="none" stroke="black" d="M368.5,-160.44C383.57,-171.12 403.25,-184.37 421.64,-194.67 507.19,-242.59 616.7,-275.69 683.71,-293.17"/>
|
|
72
|
-
<polygon fill="black" stroke="black" points="682.47,-296.46 693.03,-295.56 684.21,-289.68 682.47,-296.46"/>
|
|
73
|
-
<text xml:space="preserve" text-anchor="middle" x="555.27" y="-273.11" font-family="Arial" font-size="8.00">direct method calls</text>
|
|
74
|
-
</g>
|
|
75
|
-
<!-- SAST -->
|
|
57
|
+
<title>Hist</title>
|
|
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>
|
|
61
|
+
</g>
|
|
62
|
+
<!-- User->Hist -->
|
|
63
|
+
<!-- CAI -->
|
|
76
64
|
<g id="node5" class="node">
|
|
77
|
-
<title>
|
|
78
|
-
<path fill="
|
|
79
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
80
|
-
<text xml:space="preserve" text-anchor="middle" x="745.64" y="-241.37" font-family="Arial" font-size="9.00">(Static Analysis</text>
|
|
81
|
-
<text xml:space="preserve" text-anchor="middle" x="745.64" y="-230.87" font-family="Arial" font-size="9.00">+ Testgen)</text>
|
|
65
|
+
<title>CAI</title>
|
|
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-ai</text>
|
|
82
68
|
</g>
|
|
83
|
-
<!--
|
|
69
|
+
<!-- Prompt->CAI -->
|
|
84
70
|
<g id="edge4" class="edge">
|
|
85
|
-
<title>
|
|
86
|
-
<path fill="none" stroke="
|
|
87
|
-
<polygon fill="
|
|
88
|
-
<text xml:space="preserve" text-anchor="middle" x="555.27" y="-219.86" font-family="Arial" font-size="8.00">PWN::SAST.analyze...</text>
|
|
71
|
+
<title>Prompt->CAI</title>
|
|
72
|
+
<path fill="none" stroke="#34d399" stroke-width="1.3" d="M167.12,-249.86C154.03,-238.48 137.04,-223.12 123,-208.5 113.61,-198.72 103.9,-187.34 95.76,-177.38"/>
|
|
73
|
+
<polygon fill="#34d399" stroke="#34d399" stroke-width="1.3" points="98.04,-175.76 90.84,-171.29 93.69,-179.28 98.04,-175.76"/>
|
|
89
74
|
</g>
|
|
90
|
-
<!--
|
|
75
|
+
<!-- CASM -->
|
|
91
76
|
<g id="node6" class="node">
|
|
92
|
-
<title>
|
|
93
|
-
<path fill="
|
|
94
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
77
|
+
<title>CASM</title>
|
|
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-asm</text>
|
|
95
80
|
</g>
|
|
96
|
-
<!--
|
|
81
|
+
<!-- Prompt->CASM -->
|
|
97
82
|
<g id="edge5" class="edge">
|
|
98
|
-
<title>
|
|
99
|
-
<path fill="none" stroke="
|
|
100
|
-
<polygon fill="
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
<
|
|
105
|
-
<
|
|
106
|
-
<
|
|
107
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
108
|
-
|
|
83
|
+
<title>Prompt->CASM</title>
|
|
84
|
+
<path fill="none" stroke="#34d399" stroke-width="1.3" d="M185.42,-250C182.64,-231.19 178.2,-201.06 174.98,-179.22"/>
|
|
85
|
+
<polygon fill="#34d399" stroke="#34d399" stroke-width="1.3" points="177.78,-178.99 173.84,-171.49 172.24,-179.81 177.78,-178.99"/>
|
|
86
|
+
</g>
|
|
87
|
+
<!-- NS -->
|
|
88
|
+
<g id="node11" class="node">
|
|
89
|
+
<title>NS</title>
|
|
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  ·  PWN::SAST  ·  PWN::AWS  ·  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  ·  PWN::Reports  ·  PWN::AI  ·  PWN::Memory</text>
|
|
93
|
+
</g>
|
|
94
|
+
<!-- Prompt->NS -->
|
|
95
|
+
<g id="edge13" class="edge">
|
|
96
|
+
<title>Prompt->NS</title>
|
|
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
|
+
<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>
|
|
100
|
+
</g>
|
|
101
|
+
<!-- CMEM -->
|
|
102
|
+
<g id="node7" class="node">
|
|
103
|
+
<title>CMEM</title>
|
|
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-ai-memory</text>
|
|
109
106
|
</g>
|
|
110
|
-
<!--
|
|
107
|
+
<!-- Preload->CMEM -->
|
|
111
108
|
<g id="edge6" class="edge">
|
|
112
|
-
<title>
|
|
113
|
-
<path fill="none" stroke="
|
|
114
|
-
<polygon fill="
|
|
115
|
-
<text xml:space="preserve" text-anchor="middle" x="555.27" y="-141.02" font-family="Arial" font-size="8.00">pwn-ai or direct</text>
|
|
109
|
+
<title>Preload->CMEM</title>
|
|
110
|
+
<path fill="none" stroke="#34d399" stroke-width="1.3" d="M330.04,-250C320.28,-230.93 304.57,-200.24 293.35,-178.33"/>
|
|
111
|
+
<polygon fill="#34d399" stroke="#34d399" stroke-width="1.3" points="295.89,-177.14 289.75,-171.29 290.9,-179.69 295.89,-177.14"/>
|
|
116
112
|
</g>
|
|
117
|
-
<!--
|
|
118
|
-
<g id="
|
|
119
|
-
<title>
|
|
120
|
-
<path fill="
|
|
121
|
-
<
|
|
122
|
-
<text xml:space="preserve" text-anchor="middle" x="555.27" y="-96.62" font-family="Arial" font-size="9.00">Pry Command History</text>
|
|
123
|
-
<text xml:space="preserve" text-anchor="middle" x="555.27" y="-86.12" font-family="Arial" font-size="9.00">(~/.pry_history)</text>
|
|
113
|
+
<!-- CSESS -->
|
|
114
|
+
<g id="node8" class="node">
|
|
115
|
+
<title>CSESS</title>
|
|
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-ai-sessions</text>
|
|
124
118
|
</g>
|
|
125
|
-
<!--
|
|
119
|
+
<!-- Preload->CSESS -->
|
|
126
120
|
<g id="edge7" class="edge">
|
|
127
|
-
<title>
|
|
128
|
-
<path fill="none" stroke="
|
|
129
|
-
<polygon fill="
|
|
130
|
-
<text xml:space="preserve" text-anchor="middle" x="453.14" y="-125.91" font-family="Arial" font-size="8.00">every cmd logged</text>
|
|
121
|
+
<title>Preload->CSESS</title>
|
|
122
|
+
<path fill="none" stroke="#34d399" stroke-width="1.3" d="M349.02,-250C359.99,-230.85 377.68,-199.96 390.23,-178.04"/>
|
|
123
|
+
<polygon fill="#34d399" stroke="#34d399" stroke-width="1.3" points="392.57,-179.58 394.12,-171.25 387.71,-176.8 392.57,-179.58"/>
|
|
131
124
|
</g>
|
|
132
|
-
<!--
|
|
133
|
-
<g id="
|
|
134
|
-
<title>
|
|
135
|
-
<path fill="
|
|
136
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
137
|
-
<text xml:space="preserve" text-anchor="middle" x="555.27" y="-26.12" font-family="Arial" font-size="9.00">& Prototypes (.rb)</text>
|
|
125
|
+
<!-- CCRON -->
|
|
126
|
+
<g id="node9" class="node">
|
|
127
|
+
<title>CCRON</title>
|
|
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-ai-cron</text>
|
|
138
130
|
</g>
|
|
139
|
-
<!--
|
|
131
|
+
<!-- Hist->CCRON -->
|
|
140
132
|
<g id="edge8" class="edge">
|
|
141
|
-
<title>
|
|
142
|
-
<path fill="none" stroke="
|
|
143
|
-
<polygon fill="
|
|
144
|
-
<text xml:space="preserve" text-anchor="middle" x="453.14" y="-61.07" font-family="Arial" font-size="8.00">save / edit</text>
|
|
145
|
-
<text xml:space="preserve" text-anchor="middle" x="453.14" y="-51.32" font-family="Arial" font-size="8.00">prototype</text>
|
|
133
|
+
<title>Hist->CCRON</title>
|
|
134
|
+
<path fill="none" stroke="#34d399" stroke-width="1.3" d="M483.68,-250C490.93,-231.02 502.58,-200.51 510.93,-178.63"/>
|
|
135
|
+
<polygon fill="#34d399" stroke="#34d399" stroke-width="1.3" points="513.46,-179.85 513.7,-171.38 508.23,-177.85 513.46,-179.85"/>
|
|
146
136
|
</g>
|
|
147
|
-
<!--
|
|
148
|
-
<g id="
|
|
149
|
-
<title>
|
|
150
|
-
<path fill="
|
|
151
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
152
|
-
<text xml:space="preserve" text-anchor="middle" x="745.64" y="-72.12" font-family="Arial" font-size="9.00">(Parser, auto_opts)</text>
|
|
137
|
+
<!-- CDEL -->
|
|
138
|
+
<g id="node10" class="node">
|
|
139
|
+
<title>CDEL</title>
|
|
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-ai-delegate</text>
|
|
153
142
|
</g>
|
|
154
|
-
<!--
|
|
143
|
+
<!-- Hist->CDEL -->
|
|
155
144
|
<g id="edge9" class="edge">
|
|
156
|
-
<title>
|
|
157
|
-
<path fill="none" stroke="
|
|
158
|
-
<polygon fill="
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
<text xml:space="preserve" text-anchor="middle" x="453.14" y="-80.57" font-family="Arial" font-size="8.00">ctrl-r search</text>
|
|
162
|
-
</g>
|
|
163
|
-
<!-- Scripts->Pry -->
|
|
145
|
+
<title>Hist->CDEL</title>
|
|
146
|
+
<path fill="none" stroke="#34d399" stroke-width="1.3" d="M509,-250.09C528.4,-239.04 553.31,-223.95 574,-208.5 586.96,-198.82 600.37,-186.92 611.39,-176.57"/>
|
|
147
|
+
<polygon fill="#34d399" stroke="#34d399" stroke-width="1.3" points="613.32,-178.59 617.18,-171.05 609.46,-174.54 613.32,-178.59"/>
|
|
148
|
+
</g>
|
|
149
|
+
<!-- CAI->NS -->
|
|
164
150
|
<g id="edge10" class="edge">
|
|
165
|
-
<title>
|
|
166
|
-
<path fill="none" stroke="
|
|
167
|
-
<polygon fill="
|
|
168
|
-
<text xml:space="preserve" text-anchor="middle" x="453.14" y="-21.07" font-family="Arial" font-size="8.00">load / require</text>
|
|
169
|
-
<text xml:space="preserve" text-anchor="middle" x="453.14" y="-11.32" font-family="Arial" font-size="8.00">copy-paste</text>
|
|
151
|
+
<title>CAI->NS</title>
|
|
152
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M90.43,-132.75C106.42,-113.34 132.35,-81.89 150.46,-59.92"/>
|
|
153
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="152.57,-61.76 155.5,-53.81 148.25,-58.2 152.57,-61.76"/>
|
|
170
154
|
</g>
|
|
171
|
-
<!--
|
|
155
|
+
<!-- CASM->NS -->
|
|
172
156
|
<g id="edge11" class="edge">
|
|
173
|
-
<title>
|
|
174
|
-
<path fill="none" stroke="
|
|
175
|
-
<polygon fill="
|
|
176
|
-
|
|
157
|
+
<title>CASM->NS</title>
|
|
158
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M171,-132.75C171,-113.94 171,-83.81 171,-61.97"/>
|
|
159
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="173.8,-62.26 171,-54.26 168.2,-62.26 173.8,-62.26"/>
|
|
160
|
+
</g>
|
|
161
|
+
<!-- CMEM->NS -->
|
|
162
|
+
<g id="edge12" class="edge">
|
|
163
|
+
<title>CMEM->NS</title>
|
|
164
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M263.45,-132.75C244.93,-113.17 214.82,-81.33 194.02,-59.34"/>
|
|
165
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="196.24,-57.61 188.71,-53.72 192.17,-61.46 196.24,-57.61"/>
|
|
177
166
|
</g>
|
|
178
167
|
</g>
|
|
179
168
|
</svg>
|