pwn 0.5.615 → 0.5.618
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 +109 -85
- data/README.md.bak +200 -0
- data/bin/pwn +47 -2
- data/bin/pwn_gqrx_scanner +75 -18
- data/documentation/AI-Integration.md +42 -26
- data/documentation/AWS.md +57 -0
- data/documentation/Agent-Tool-Registry.md +56 -0
- data/documentation/Banner.md +17 -0
- data/documentation/Blockchain.md +18 -0
- data/documentation/Bounty.md +21 -0
- data/documentation/BurpSuite.md +41 -16
- data/documentation/CLI-Drivers.md +58 -0
- data/documentation/Configuration.md +66 -0
- data/documentation/Contributing.md +33 -19
- data/documentation/Cron.md +47 -0
- data/documentation/Diagrams.md +123 -40
- data/documentation/Drivers.md +43 -16
- data/documentation/Extrospection.md +54 -0
- data/documentation/FFI.md +14 -0
- data/documentation/Fuzzing.md +36 -0
- data/documentation/General-PWN-Usage.md +50 -30
- data/documentation/Hardware.md +40 -0
- data/documentation/Home.md +78 -51
- data/documentation/How-PWN-Works.md +59 -57
- data/documentation/Installation.md +53 -28
- data/documentation/Metasploit.md +34 -0
- data/documentation/NmapIt.md +18 -12
- data/documentation/PWN.png +0 -0
- data/documentation/PWN_Contributors_and_Users.png +0 -0
- data/documentation/Persistence.md +38 -0
- data/documentation/Plugins.md +97 -47
- data/documentation/Reporting.md +25 -18
- data/documentation/SAST.md +39 -22
- data/documentation/SDR.md +40 -0
- data/documentation/Sessions.md +39 -0
- data/documentation/Skills-Memory-Learning.md +49 -29
- data/documentation/Swarm.md +71 -0
- data/documentation/Transparent-Browser.md +26 -22
- data/documentation/Troubleshooting.md +44 -25
- data/documentation/WWW.md +32 -0
- data/documentation/What-is-PWN.md +51 -32
- data/documentation/Why-PWN.md +41 -11
- data/documentation/diagrams/agent-tool-registry.svg +284 -0
- data/documentation/diagrams/ai-integration-tool-calling.svg +141 -103
- data/documentation/diagrams/aws-cloud-security.svg +166 -0
- 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/cron-scheduling.svg +148 -0
- 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/hardware-hacking.dot +48 -0
- 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/persistence-filesystem.dot +29 -0
- 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/extrospection-world-awareness.svg +185 -0
- data/documentation/diagrams/fuzzing-workflow.svg +128 -115
- data/documentation/diagrams/hardware-hacking.svg +163 -0
- 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/persistence-filesystem.svg +174 -0
- 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/sdr-radio-flow.svg +146 -0
- data/documentation/diagrams/sessions-cron-automation.svg +112 -68
- data/documentation/diagrams/swarm-multi-agent.svg +225 -0
- data/documentation/diagrams/web-application-testing.svg +136 -100
- data/documentation/diagrams/zero-day-research-flow.svg +116 -112
- data/documentation/fax-spectrogram.png +0 -0
- data/documentation/fax-waveform.png +0 -0
- data/documentation/pwn-REPL.md +40 -24
- data/documentation/pwn-ai-Agent.md +59 -30
- data/documentation/pwn_android_war_dialer_session.png +0 -0
- data/documentation/pwn_install.png +0 -0
- data/documentation/pwn_wallpaper.jpg +0 -0
- data/documentation/ringing-spectrogram.png +0 -0
- data/documentation/ringing-waveform.png +0 -0
- 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 +199 -37
- metadata +65 -3
- data/lib/pwn/ai/introspection.rb +0 -76
|
@@ -3,146 +3,199 @@
|
|
|
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="
|
|
12
|
-
|
|
6
|
+
<!-- Title: PWN_Pentest Pages: 1 -->
|
|
7
|
+
<svg width="1381pt" height="292pt"
|
|
8
|
+
viewBox="0.00 0.00 1381.00 292.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 249.2)">
|
|
10
|
+
<title>PWN_Pentest</title>
|
|
11
|
+
<polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-249.2 1337.95,-249.2 1337.95,43.2 -43.2,43.2"/>
|
|
12
|
+
<text xml:space="preserve" text-anchor="start" x="450.88" y="-184" font-family="sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">End-to-End Penetration Testing with PWN</text>
|
|
13
|
+
<text xml:space="preserve" text-anchor="start" x="526.25" y="-172.55" font-family="sans-Serif" font-size="11.00" fill="#94a3b8">recon → enumerate → exploit → post-ex → report</text>
|
|
14
|
+
<g id="clust1" class="cluster">
|
|
15
|
+
<title>cluster_recon</title>
|
|
16
|
+
<path fill="#022c22" stroke="#047857" d="M166,-8C166,-8 285.75,-8 285.75,-8 291.75,-8 297.75,-14 297.75,-20 297.75,-20 297.75,-147 297.75,-147 297.75,-153 291.75,-159 285.75,-159 285.75,-159 166,-159 166,-159 160,-159 154,-153 154,-147 154,-147 154,-20 154,-20 154,-14 160,-8 166,-8"/>
|
|
17
|
+
<text xml:space="preserve" text-anchor="middle" x="225.88" y="-136" font-family="sans-Serif" font-size="20.00" fill="#a7f3d0">1 · Recon</text>
|
|
18
|
+
</g>
|
|
19
|
+
<g id="clust2" class="cluster">
|
|
20
|
+
<title>cluster_enum</title>
|
|
21
|
+
<path fill="#022c22" stroke="#047857" d="M379.75,-8C379.75,-8 497,-8 497,-8 503,-8 509,-14 509,-20 509,-20 509,-147 509,-147 509,-153 503,-159 497,-159 497,-159 379.75,-159 379.75,-159 373.75,-159 367.75,-153 367.75,-147 367.75,-147 367.75,-20 367.75,-20 367.75,-14 373.75,-8 379.75,-8"/>
|
|
22
|
+
<text xml:space="preserve" text-anchor="middle" x="438.38" y="-136" font-family="sans-Serif" font-size="20.00" fill="#a7f3d0">2 · Enumerate</text>
|
|
23
|
+
</g>
|
|
24
|
+
<g id="clust3" class="cluster">
|
|
25
|
+
<title>cluster_vuln</title>
|
|
26
|
+
<path fill="#422006" stroke="#a16207" d="M591,-8C591,-8 700,-8 700,-8 706,-8 712,-14 712,-20 712,-20 712,-147 712,-147 712,-153 706,-159 700,-159 700,-159 591,-159 591,-159 585,-159 579,-153 579,-147 579,-147 579,-20 579,-20 579,-14 585,-8 591,-8"/>
|
|
27
|
+
<text xml:space="preserve" text-anchor="middle" x="645.5" y="-136" font-family="sans-Serif" font-size="20.00" fill="#fde68a">3 · Vuln Scan</text>
|
|
28
|
+
</g>
|
|
29
|
+
<g id="clust4" class="cluster">
|
|
30
|
+
<title>cluster_xpl</title>
|
|
31
|
+
<path fill="#450a0a" stroke="#b91c1c" d="M794,-8C794,-8 885.25,-8 885.25,-8 891.25,-8 897.25,-14 897.25,-20 897.25,-20 897.25,-147 897.25,-147 897.25,-153 891.25,-159 885.25,-159 885.25,-159 794,-159 794,-159 788,-159 782,-153 782,-147 782,-147 782,-20 782,-20 782,-14 788,-8 794,-8"/>
|
|
32
|
+
<text xml:space="preserve" text-anchor="middle" x="839.62" y="-136" font-family="sans-Serif" font-size="20.00" fill="#fecaca">4 · Exploit</text>
|
|
33
|
+
</g>
|
|
34
|
+
<g id="clust5" class="cluster">
|
|
35
|
+
<title>cluster_post</title>
|
|
36
|
+
<path fill="#2e1065" stroke="#6d28d9" d="M979.25,-8C979.25,-8 1068,-8 1068,-8 1074,-8 1080,-14 1080,-20 1080,-20 1080,-147 1080,-147 1080,-153 1074,-159 1068,-159 1068,-159 979.25,-159 979.25,-159 973.25,-159 967.25,-153 967.25,-147 967.25,-147 967.25,-20 967.25,-20 967.25,-14 973.25,-8 979.25,-8"/>
|
|
37
|
+
<text xml:space="preserve" text-anchor="middle" x="1023.62" y="-136" font-family="sans-Serif" font-size="20.00" fill="#ddd6fe">5 · Post-Ex</text>
|
|
38
|
+
</g>
|
|
39
|
+
<!-- Scope -->
|
|
13
40
|
<g id="node1" class="node">
|
|
14
|
-
<title>
|
|
15
|
-
<path fill="
|
|
16
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
17
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
41
|
+
<title>Scope</title>
|
|
42
|
+
<path fill="#7dd3fc" stroke="#334155" stroke-width="1.3" d="M64,-86C64,-86 12,-86 12,-86 6,-86 0,-80 0,-74 0,-74 0,-62 0,-62 0,-56 6,-50 12,-50 12,-50 64,-50 64,-50 70,-50 76,-56 76,-62 76,-62 76,-74 76,-74 76,-80 70,-86 64,-86"/>
|
|
43
|
+
<text xml:space="preserve" text-anchor="middle" x="38" y="-70.88" font-family="sans-Serif" font-size="10.00" fill="#0f172a">🎯  Scope</text>
|
|
44
|
+
<text xml:space="preserve" text-anchor="middle" x="38" y="-58.12" font-family="sans-Serif" font-size="10.00" fill="#0f172a">targets · rules</text>
|
|
18
45
|
</g>
|
|
19
|
-
<!--
|
|
46
|
+
<!-- Shodan -->
|
|
20
47
|
<g id="node2" class="node">
|
|
21
|
-
<title>
|
|
22
|
-
<
|
|
23
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
24
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
25
|
-
<text xml:space="preserve" text-anchor="middle" x="186.77" y="-684.17" font-family="Arial" font-size="9.00">IPInfo, crt.sh)</text>
|
|
48
|
+
<title>Shodan</title>
|
|
49
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M257.5,-52C257.5,-52 194.25,-52 194.25,-52 188.25,-52 182.25,-46 182.25,-40 182.25,-40 182.25,-28 182.25,-28 182.25,-22 188.25,-16 194.25,-16 194.25,-16 257.5,-16 257.5,-16 263.5,-16 269.5,-22 269.5,-28 269.5,-28 269.5,-40 269.5,-40 269.5,-46 263.5,-52 257.5,-52"/>
|
|
50
|
+
<text xml:space="preserve" text-anchor="middle" x="225.88" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Shodan</text>
|
|
51
|
+
<text xml:space="preserve" text-anchor="middle" x="225.88" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Hunter · IPInfo</text>
|
|
26
52
|
</g>
|
|
27
|
-
<!--
|
|
53
|
+
<!-- Scope->Shodan -->
|
|
28
54
|
<g id="edge1" class="edge">
|
|
29
|
-
<title>
|
|
30
|
-
<path fill="none" stroke="
|
|
31
|
-
<polygon fill="
|
|
55
|
+
<title>Scope->Shodan</title>
|
|
56
|
+
<path fill="none" stroke="#38bdf8" stroke-width="1.3" d="M76.61,-61.12C104.09,-56.09 141.7,-49.21 172.16,-43.64"/>
|
|
57
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="1.3" points="172.48,-46.43 179.85,-42.24 171.47,-40.92 172.48,-46.43"/>
|
|
32
58
|
</g>
|
|
33
|
-
<!--
|
|
59
|
+
<!-- CrtSh -->
|
|
34
60
|
<g id="node3" class="node">
|
|
35
|
-
<title>
|
|
36
|
-
<
|
|
37
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
38
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
39
|
-
<text xml:space="preserve" text-anchor="middle" x="136.77" y="-591.31" font-family="Arial" font-size="9.00">Nexpose, ZAP/Burp)</text>
|
|
61
|
+
<title>CrtSh</title>
|
|
62
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M277.75,-120C277.75,-120 174,-120 174,-120 168,-120 162,-114 162,-108 162,-108 162,-96 162,-96 162,-90 168,-84 174,-84 174,-84 277.75,-84 277.75,-84 283.75,-84 289.75,-90 289.75,-96 289.75,-96 289.75,-108 289.75,-108 289.75,-114 283.75,-120 277.75,-120"/>
|
|
63
|
+
<text xml:space="preserve" text-anchor="middle" x="225.88" y="-104.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">bin/pwn_crt_sh</text>
|
|
64
|
+
<text xml:space="preserve" text-anchor="middle" x="225.88" y="-92.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">WWW::WaybackMachine</text>
|
|
40
65
|
</g>
|
|
41
|
-
<!--
|
|
66
|
+
<!-- Scope->CrtSh -->
|
|
42
67
|
<g id="edge2" class="edge">
|
|
43
|
-
<title>
|
|
44
|
-
<path fill="none" stroke="
|
|
45
|
-
<polygon fill="
|
|
68
|
+
<title>Scope->CrtSh</title>
|
|
69
|
+
<path fill="none" stroke="#38bdf8" stroke-width="1.3" d="M76.61,-74.88C98.25,-78.84 126.17,-83.95 151.94,-88.66"/>
|
|
70
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="1.3" points="151.39,-91.4 159.76,-90.09 152.39,-85.9 151.39,-91.4"/>
|
|
46
71
|
</g>
|
|
47
|
-
<!--
|
|
72
|
+
<!-- Nmap -->
|
|
48
73
|
<g id="node4" class="node">
|
|
49
|
-
<title>
|
|
50
|
-
<
|
|
51
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
52
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
</g>
|
|
56
|
-
<!-- Scanning->Web -->
|
|
74
|
+
<title>Nmap</title>
|
|
75
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M476.25,-52C476.25,-52 399.5,-52 399.5,-52 393.5,-52 387.5,-46 387.5,-40 387.5,-40 387.5,-28 387.5,-28 387.5,-22 393.5,-16 399.5,-16 399.5,-16 476.25,-16 476.25,-16 482.25,-16 488.25,-22 488.25,-28 488.25,-28 488.25,-40 488.25,-40 488.25,-46 482.25,-52 476.25,-52"/>
|
|
76
|
+
<text xml:space="preserve" text-anchor="middle" x="437.88" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::NmapIt</text>
|
|
77
|
+
<text xml:space="preserve" text-anchor="middle" x="437.88" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">TCP/UDP discover</text>
|
|
78
|
+
</g>
|
|
79
|
+
<!-- Shodan->Nmap -->
|
|
57
80
|
<g id="edge3" class="edge">
|
|
58
|
-
<title>
|
|
59
|
-
<path fill="none" stroke="
|
|
60
|
-
<polygon fill="
|
|
81
|
+
<title>Shodan->Nmap</title>
|
|
82
|
+
<path fill="none" stroke="#34d399" stroke-width="1.3" d="M270.13,-34C301.06,-34 343.07,-34 377.18,-34"/>
|
|
83
|
+
<polygon fill="#34d399" stroke="#34d399" stroke-width="1.3" points="377.07,-36.8 385.07,-34 377.07,-31.2 377.07,-36.8"/>
|
|
61
84
|
</g>
|
|
62
|
-
<!--
|
|
85
|
+
<!-- Spider -->
|
|
63
86
|
<g id="node5" class="node">
|
|
64
|
-
<title>
|
|
65
|
-
<
|
|
66
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
67
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
68
|
-
<text xml:space="preserve" text-anchor="middle" x="120.77" y="-390.74" font-family="Arial" font-size="9.00">pwn_fuzz_net_app_proto)</text>
|
|
87
|
+
<title>Spider</title>
|
|
88
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M477.75,-120C477.75,-120 398,-120 398,-120 392,-120 386,-114 386,-108 386,-108 386,-96 386,-96 386,-90 392,-84 398,-84 398,-84 477.75,-84 477.75,-84 483.75,-84 489.75,-90 489.75,-96 489.75,-96 489.75,-108 489.75,-108 489.75,-114 483.75,-120 477.75,-120"/>
|
|
89
|
+
<text xml:space="preserve" text-anchor="middle" x="437.88" y="-104.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Spider</text>
|
|
90
|
+
<text xml:space="preserve" text-anchor="middle" x="437.88" y="-92.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">TransparentBrowser</text>
|
|
69
91
|
</g>
|
|
70
|
-
<!--
|
|
92
|
+
<!-- CrtSh->Spider -->
|
|
71
93
|
<g id="edge4" class="edge">
|
|
72
|
-
<title>
|
|
73
|
-
<path fill="none" stroke="
|
|
74
|
-
<polygon fill="
|
|
94
|
+
<title>CrtSh->Spider</title>
|
|
95
|
+
<path fill="none" stroke="#34d399" stroke-width="1.3" d="M290.17,-102C317.38,-102 349.05,-102 375.99,-102"/>
|
|
96
|
+
<polygon fill="#34d399" stroke="#34d399" stroke-width="1.3" points="375.72,-104.8 383.72,-102 375.72,-99.2 375.72,-104.8"/>
|
|
75
97
|
</g>
|
|
76
|
-
<!--
|
|
98
|
+
<!-- Burp -->
|
|
77
99
|
<g id="node6" class="node">
|
|
78
|
-
<title>
|
|
79
|
-
<
|
|
80
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
81
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
82
|
-
<text xml:space="preserve" text-anchor="middle" x="120.77" y="-279.38" font-family="Arial" font-size="9.00">BeEF, Serial, etc.)</text>
|
|
100
|
+
<title>Burp</title>
|
|
101
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M681.5,-120C681.5,-120 608.5,-120 608.5,-120 602.5,-120 596.5,-114 596.5,-108 596.5,-108 596.5,-96 596.5,-96 596.5,-90 602.5,-84 608.5,-84 608.5,-84 681.5,-84 681.5,-84 687.5,-84 693.5,-90 693.5,-96 693.5,-96 693.5,-108 693.5,-108 693.5,-114 687.5,-120 681.5,-120"/>
|
|
102
|
+
<text xml:space="preserve" text-anchor="middle" x="645" y="-104.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::BurpSuite</text>
|
|
103
|
+
<text xml:space="preserve" text-anchor="middle" x="645" y="-92.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">active scan</text>
|
|
83
104
|
</g>
|
|
84
|
-
<!--
|
|
105
|
+
<!-- Nmap->Burp -->
|
|
85
106
|
<g id="edge5" class="edge">
|
|
86
|
-
<title>
|
|
87
|
-
<path fill="none" stroke="
|
|
88
|
-
<polygon fill="
|
|
107
|
+
<title>Nmap->Burp</title>
|
|
108
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M488.79,-50.55C518.35,-60.35 555.9,-72.8 586.67,-82.99"/>
|
|
109
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="585.64,-85.6 594.12,-85.46 587.4,-80.29 585.64,-85.6"/>
|
|
89
110
|
</g>
|
|
90
|
-
<!--
|
|
111
|
+
<!-- Nessus -->
|
|
91
112
|
<g id="node7" class="node">
|
|
92
|
-
<title>
|
|
93
|
-
<
|
|
94
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
95
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
96
|
-
<text xml:space="preserve" text-anchor="middle" x="71.77" y="-186.52" font-family="Arial" font-size="9.00">credential extraction)</text>
|
|
113
|
+
<title>Nessus</title>
|
|
114
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M686,-52C686,-52 604,-52 604,-52 598,-52 592,-46 592,-40 592,-40 592,-28 592,-28 592,-22 598,-16 604,-16 604,-16 686,-16 686,-16 692,-16 698,-22 698,-28 698,-28 698,-40 698,-40 698,-46 692,-52 686,-52"/>
|
|
115
|
+
<text xml:space="preserve" text-anchor="middle" x="645" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">NessusCloud</text>
|
|
116
|
+
<text xml:space="preserve" text-anchor="middle" x="645" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">OpenVAS · Nexpose</text>
|
|
97
117
|
</g>
|
|
98
|
-
<!--
|
|
118
|
+
<!-- Nmap->Nessus -->
|
|
99
119
|
<g id="edge6" class="edge">
|
|
100
|
-
<title>
|
|
101
|
-
<path fill="none" stroke="
|
|
102
|
-
<polygon fill="
|
|
120
|
+
<title>Nmap->Nessus</title>
|
|
121
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M488.79,-34C516.81,-34 552.03,-34 581.83,-34"/>
|
|
122
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="581.74,-36.8 589.74,-34 581.74,-31.2 581.74,-36.8"/>
|
|
103
123
|
</g>
|
|
104
|
-
<!--
|
|
105
|
-
<g id="node8" class="node">
|
|
106
|
-
<title>Report</title>
|
|
107
|
-
<ellipse fill="none" stroke="black" cx="83.77" cy="-106.13" rx="56.39" ry="20.51"/>
|
|
108
|
-
<text xml:space="preserve" text-anchor="middle" x="83.77" y="-108.08" font-family="Arial" font-size="9.00">Reporting</text>
|
|
109
|
-
<text xml:space="preserve" text-anchor="middle" x="83.77" y="-97.58" font-family="Arial" font-size="9.00">(PWN::Reports)</text>
|
|
110
|
-
</g>
|
|
111
|
-
<!-- Post->Report -->
|
|
124
|
+
<!-- Spider->Burp -->
|
|
112
125
|
<g id="edge7" class="edge">
|
|
113
|
-
<title>
|
|
114
|
-
<path fill="none" stroke="
|
|
115
|
-
<polygon fill="
|
|
126
|
+
<title>Spider->Burp</title>
|
|
127
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M490.37,-102C519.48,-102 555.96,-102 586.06,-102"/>
|
|
128
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="586.04,-104.8 594.04,-102 586.04,-99.2 586.04,-104.8"/>
|
|
116
129
|
</g>
|
|
117
|
-
<!--
|
|
118
|
-
<g id="
|
|
119
|
-
<title>
|
|
120
|
-
<path fill="
|
|
121
|
-
<
|
|
122
|
-
<text xml:space="preserve" text-anchor="middle" x="171.77" y="-21.89" font-family="Arial" font-size="9.00">Memory + Skills</text>
|
|
123
|
-
<text xml:space="preserve" text-anchor="middle" x="171.77" y="-11.39" font-family="Arial" font-size="9.00">(persistent context)</text>
|
|
130
|
+
<!-- MSF -->
|
|
131
|
+
<g id="node8" class="node">
|
|
132
|
+
<title>MSF</title>
|
|
133
|
+
<path fill="#fda4af" stroke="#334155" stroke-width="1.3" d="M877.25,-120C877.25,-120 802,-120 802,-120 796,-120 790,-114 790,-108 790,-108 790,-96 790,-96 790,-90 796,-84 802,-84 802,-84 877.25,-84 877.25,-84 883.25,-84 889.25,-90 889.25,-96 889.25,-96 889.25,-108 889.25,-108 889.25,-114 883.25,-120 877.25,-120"/>
|
|
134
|
+
<text xml:space="preserve" text-anchor="middle" x="839.62" y="-98.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Metasploit</text>
|
|
124
135
|
</g>
|
|
125
|
-
<!--
|
|
136
|
+
<!-- Burp->MSF -->
|
|
126
137
|
<g id="edge8" class="edge">
|
|
127
|
-
<title>
|
|
128
|
-
<path fill="none" stroke="
|
|
129
|
-
<polygon fill="
|
|
130
|
-
<text xml:space="preserve" text-anchor="middle" x="131.52" y="-60.02" font-family="Arial" font-size="8.00">note outcomes</text>
|
|
138
|
+
<title>Burp->MSF</title>
|
|
139
|
+
<path fill="none" stroke="#fb7185" stroke-width="1.3" d="M694.11,-102C720.01,-102 752.18,-102 779.59,-102"/>
|
|
140
|
+
<polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="779.49,-104.8 787.49,-102 779.49,-99.2 779.49,-104.8"/>
|
|
131
141
|
</g>
|
|
132
|
-
<!--
|
|
133
|
-
<g id="
|
|
134
|
-
<title>
|
|
135
|
-
<path fill="
|
|
136
|
-
<
|
|
137
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
138
|
-
<text xml:space="preserve" text-anchor="middle" x="261.27" y="-341.26" font-family="Arial" font-size="8.00">findings</text>
|
|
142
|
+
<!-- Fuzz -->
|
|
143
|
+
<g id="node9" class="node">
|
|
144
|
+
<title>Fuzz</title>
|
|
145
|
+
<path fill="#fda4af" stroke="#334155" stroke-width="1.3" d="M866.75,-52C866.75,-52 812.5,-52 812.5,-52 806.5,-52 800.5,-46 800.5,-40 800.5,-40 800.5,-28 800.5,-28 800.5,-22 806.5,-16 812.5,-16 812.5,-16 866.75,-16 866.75,-16 872.75,-16 878.75,-22 878.75,-28 878.75,-28 878.75,-40 878.75,-40 878.75,-46 872.75,-52 866.75,-52"/>
|
|
146
|
+
<text xml:space="preserve" text-anchor="middle" x="839.62" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Fuzz</text>
|
|
147
|
+
<text xml:space="preserve" text-anchor="middle" x="839.62" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Packet · Sock</text>
|
|
139
148
|
</g>
|
|
140
|
-
<!--
|
|
149
|
+
<!-- Nessus->Fuzz -->
|
|
150
|
+
<g id="edge9" class="edge">
|
|
151
|
+
<title>Nessus->Fuzz</title>
|
|
152
|
+
<path fill="none" stroke="#fb7185" stroke-width="1.3" d="M698.64,-34C727.21,-34 762.29,-34 790.18,-34"/>
|
|
153
|
+
<polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="790.14,-36.8 798.14,-34 790.14,-31.2 790.14,-36.8"/>
|
|
154
|
+
</g>
|
|
155
|
+
<!-- Beef -->
|
|
156
|
+
<g id="node10" class="node">
|
|
157
|
+
<title>Beef</title>
|
|
158
|
+
<path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M1052.5,-120C1052.5,-120 993.75,-120 993.75,-120 987.75,-120 981.75,-114 981.75,-108 981.75,-108 981.75,-96 981.75,-96 981.75,-90 987.75,-84 993.75,-84 993.75,-84 1052.5,-84 1052.5,-84 1058.5,-84 1064.5,-90 1064.5,-96 1064.5,-96 1064.5,-108 1064.5,-108 1064.5,-114 1058.5,-120 1052.5,-120"/>
|
|
159
|
+
<text xml:space="preserve" text-anchor="middle" x="1023.12" y="-104.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::BeEF</text>
|
|
160
|
+
<text xml:space="preserve" text-anchor="middle" x="1023.12" y="-92.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Android · Serial</text>
|
|
161
|
+
</g>
|
|
162
|
+
<!-- MSF->Beef -->
|
|
141
163
|
<g id="edge10" class="edge">
|
|
142
|
-
<title>
|
|
143
|
-
<path fill="none" stroke="
|
|
144
|
-
<polygon fill="
|
|
145
|
-
|
|
164
|
+
<title>MSF->Beef</title>
|
|
165
|
+
<path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M889.74,-102C915.04,-102 945.86,-102 971.39,-102"/>
|
|
166
|
+
<polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="971.28,-104.8 979.28,-102 971.28,-99.2 971.28,-104.8"/>
|
|
167
|
+
</g>
|
|
168
|
+
<!-- Tor -->
|
|
169
|
+
<g id="node11" class="node">
|
|
170
|
+
<title>Tor</title>
|
|
171
|
+
<path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M1045,-52C1045,-52 1001.25,-52 1001.25,-52 995.25,-52 989.25,-46 989.25,-40 989.25,-40 989.25,-28 989.25,-28 989.25,-22 995.25,-16 1001.25,-16 1001.25,-16 1045,-16 1045,-16 1051,-16 1057,-22 1057,-28 1057,-28 1057,-40 1057,-40 1057,-46 1051,-52 1045,-52"/>
|
|
172
|
+
<text xml:space="preserve" text-anchor="middle" x="1023.12" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Tor</text>
|
|
173
|
+
<text xml:space="preserve" text-anchor="middle" x="1023.12" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pivot / exfil</text>
|
|
174
|
+
</g>
|
|
175
|
+
<!-- Fuzz->Tor -->
|
|
176
|
+
<g id="edge11" class="edge">
|
|
177
|
+
<title>Fuzz->Tor</title>
|
|
178
|
+
<path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M879.12,-34C908.38,-34 948.64,-34 978.99,-34"/>
|
|
179
|
+
<polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="978.9,-36.8 986.9,-34 978.9,-31.2 978.9,-36.8"/>
|
|
180
|
+
</g>
|
|
181
|
+
<!-- Report -->
|
|
182
|
+
<g id="node12" class="node">
|
|
183
|
+
<title>Report</title>
|
|
184
|
+
<path fill="#7dd3fc" stroke="#334155" stroke-width="1.3" d="M1282.75,-86C1282.75,-86 1170,-86 1170,-86 1164,-86 1158,-80 1158,-74 1158,-74 1158,-62 1158,-62 1158,-56 1164,-50 1170,-50 1170,-50 1282.75,-50 1282.75,-50 1288.75,-50 1294.75,-56 1294.75,-62 1294.75,-62 1294.75,-74 1294.75,-74 1294.75,-80 1288.75,-86 1282.75,-86"/>
|
|
185
|
+
<text xml:space="preserve" text-anchor="middle" x="1226.38" y="-70.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">PWN::Reports</text>
|
|
186
|
+
<text xml:space="preserve" text-anchor="middle" x="1226.38" y="-58.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">HTML · JSON · DefectDojo</text>
|
|
187
|
+
</g>
|
|
188
|
+
<!-- Beef->Report -->
|
|
189
|
+
<g id="edge12" class="edge">
|
|
190
|
+
<title>Beef->Report</title>
|
|
191
|
+
<path fill="none" stroke="#38bdf8" stroke-width="2" d="M1064.85,-95.12C1088.38,-91.15 1118.77,-86.01 1146.77,-81.28"/>
|
|
192
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="2" points="1146.96,-84.09 1154.38,-79.99 1146.03,-78.57 1146.96,-84.09"/>
|
|
193
|
+
</g>
|
|
194
|
+
<!-- Tor->Report -->
|
|
195
|
+
<g id="edge13" class="edge">
|
|
196
|
+
<title>Tor->Report</title>
|
|
197
|
+
<path fill="none" stroke="#38bdf8" stroke-width="2" d="M1057.36,-39.61C1081.63,-43.71 1115.57,-49.45 1146.6,-54.69"/>
|
|
198
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="2" points="1146.1,-57.45 1154.45,-56.02 1147.03,-51.92 1146.1,-57.45"/>
|
|
146
199
|
</g>
|
|
147
200
|
</g>
|
|
148
201
|
</svg>
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
|
3
|
+
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
+
<!-- Generated by graphviz version 14.1.2 (0)
|
|
5
|
+
-->
|
|
6
|
+
<!-- Title: PWN_Persistence Pages: 1 -->
|
|
7
|
+
<svg width="604pt" height="822pt"
|
|
8
|
+
viewBox="0.00 0.00 604.00 822.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 778.45)">
|
|
10
|
+
<title>PWN_Persistence</title>
|
|
11
|
+
<polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-778.45 560.95,-778.45 560.95,43.2 -43.2,43.2"/>
|
|
12
|
+
<text xml:space="preserve" text-anchor="start" x="8" y="-713.25" font-family="sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">~/.pwn/ — Everything PWN Persists Across Sessions</text>
|
|
13
|
+
<!-- Root -->
|
|
14
|
+
<g id="node1" class="node">
|
|
15
|
+
<title>Root</title>
|
|
16
|
+
<polygon fill="#7dd3fc" stroke="#334155" stroke-width="1.3" points="165.62,-370 162.62,-374 141.62,-374 138.62,-370 106.12,-370 106.12,-334 165.62,-334 165.62,-370"/>
|
|
17
|
+
<text xml:space="preserve" text-anchor="middle" x="135.88" y="-347.15" font-family="sans-Serif" font-size="13.00" fill="#0f172a">~/.pwn/</text>
|
|
18
|
+
</g>
|
|
19
|
+
<!-- cfg -->
|
|
20
|
+
<g id="node2" class="node">
|
|
21
|
+
<title>cfg</title>
|
|
22
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M406.38,-700C406.38,-702.21 376.23,-704 339.12,-704 302.02,-704 271.88,-702.21 271.88,-700 271.88,-700 271.88,-664 271.88,-664 271.88,-661.79 302.02,-660 339.12,-660 376.23,-660 406.38,-661.79 406.38,-664 406.38,-664 406.38,-700 406.38,-700"/>
|
|
23
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M406.38,-700C406.38,-697.79 376.23,-696 339.12,-696 302.02,-696 271.88,-697.79 271.88,-700"/>
|
|
24
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-684.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">config.yml</text>
|
|
25
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-672.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">engines · keys · agent opts</text>
|
|
26
|
+
</g>
|
|
27
|
+
<!-- Root->cfg -->
|
|
28
|
+
<g id="edge1" class="edge">
|
|
29
|
+
<title>Root->cfg</title>
|
|
30
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M140.21,-370.59C150.26,-421.58 184.72,-565.4 266.62,-649 269.05,-651.47 271.69,-653.78 274.48,-655.93"/>
|
|
31
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="272.75,-657.7 279.89,-659.7 275.55,-653.68 272.75,-657.7"/>
|
|
32
|
+
</g>
|
|
33
|
+
<!-- mem -->
|
|
34
|
+
<g id="node3" class="node">
|
|
35
|
+
<title>mem</title>
|
|
36
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M407.12,-634C407.12,-636.21 376.65,-638 339.12,-638 301.6,-638 271.12,-636.21 271.12,-634 271.12,-634 271.12,-598 271.12,-598 271.12,-595.79 301.6,-594 339.12,-594 376.65,-594 407.12,-595.79 407.12,-598 407.12,-598 407.12,-634 407.12,-634"/>
|
|
37
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M407.12,-634C407.12,-631.79 376.65,-630 339.12,-630 301.6,-630 271.12,-631.79 271.12,-634"/>
|
|
38
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-618.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">memory.json</text>
|
|
39
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-606.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">facts · prefs · lessons · env</text>
|
|
40
|
+
</g>
|
|
41
|
+
<!-- Root->mem -->
|
|
42
|
+
<g id="edge2" class="edge">
|
|
43
|
+
<title>Root->mem</title>
|
|
44
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M142.76,-370.4C157.25,-413.11 198.54,-520.11 266.62,-583 269.28,-585.45 272.15,-587.75 275.16,-589.9"/>
|
|
45
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="273.82,-591.95 281.02,-593.73 276.5,-587.85 273.82,-591.95"/>
|
|
46
|
+
</g>
|
|
47
|
+
<!-- skl -->
|
|
48
|
+
<g id="node4" class="node">
|
|
49
|
+
<title>skl</title>
|
|
50
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M405.25,-568C405.25,-570.21 375.61,-572 339.12,-572 302.64,-572 273,-570.21 273,-568 273,-568 273,-532 273,-532 273,-529.79 302.64,-528 339.12,-528 375.61,-528 405.25,-529.79 405.25,-532 405.25,-532 405.25,-568 405.25,-568"/>
|
|
51
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M405.25,-568C405.25,-565.79 375.61,-564 339.12,-564 302.64,-564 273,-565.79 273,-568"/>
|
|
52
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-552.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">skills/*.md</text>
|
|
53
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-540.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">reusable procedures + refs</text>
|
|
54
|
+
</g>
|
|
55
|
+
<!-- Root->skl -->
|
|
56
|
+
<g id="edge3" class="edge">
|
|
57
|
+
<title>Root->skl</title>
|
|
58
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M147.31,-370.43C166.9,-403.62 212.14,-473.98 266.62,-517 269.81,-519.52 273.22,-521.89 276.75,-524.13"/>
|
|
59
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="275.46,-526.21 282.73,-527.67 277.96,-521.99 275.46,-526.21"/>
|
|
60
|
+
</g>
|
|
61
|
+
<!-- lrn -->
|
|
62
|
+
<g id="node5" class="node">
|
|
63
|
+
<title>lrn</title>
|
|
64
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M379.38,-502C379.38,-504.21 361.33,-506 339.12,-506 316.92,-506 298.88,-504.21 298.88,-502 298.88,-502 298.88,-466 298.88,-466 298.88,-463.79 316.92,-462 339.12,-462 361.33,-462 379.38,-463.79 379.38,-466 379.38,-466 379.38,-502 379.38,-502"/>
|
|
65
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M379.38,-502C379.38,-499.79 361.33,-498 339.12,-498 316.92,-498 298.88,-499.79 298.88,-502"/>
|
|
66
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-486.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">learning.jsonl</text>
|
|
67
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-474.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">task outcomes</text>
|
|
68
|
+
</g>
|
|
69
|
+
<!-- Root->lrn -->
|
|
70
|
+
<g id="edge4" class="edge">
|
|
71
|
+
<title>Root->lrn</title>
|
|
72
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M157.87,-370.35C182.71,-391.48 225.85,-426.44 266.62,-451 274.17,-455.54 282.44,-459.89 290.6,-463.85"/>
|
|
73
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="289.48,-466.03 296.86,-466.81 291.58,-461.6 289.48,-466.03"/>
|
|
74
|
+
</g>
|
|
75
|
+
<!-- met -->
|
|
76
|
+
<g id="node6" class="node">
|
|
77
|
+
<title>met</title>
|
|
78
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M385,-436C385,-438.21 364.44,-440 339.12,-440 313.81,-440 293.25,-438.21 293.25,-436 293.25,-436 293.25,-400 293.25,-400 293.25,-397.79 313.81,-396 339.12,-396 364.44,-396 385,-397.79 385,-400 385,-400 385,-436 385,-436"/>
|
|
79
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M385,-436C385,-433.79 364.44,-432 339.12,-432 313.81,-432 293.25,-433.79 293.25,-436"/>
|
|
80
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-420.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">metrics.json</text>
|
|
81
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-408.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">per-tool telemetry</text>
|
|
82
|
+
</g>
|
|
83
|
+
<!-- Root->met -->
|
|
84
|
+
<g id="edge5" class="edge">
|
|
85
|
+
<title>Root->met</title>
|
|
86
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M166.14,-361.6C197.18,-371.78 246.89,-388.08 284.9,-400.55"/>
|
|
87
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="283.83,-402.77 291.24,-402.62 285.35,-398.12 283.83,-402.77"/>
|
|
88
|
+
</g>
|
|
89
|
+
<!-- ext -->
|
|
90
|
+
<g id="node7" class="node">
|
|
91
|
+
<title>ext</title>
|
|
92
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M411.62,-370C411.62,-372.21 379.13,-374 339.12,-374 299.12,-374 266.62,-372.21 266.62,-370 266.62,-370 266.62,-334 266.62,-334 266.62,-331.79 299.12,-330 339.12,-330 379.13,-330 411.62,-331.79 411.62,-334 411.62,-334 411.62,-370 411.62,-370"/>
|
|
93
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M411.62,-370C411.62,-367.79 379.13,-366 339.12,-366 299.12,-366 266.62,-367.79 266.62,-370"/>
|
|
94
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-354.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">extrospection.json</text>
|
|
95
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-342.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">host snapshot + observations</text>
|
|
96
|
+
</g>
|
|
97
|
+
<!-- Root->ext -->
|
|
98
|
+
<g id="edge6" class="edge">
|
|
99
|
+
<title>Root->ext</title>
|
|
100
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M166.14,-352C190.16,-352 225.35,-352 257.65,-352"/>
|
|
101
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="257.57,-354.45 264.57,-352 257.57,-349.55 257.57,-354.45"/>
|
|
102
|
+
</g>
|
|
103
|
+
<!-- ses -->
|
|
104
|
+
<g id="node8" class="node">
|
|
105
|
+
<title>ses</title>
|
|
106
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M381.62,-304C381.62,-306.21 362.58,-308 339.12,-308 315.67,-308 296.62,-306.21 296.62,-304 296.62,-304 296.62,-268 296.62,-268 296.62,-265.79 315.67,-264 339.12,-264 362.58,-264 381.62,-265.79 381.62,-268 381.62,-268 381.62,-304 381.62,-304"/>
|
|
107
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M381.62,-304C381.62,-301.79 362.58,-300 339.12,-300 315.67,-300 296.62,-301.79 296.62,-304"/>
|
|
108
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-288.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">sessions/*.jsonl</text>
|
|
109
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-276.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">transcripts</text>
|
|
110
|
+
</g>
|
|
111
|
+
<!-- Root->ses -->
|
|
112
|
+
<g id="edge7" class="edge">
|
|
113
|
+
<title>Root->ses</title>
|
|
114
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M166.14,-342.4C198.1,-331.92 249.84,-314.95 288.24,-302.36"/>
|
|
115
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="288.74,-304.77 294.63,-300.26 287.22,-300.12 288.74,-304.77"/>
|
|
116
|
+
</g>
|
|
117
|
+
<!-- crn -->
|
|
118
|
+
<g id="node9" class="node">
|
|
119
|
+
<title>crn</title>
|
|
120
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M394.75,-238C394.75,-240.21 369.82,-242 339.12,-242 308.43,-242 283.5,-240.21 283.5,-238 283.5,-238 283.5,-202 283.5,-202 283.5,-199.79 308.43,-198 339.12,-198 369.82,-198 394.75,-199.79 394.75,-202 394.75,-202 394.75,-238 394.75,-238"/>
|
|
121
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M394.75,-238C394.75,-235.79 369.82,-234 339.12,-234 308.43,-234 283.5,-235.79 283.5,-238"/>
|
|
122
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-222.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">cron/jobs.yml</text>
|
|
123
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-210.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">scheduled jobs + logs</text>
|
|
124
|
+
</g>
|
|
125
|
+
<!-- Root->crn -->
|
|
126
|
+
<g id="edge8" class="edge">
|
|
127
|
+
<title>Root->crn</title>
|
|
128
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M157.87,-333.65C182.71,-312.52 225.85,-277.56 266.62,-253 271.16,-250.27 275.96,-247.61 280.84,-245.06"/>
|
|
129
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="281.92,-247.26 287.06,-241.91 279.71,-242.89 281.92,-247.26"/>
|
|
130
|
+
</g>
|
|
131
|
+
<!-- agt -->
|
|
132
|
+
<g id="node10" class="node">
|
|
133
|
+
<title>agt</title>
|
|
134
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M382,-172C382,-174.21 362.78,-176 339.12,-176 315.47,-176 296.25,-174.21 296.25,-172 296.25,-172 296.25,-136 296.25,-136 296.25,-133.79 315.47,-132 339.12,-132 362.78,-132 382,-133.79 382,-136 382,-136 382,-172 382,-172"/>
|
|
135
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M382,-172C382,-169.79 362.78,-168 339.12,-168 315.47,-168 296.25,-169.79 296.25,-172"/>
|
|
136
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-156.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">agents.yml</text>
|
|
137
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-144.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">persona registry</text>
|
|
138
|
+
</g>
|
|
139
|
+
<!-- Root->agt -->
|
|
140
|
+
<g id="edge9" class="edge">
|
|
141
|
+
<title>Root->agt</title>
|
|
142
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M147.31,-333.57C166.9,-300.38 212.14,-230.02 266.62,-187 273.14,-181.85 280.59,-177.29 288.17,-173.32"/>
|
|
143
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="289.08,-175.61 294.26,-170.3 286.9,-171.22 289.08,-175.61"/>
|
|
144
|
+
</g>
|
|
145
|
+
<!-- swm -->
|
|
146
|
+
<g id="node11" class="node">
|
|
147
|
+
<title>swm</title>
|
|
148
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M394,-106C394,-108.21 369.4,-110 339.12,-110 308.85,-110 284.25,-108.21 284.25,-106 284.25,-106 284.25,-70 284.25,-70 284.25,-67.79 308.85,-66 339.12,-66 369.4,-66 394,-67.79 394,-70 394,-70 394,-106 394,-106"/>
|
|
149
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M394,-106C394,-103.79 369.4,-102 339.12,-102 308.85,-102 284.25,-103.79 284.25,-106"/>
|
|
150
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-90.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">swarm/<id>/bus.jsonl</text>
|
|
151
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-78.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">multi-agent chat</text>
|
|
152
|
+
</g>
|
|
153
|
+
<!-- Root->swm -->
|
|
154
|
+
<g id="edge10" class="edge">
|
|
155
|
+
<title>Root->swm</title>
|
|
156
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M142.76,-333.6C157.25,-290.89 198.54,-183.89 266.62,-121 269.75,-118.12 273.16,-115.45 276.76,-112.98"/>
|
|
157
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="277.85,-115.19 282.45,-109.38 275.23,-111.05 277.85,-115.19"/>
|
|
158
|
+
</g>
|
|
159
|
+
<!-- hist -->
|
|
160
|
+
<g id="node12" class="node">
|
|
161
|
+
<title>hist</title>
|
|
162
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M379.38,-40C379.38,-42.21 361.33,-44 339.12,-44 316.92,-44 298.88,-42.21 298.88,-40 298.88,-40 298.88,-4 298.88,-4 298.88,-1.79 316.92,0 339.12,0 361.33,0 379.38,-1.79 379.38,-4 379.38,-4 379.38,-40 379.38,-40"/>
|
|
163
|
+
<path fill="none" stroke="#334155" stroke-width="1.3" d="M379.38,-40C379.38,-37.79 361.33,-36 339.12,-36 316.92,-36 298.88,-37.79 298.88,-40"/>
|
|
164
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">~/.pwn_history</text>
|
|
165
|
+
<text xml:space="preserve" text-anchor="middle" x="339.12" y="-12.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">REPL history</text>
|
|
166
|
+
</g>
|
|
167
|
+
<!-- Root->hist -->
|
|
168
|
+
<g id="edge11" class="edge">
|
|
169
|
+
<title>Root->hist</title>
|
|
170
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M140.21,-333.41C150.26,-282.42 184.72,-138.6 266.62,-55 273.43,-48.05 281.98,-42.42 290.77,-37.9"/>
|
|
171
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="291.75,-40.15 297.02,-34.93 289.65,-35.72 291.75,-40.15"/>
|
|
172
|
+
</g>
|
|
173
|
+
</g>
|
|
174
|
+
</svg>
|