pwn 0.5.617 → 0.5.620
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/Gemfile +2 -2
- data/README.md +101 -83
- data/bin/pwn_gqrx_scanner +25 -5
- 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 +6 -2
- data/documentation/Drivers.md +43 -16
- data/documentation/Extrospection.md +73 -0
- data/documentation/FFI.md +14 -0
- data/documentation/Fuzzing.md +36 -0
- data/documentation/Hardware.md +40 -0
- data/documentation/Home.md +5 -4
- data/documentation/How-PWN-Works.md +7 -4
- data/documentation/Metasploit.md +34 -0
- data/documentation/Mistakes.md +96 -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 +40 -0
- data/documentation/Plugins.md +97 -47
- data/documentation/Reporting.md +25 -18
- data/documentation/SAST.md +39 -22
- data/documentation/SDR.md +58 -0
- data/documentation/Sessions.md +39 -0
- data/documentation/Skills-Memory-Learning.md +59 -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/diagrams/agent-tool-registry.svg +286 -0
- data/documentation/diagrams/aws-cloud-security.svg +166 -0
- data/documentation/diagrams/cron-scheduling.svg +148 -0
- data/documentation/diagrams/dot/agent-tool-registry.dot +2 -2
- data/documentation/diagrams/dot/extrospection-world-awareness.dot +9 -7
- data/documentation/diagrams/dot/hardware-hacking.dot +48 -0
- data/documentation/diagrams/dot/memory-skills-detailed.dot +12 -5
- data/documentation/diagrams/dot/mistakes-negative-feedback.dot +93 -0
- data/documentation/diagrams/dot/overall-pwn-architecture.dot +7 -5
- data/documentation/diagrams/dot/persistence-filesystem.dot +30 -0
- data/documentation/diagrams/dot/pwn-ai-feedback-learning-loop.dot +19 -7
- data/documentation/diagrams/dot/sdr-radio-flow.dot +13 -11
- data/documentation/diagrams/extrospection-world-awareness.svg +203 -0
- data/documentation/diagrams/hardware-hacking.svg +163 -0
- data/documentation/diagrams/memory-skills-detailed.svg +146 -97
- data/documentation/diagrams/mistakes-negative-feedback.svg +266 -0
- data/documentation/diagrams/overall-pwn-architecture.svg +184 -173
- data/documentation/diagrams/persistence-filesystem.svg +189 -0
- data/documentation/diagrams/pwn-ai-feedback-learning-loop.svg +217 -149
- data/documentation/diagrams/sdr-radio-flow.svg +166 -0
- data/documentation/diagrams/swarm-multi-agent.svg +225 -0
- 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 +72 -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/lib/pwn/ai/agent/extrospection.rb +65 -6
- data/lib/pwn/ai/agent/learning.rb +67 -7
- data/lib/pwn/ai/agent/loop.rb +72 -6
- data/lib/pwn/ai/agent/mistakes.rb +369 -0
- data/lib/pwn/ai/agent/prompt_builder.rb +10 -1
- data/lib/pwn/ai/agent/tools/extrospection.rb +2 -2
- data/lib/pwn/ai/agent/tools/mistakes.rb +132 -0
- data/lib/pwn/ai/agent.rb +1 -0
- data/lib/pwn/plugins/jira_data_center.rb +2 -2
- data/lib/pwn/sdr/decoder/adsb.rb +101 -0
- data/lib/pwn/sdr/decoder/apt.rb +75 -0
- data/lib/pwn/sdr/decoder/bluetooth.rb +78 -0
- data/lib/pwn/sdr/decoder/dect.rb +84 -0
- data/lib/pwn/sdr/decoder/gps.rb +83 -0
- data/lib/pwn/sdr/decoder/gsm.rb +50 -29
- data/lib/pwn/sdr/decoder/iridium.rb +81 -0
- data/lib/pwn/sdr/decoder/lora.rb +87 -0
- data/lib/pwn/sdr/decoder/lte.rb +88 -0
- data/lib/pwn/sdr/decoder/morse.rb +64 -0
- data/lib/pwn/sdr/decoder/p25.rb +71 -0
- data/lib/pwn/sdr/decoder/pager.rb +77 -0
- data/lib/pwn/sdr/decoder/pocsag.rb +26 -11
- data/lib/pwn/sdr/decoder/rfid.rb +88 -0
- data/lib/pwn/sdr/decoder/rtl433.rb +95 -0
- data/lib/pwn/sdr/decoder/rtty.rb +66 -0
- data/lib/pwn/sdr/decoder/wifi.rb +98 -0
- data/lib/pwn/sdr/decoder/zigbee.rb +96 -0
- data/lib/pwn/sdr/decoder.rb +67 -7
- data/lib/pwn/sdr/frequency_allocation.rb +82 -41
- data/lib/pwn/sdr/gqrx.rb +186 -95
- data/lib/pwn/version.rb +1 -1
- data/spec/lib/pwn/ai/agent/mistakes_spec.rb +36 -0
- data/spec/lib/pwn/ai/agent/tools/mistakes_spec.rb +12 -0
- data/spec/lib/pwn/sdr/decoder/adsb_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/apt_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/bluetooth_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/dect_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/gps_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/iridium_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/lora_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/lte_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/morse_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/p25_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/pager_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/rfid_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/rtl433_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/rtty_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/wifi_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder/zigbee_spec.rb +15 -0
- data/third_party/pwn_rdoc.jsonl +114 -8
- metadata +81 -5
|
@@ -0,0 +1,286 @@
|
|
|
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_Agent_Tool_Registry Pages: 1 -->
|
|
7
|
+
<svg width="652pt" height="805pt"
|
|
8
|
+
viewBox="0.00 0.00 652.00 805.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 762.2)">
|
|
10
|
+
<title>PWN_Agent_Tool_Registry</title>
|
|
11
|
+
<polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-762.2 608.45,-762.2 608.45,43.2 -43.2,43.2"/>
|
|
12
|
+
<text xml:space="preserve" text-anchor="start" x="10.38" y="-697" font-family="sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">PWN::AI::Agent::Registry — Toolsets exposed to the LLM</text>
|
|
13
|
+
<text xml:space="preserve" text-anchor="start" x="155.5" y="-685.55" font-family="sans-Serif" font-size="11.00" fill="#94a3b8">10 toolsets · 52 callable tools · lib/pwn/ai/agent/tools/*</text>
|
|
14
|
+
<g id="clust1" class="cluster">
|
|
15
|
+
<title>cluster_ts</title>
|
|
16
|
+
<path fill="#022c22" stroke="#047857" stroke-width="2" d="M201.25,-14C201.25,-14 267.75,-14 267.75,-14 273.75,-14 279.75,-20 279.75,-26 279.75,-26 279.75,-634 279.75,-634 279.75,-640 273.75,-646 267.75,-646 267.75,-646 201.25,-646 201.25,-646 195.25,-646 189.25,-640 189.25,-634 189.25,-634 189.25,-26 189.25,-26 189.25,-20 195.25,-14 201.25,-14"/>
|
|
17
|
+
<text xml:space="preserve" text-anchor="middle" x="234.5" y="-623" font-family="sans-Serif" font-size="20.00" fill="#a7f3d0">Toolsets</text>
|
|
18
|
+
</g>
|
|
19
|
+
<g id="clust2" class="cluster">
|
|
20
|
+
<title>cluster_tools</title>
|
|
21
|
+
<path fill="#422006" stroke="#a16207" stroke-width="2" d="M376.75,-8C376.75,-8 553.25,-8 553.25,-8 559.25,-8 565.25,-14 565.25,-20 565.25,-20 565.25,-660 565.25,-660 565.25,-666 559.25,-672 553.25,-672 553.25,-672 376.75,-672 376.75,-672 370.75,-672 364.75,-666 364.75,-660 364.75,-660 364.75,-20 364.75,-20 364.75,-14 370.75,-8 376.75,-8"/>
|
|
22
|
+
<text xml:space="preserve" text-anchor="middle" x="465" y="-649" font-family="sans-Serif" font-size="20.00" fill="#fde68a">Tools  (LLM-callable)</text>
|
|
23
|
+
</g>
|
|
24
|
+
<!-- Registry -->
|
|
25
|
+
<g id="node1" class="node">
|
|
26
|
+
<title>Registry</title>
|
|
27
|
+
<path fill="#c4b5fd" stroke="#334155" stroke-width="2" d="M84.25,-339.38C84.25,-339.38 12,-339.38 12,-339.38 6,-339.38 0,-333.38 0,-327.38 0,-327.38 0,-300.62 0,-300.62 0,-294.62 6,-288.62 12,-288.62 12,-288.62 84.25,-288.62 84.25,-288.62 90.25,-288.62 96.25,-294.62 96.25,-300.62 96.25,-300.62 96.25,-327.38 96.25,-327.38 96.25,-333.38 90.25,-339.38 84.25,-339.38"/>
|
|
28
|
+
<text xml:space="preserve" text-anchor="middle" x="48.12" y="-323.98" font-family="sans-Serif" font-size="12.00" fill="#0f172a">Registry</text>
|
|
29
|
+
<text xml:space="preserve" text-anchor="middle" x="48.12" y="-309.73" font-family="sans-Serif" font-size="12.00" fill="#0f172a">JSON-Schema</text>
|
|
30
|
+
<text xml:space="preserve" text-anchor="middle" x="48.12" y="-295.48" font-family="sans-Serif" font-size="12.00" fill="#0f172a">function defs</text>
|
|
31
|
+
</g>
|
|
32
|
+
<!-- terminal -->
|
|
33
|
+
<g id="node2" class="node">
|
|
34
|
+
<title>terminal</title>
|
|
35
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M249.5,-58C249.5,-58 219.5,-58 219.5,-58 213.5,-58 207.5,-52 207.5,-46 207.5,-46 207.5,-34 207.5,-34 207.5,-28 213.5,-22 219.5,-22 219.5,-22 249.5,-22 249.5,-22 255.5,-22 261.5,-28 261.5,-34 261.5,-34 261.5,-46 261.5,-46 261.5,-52 255.5,-58 249.5,-58"/>
|
|
36
|
+
<text xml:space="preserve" text-anchor="middle" x="234.5" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">terminal</text>
|
|
37
|
+
</g>
|
|
38
|
+
<!-- Registry->terminal -->
|
|
39
|
+
<g id="edge1" class="edge">
|
|
40
|
+
<title>Registry->terminal</title>
|
|
41
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M59.65,-287.85C79.6,-240.57 126.6,-139.42 189.25,-71 192.58,-67.37 196.4,-63.92 200.38,-60.73"/>
|
|
42
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="201.71,-62.8 205.83,-56.63 198.76,-58.88 201.71,-62.8"/>
|
|
43
|
+
</g>
|
|
44
|
+
<!-- pwn -->
|
|
45
|
+
<g id="node3" class="node">
|
|
46
|
+
<title>pwn</title>
|
|
47
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M249.5,-119C249.5,-119 219.5,-119 219.5,-119 213.5,-119 207.5,-113 207.5,-107 207.5,-107 207.5,-95 207.5,-95 207.5,-89 213.5,-83 219.5,-83 219.5,-83 249.5,-83 249.5,-83 255.5,-83 261.5,-89 261.5,-95 261.5,-95 261.5,-107 261.5,-107 261.5,-113 255.5,-119 249.5,-119"/>
|
|
48
|
+
<text xml:space="preserve" text-anchor="middle" x="234.5" y="-97.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn</text>
|
|
49
|
+
</g>
|
|
50
|
+
<!-- Registry->pwn -->
|
|
51
|
+
<g id="edge2" class="edge">
|
|
52
|
+
<title>Registry->pwn</title>
|
|
53
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M65.53,-287.9C89.7,-250.65 137.65,-181.32 189.25,-132 192.72,-128.68 196.58,-125.44 200.53,-122.4"/>
|
|
54
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="201.7,-124.58 205.87,-118.45 198.78,-120.64 201.7,-124.58"/>
|
|
55
|
+
</g>
|
|
56
|
+
<!-- memory -->
|
|
57
|
+
<g id="node4" class="node">
|
|
58
|
+
<title>memory</title>
|
|
59
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M249.5,-180C249.5,-180 219.5,-180 219.5,-180 213.5,-180 207.5,-174 207.5,-168 207.5,-168 207.5,-156 207.5,-156 207.5,-150 213.5,-144 219.5,-144 219.5,-144 249.5,-144 249.5,-144 255.5,-144 261.5,-150 261.5,-156 261.5,-156 261.5,-168 261.5,-168 261.5,-174 255.5,-180 249.5,-180"/>
|
|
60
|
+
<text xml:space="preserve" text-anchor="middle" x="234.5" y="-158.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">memory</text>
|
|
61
|
+
</g>
|
|
62
|
+
<!-- Registry->memory -->
|
|
63
|
+
<g id="edge3" class="edge">
|
|
64
|
+
<title>Registry->memory</title>
|
|
65
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M77.66,-287.86C105.48,-262.74 149.31,-224.11 189.25,-193 192.68,-190.33 196.31,-187.61 199.97,-184.95"/>
|
|
66
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="201.36,-186.97 205.62,-180.9 198.51,-182.99 201.36,-186.97"/>
|
|
67
|
+
</g>
|
|
68
|
+
<!-- skills -->
|
|
69
|
+
<g id="node5" class="node">
|
|
70
|
+
<title>skills</title>
|
|
71
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M249.5,-241C249.5,-241 219.5,-241 219.5,-241 213.5,-241 207.5,-235 207.5,-229 207.5,-229 207.5,-217 207.5,-217 207.5,-211 213.5,-205 219.5,-205 219.5,-205 249.5,-205 249.5,-205 255.5,-205 261.5,-211 261.5,-217 261.5,-217 261.5,-229 261.5,-229 261.5,-235 255.5,-241 249.5,-241"/>
|
|
72
|
+
<text xml:space="preserve" text-anchor="middle" x="234.5" y="-219.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">skills</text>
|
|
73
|
+
</g>
|
|
74
|
+
<!-- Registry->skills -->
|
|
75
|
+
<g id="edge4" class="edge">
|
|
76
|
+
<title>Registry->skills</title>
|
|
77
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M97.09,-290.33C129.08,-274.54 170.38,-254.16 199.11,-239.97"/>
|
|
78
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="200.18,-242.18 205.38,-236.88 198.01,-237.78 200.18,-242.18"/>
|
|
79
|
+
</g>
|
|
80
|
+
<!-- sessions -->
|
|
81
|
+
<g id="node6" class="node">
|
|
82
|
+
<title>sessions</title>
|
|
83
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M250,-302C250,-302 219,-302 219,-302 213,-302 207,-296 207,-290 207,-290 207,-278 207,-278 207,-272 213,-266 219,-266 219,-266 250,-266 250,-266 256,-266 262,-272 262,-278 262,-278 262,-290 262,-290 262,-296 256,-302 250,-302"/>
|
|
84
|
+
<text xml:space="preserve" text-anchor="middle" x="234.5" y="-280.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">sessions</text>
|
|
85
|
+
</g>
|
|
86
|
+
<!-- Registry->sessions -->
|
|
87
|
+
<g id="edge5" class="edge">
|
|
88
|
+
<title>Registry->sessions</title>
|
|
89
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M97.09,-306.2C128.71,-301.05 169.42,-294.43 198.11,-289.76"/>
|
|
90
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="198.45,-292.19 204.96,-288.64 197.66,-287.35 198.45,-292.19"/>
|
|
91
|
+
</g>
|
|
92
|
+
<!-- learning -->
|
|
93
|
+
<g id="node7" class="node">
|
|
94
|
+
<title>learning</title>
|
|
95
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M249.5,-363C249.5,-363 219.5,-363 219.5,-363 213.5,-363 207.5,-357 207.5,-351 207.5,-351 207.5,-339 207.5,-339 207.5,-333 213.5,-327 219.5,-327 219.5,-327 249.5,-327 249.5,-327 255.5,-327 261.5,-333 261.5,-339 261.5,-339 261.5,-351 261.5,-351 261.5,-357 255.5,-363 249.5,-363"/>
|
|
96
|
+
<text xml:space="preserve" text-anchor="middle" x="234.5" y="-341.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">learning</text>
|
|
97
|
+
</g>
|
|
98
|
+
<!-- Registry->learning -->
|
|
99
|
+
<g id="edge6" class="edge">
|
|
100
|
+
<title>Registry->learning</title>
|
|
101
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M97.09,-322.06C128.8,-327.4 169.67,-334.27 198.37,-339.09"/>
|
|
102
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="197.92,-341.5 205.23,-340.25 198.73,-336.67 197.92,-341.5"/>
|
|
103
|
+
</g>
|
|
104
|
+
<!-- metrics -->
|
|
105
|
+
<g id="node8" class="node">
|
|
106
|
+
<title>metrics</title>
|
|
107
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M249.5,-424C249.5,-424 219.5,-424 219.5,-424 213.5,-424 207.5,-418 207.5,-412 207.5,-412 207.5,-400 207.5,-400 207.5,-394 213.5,-388 219.5,-388 219.5,-388 249.5,-388 249.5,-388 255.5,-388 261.5,-394 261.5,-400 261.5,-400 261.5,-412 261.5,-412 261.5,-418 255.5,-424 249.5,-424"/>
|
|
108
|
+
<text xml:space="preserve" text-anchor="middle" x="234.5" y="-402.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">metrics</text>
|
|
109
|
+
</g>
|
|
110
|
+
<!-- Registry->metrics -->
|
|
111
|
+
<g id="edge7" class="edge">
|
|
112
|
+
<title>Registry->metrics</title>
|
|
113
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M97.09,-337.93C129.21,-353.96 170.73,-374.68 199.48,-389.03"/>
|
|
114
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="198.02,-391.03 205.38,-391.97 200.21,-386.65 198.02,-391.03"/>
|
|
115
|
+
</g>
|
|
116
|
+
<!-- extro -->
|
|
117
|
+
<g id="node9" class="node">
|
|
118
|
+
<title>extro</title>
|
|
119
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M259.75,-485C259.75,-485 209.25,-485 209.25,-485 203.25,-485 197.25,-479 197.25,-473 197.25,-473 197.25,-461 197.25,-461 197.25,-455 203.25,-449 209.25,-449 209.25,-449 259.75,-449 259.75,-449 265.75,-449 271.75,-455 271.75,-461 271.75,-461 271.75,-473 271.75,-473 271.75,-479 265.75,-485 259.75,-485"/>
|
|
120
|
+
<text xml:space="preserve" text-anchor="middle" x="234.5" y="-463.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">extrospection</text>
|
|
121
|
+
</g>
|
|
122
|
+
<!-- Registry->extro -->
|
|
123
|
+
<g id="edge8" class="edge">
|
|
124
|
+
<title>Registry->extro</title>
|
|
125
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M76.96,-340.28C104.62,-365.95 148.66,-405.62 189.25,-437 192.06,-439.17 195.02,-441.36 198.01,-443.52"/>
|
|
126
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="196.54,-445.48 203.68,-447.51 199.37,-441.48 196.54,-445.48"/>
|
|
127
|
+
</g>
|
|
128
|
+
<!-- cron -->
|
|
129
|
+
<g id="node10" class="node">
|
|
130
|
+
<title>cron</title>
|
|
131
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M249.5,-546C249.5,-546 219.5,-546 219.5,-546 213.5,-546 207.5,-540 207.5,-534 207.5,-534 207.5,-522 207.5,-522 207.5,-516 213.5,-510 219.5,-510 219.5,-510 249.5,-510 249.5,-510 255.5,-510 261.5,-516 261.5,-522 261.5,-522 261.5,-534 261.5,-534 261.5,-540 255.5,-546 249.5,-546"/>
|
|
132
|
+
<text xml:space="preserve" text-anchor="middle" x="234.5" y="-524.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">cron</text>
|
|
133
|
+
</g>
|
|
134
|
+
<!-- Registry->cron -->
|
|
135
|
+
<g id="edge9" class="edge">
|
|
136
|
+
<title>Registry->cron</title>
|
|
137
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M65.16,-340.2C89.07,-377.93 136.9,-448.46 189.25,-498 192.62,-501.19 196.36,-504.28 200.2,-507.18"/>
|
|
138
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="198.7,-509.12 205.81,-511.22 201.56,-505.14 198.7,-509.12"/>
|
|
139
|
+
</g>
|
|
140
|
+
<!-- swarm -->
|
|
141
|
+
<g id="node11" class="node">
|
|
142
|
+
<title>swarm</title>
|
|
143
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M249.5,-607C249.5,-607 219.5,-607 219.5,-607 213.5,-607 207.5,-601 207.5,-595 207.5,-595 207.5,-583 207.5,-583 207.5,-577 213.5,-571 219.5,-571 219.5,-571 249.5,-571 249.5,-571 255.5,-571 261.5,-577 261.5,-583 261.5,-583 261.5,-595 261.5,-595 261.5,-601 255.5,-607 249.5,-607"/>
|
|
144
|
+
<text xml:space="preserve" text-anchor="middle" x="234.5" y="-585.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">swarm</text>
|
|
145
|
+
</g>
|
|
146
|
+
<!-- Registry->swarm -->
|
|
147
|
+
<g id="edge10" class="edge">
|
|
148
|
+
<title>Registry->swarm</title>
|
|
149
|
+
<path fill="none" stroke="#94a3b8" stroke-width="1.1" d="M59.34,-340.09C78.95,-387.76 125.64,-490.35 189.25,-559 192.56,-562.58 196.38,-565.95 200.35,-569.05"/>
|
|
150
|
+
<polygon fill="#94a3b8" stroke="#94a3b8" stroke-width="1.1" points="198.69,-570.87 205.79,-573.02 201.58,-566.91 198.69,-570.87"/>
|
|
151
|
+
</g>
|
|
152
|
+
<!-- t_shell -->
|
|
153
|
+
<g id="node12" class="node">
|
|
154
|
+
<title>t_shell</title>
|
|
155
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M479.5,-52C479.5,-52 449.5,-52 449.5,-52 443.5,-52 437.5,-46 437.5,-40 437.5,-40 437.5,-28 437.5,-28 437.5,-22 443.5,-16 449.5,-16 449.5,-16 479.5,-16 479.5,-16 485.5,-16 491.5,-22 491.5,-28 491.5,-28 491.5,-40 491.5,-40 491.5,-46 485.5,-52 479.5,-52"/>
|
|
156
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-30.7" font-family="sans-Serif" font-size="9.00" fill="#0f172a">shell</text>
|
|
157
|
+
</g>
|
|
158
|
+
<!-- terminal->t_shell -->
|
|
159
|
+
<g id="edge11" class="edge">
|
|
160
|
+
<title>terminal->t_shell</title>
|
|
161
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.1" d="M262.1,-39.3C303.37,-38.21 382.84,-36.12 428.65,-34.92"/>
|
|
162
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.1" points="428.47,-37.37 435.4,-34.74 428.34,-32.47 428.47,-37.37"/>
|
|
163
|
+
</g>
|
|
164
|
+
<!-- t_eval -->
|
|
165
|
+
<g id="node13" class="node">
|
|
166
|
+
<title>t_eval</title>
|
|
167
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M480.38,-113C480.38,-113 448.62,-113 448.62,-113 442.62,-113 436.62,-107 436.62,-101 436.62,-101 436.62,-89 436.62,-89 436.62,-83 442.62,-77 448.62,-77 448.62,-77 480.38,-77 480.38,-77 486.38,-77 492.38,-83 492.38,-89 492.38,-89 492.38,-101 492.38,-101 492.38,-107 486.38,-113 480.38,-113"/>
|
|
168
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-91.7" font-family="sans-Serif" font-size="9.00" fill="#0f172a">pwn_eval</text>
|
|
169
|
+
</g>
|
|
170
|
+
<!-- pwn->t_eval -->
|
|
171
|
+
<g id="edge12" class="edge">
|
|
172
|
+
<title>pwn->t_eval</title>
|
|
173
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.1" d="M262.1,-100.3C303.04,-99.22 381.57,-97.16 427.54,-95.95"/>
|
|
174
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.1" points="427.41,-98.4 434.34,-95.77 427.28,-93.5 427.41,-98.4"/>
|
|
175
|
+
</g>
|
|
176
|
+
<!-- t_mem -->
|
|
177
|
+
<g id="node14" class="node">
|
|
178
|
+
<title>t_mem</title>
|
|
179
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M500.62,-174C500.62,-174 428.38,-174 428.38,-174 422.38,-174 416.38,-168 416.38,-162 416.38,-162 416.38,-150 416.38,-150 416.38,-144 422.38,-138 428.38,-138 428.38,-138 500.62,-138 500.62,-138 506.62,-138 512.62,-144 512.62,-150 512.62,-150 512.62,-162 512.62,-162 512.62,-168 506.62,-174 500.62,-174"/>
|
|
180
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-157.95" font-family="sans-Serif" font-size="9.00" fill="#0f172a">memory_remember</text>
|
|
181
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-147.45" font-family="sans-Serif" font-size="9.00" fill="#0f172a">recall · forget · clear</text>
|
|
182
|
+
</g>
|
|
183
|
+
<!-- memory->t_mem -->
|
|
184
|
+
<g id="edge13" class="edge">
|
|
185
|
+
<title>memory->t_mem</title>
|
|
186
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.1" d="M262.1,-161.3C297.6,-160.37 361.35,-158.69 407.64,-157.47"/>
|
|
187
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.1" points="407.47,-159.93 414.41,-157.29 407.34,-155.03 407.47,-159.93"/>
|
|
188
|
+
</g>
|
|
189
|
+
<!-- t_skill -->
|
|
190
|
+
<g id="node15" class="node">
|
|
191
|
+
<title>t_skill</title>
|
|
192
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M522.75,-235C522.75,-235 406.25,-235 406.25,-235 400.25,-235 394.25,-229 394.25,-223 394.25,-223 394.25,-211 394.25,-211 394.25,-205 400.25,-199 406.25,-199 406.25,-199 522.75,-199 522.75,-199 528.75,-199 534.75,-205 534.75,-211 534.75,-211 534.75,-223 534.75,-223 534.75,-229 528.75,-235 522.75,-235"/>
|
|
193
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-218.95" font-family="sans-Serif" font-size="9.00" fill="#0f172a">skill_list · view</text>
|
|
194
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-208.45" font-family="sans-Serif" font-size="9.00" fill="#0f172a">create · add_reference · delete</text>
|
|
195
|
+
</g>
|
|
196
|
+
<!-- skills->t_skill -->
|
|
197
|
+
<g id="edge14" class="edge">
|
|
198
|
+
<title>skills->t_skill</title>
|
|
199
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.1" d="M262.1,-222.3C292.17,-221.51 342.5,-220.18 385.32,-219.06"/>
|
|
200
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.1" points="385.18,-221.51 392.12,-218.88 385.05,-216.61 385.18,-221.51"/>
|
|
201
|
+
</g>
|
|
202
|
+
<!-- t_sess -->
|
|
203
|
+
<g id="node16" class="node">
|
|
204
|
+
<title>t_sess</title>
|
|
205
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M503.62,-296C503.62,-296 425.38,-296 425.38,-296 419.38,-296 413.38,-290 413.38,-284 413.38,-284 413.38,-272 413.38,-272 413.38,-266 419.38,-260 425.38,-260 425.38,-260 503.62,-260 503.62,-260 509.62,-260 515.62,-266 515.62,-272 515.62,-272 515.62,-284 515.62,-284 515.62,-290 509.62,-296 503.62,-296"/>
|
|
206
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-279.95" font-family="sans-Serif" font-size="9.00" fill="#0f172a">sessions_list · view</text>
|
|
207
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-269.45" font-family="sans-Serif" font-size="9.00" fill="#0f172a">current · delete · stats</text>
|
|
208
|
+
</g>
|
|
209
|
+
<!-- sessions->t_sess -->
|
|
210
|
+
<g id="edge15" class="edge">
|
|
211
|
+
<title>sessions->t_sess</title>
|
|
212
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.1" d="M262.55,-283.29C297.24,-282.38 358.36,-280.77 404.12,-279.56"/>
|
|
213
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.1" points="404.16,-282.01 411.1,-279.38 404.03,-277.11 404.16,-282.01"/>
|
|
214
|
+
</g>
|
|
215
|
+
<!-- t_learn -->
|
|
216
|
+
<g id="node17" class="node">
|
|
217
|
+
<title>t_learn</title>
|
|
218
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M520.88,-381.25C520.88,-381.25 408.12,-381.25 408.12,-381.25 402.12,-381.25 396.12,-375.25 396.12,-369.25 396.12,-369.25 396.12,-332.75 396.12,-332.75 396.12,-326.75 402.12,-320.75 408.12,-320.75 408.12,-320.75 520.88,-320.75 520.88,-320.75 526.88,-320.75 532.88,-326.75 532.88,-332.75 532.88,-332.75 532.88,-369.25 532.88,-369.25 532.88,-375.25 526.88,-381.25 520.88,-381.25"/>
|
|
219
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-368.7" font-family="sans-Serif" font-size="9.00" fill="#0f172a">learning_note_outcome</text>
|
|
220
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-358.2" font-family="sans-Serif" font-size="9.00" fill="#0f172a">reflect · distill_skill</text>
|
|
221
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-347.7" font-family="sans-Serif" font-size="9.00" fill="#0f172a">consolidate · outcomes · reset</text>
|
|
222
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-337.2" font-family="sans-Serif" font-size="9.00" fill="#0f172a">mistakes_list · record</text>
|
|
223
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-326.7" font-family="sans-Serif" font-size="9.00" fill="#0f172a">mistakes_resolve · reset</text>
|
|
224
|
+
</g>
|
|
225
|
+
<!-- learning->t_learn -->
|
|
226
|
+
<g id="edge16" class="edge">
|
|
227
|
+
<title>learning->t_learn</title>
|
|
228
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.1" d="M262.1,-345.7C292.61,-346.5 343.98,-347.85 387.2,-348.99"/>
|
|
229
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.1" points="387,-351.44 394.06,-349.17 387.13,-346.54 387,-351.44"/>
|
|
230
|
+
</g>
|
|
231
|
+
<!-- t_metric -->
|
|
232
|
+
<g id="node18" class="node">
|
|
233
|
+
<title>t_metric</title>
|
|
234
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M496.5,-442C496.5,-442 432.5,-442 432.5,-442 426.5,-442 420.5,-436 420.5,-430 420.5,-430 420.5,-418 420.5,-418 420.5,-412 426.5,-406 432.5,-406 432.5,-406 496.5,-406 496.5,-406 502.5,-406 508.5,-412 508.5,-418 508.5,-418 508.5,-430 508.5,-430 508.5,-436 502.5,-442 496.5,-442"/>
|
|
235
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-425.95" font-family="sans-Serif" font-size="9.00" fill="#0f172a">metrics_summary</text>
|
|
236
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-415.45" font-family="sans-Serif" font-size="9.00" fill="#0f172a">metrics_reset</text>
|
|
237
|
+
</g>
|
|
238
|
+
<!-- metrics->t_metric -->
|
|
239
|
+
<g id="edge17" class="edge">
|
|
240
|
+
<title>metrics->t_metric</title>
|
|
241
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.1" d="M262.1,-408.1C298.59,-410.98 364.95,-416.22 411.49,-419.89"/>
|
|
242
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.1" points="411.11,-422.32 418.28,-420.43 411.5,-417.44 411.11,-422.32"/>
|
|
243
|
+
</g>
|
|
244
|
+
<!-- t_extro -->
|
|
245
|
+
<g id="node19" class="node">
|
|
246
|
+
<title>t_extro</title>
|
|
247
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M513,-506.75C513,-506.75 416,-506.75 416,-506.75 410,-506.75 404,-500.75 404,-494.75 404,-494.75 404,-479.25 404,-479.25 404,-473.25 410,-467.25 416,-467.25 416,-467.25 513,-467.25 513,-467.25 519,-467.25 525,-473.25 525,-479.25 525,-479.25 525,-494.75 525,-494.75 525,-500.75 519,-506.75 513,-506.75"/>
|
|
248
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-494.2" font-family="sans-Serif" font-size="9.00" fill="#0f172a">extro_snapshot · drift</text>
|
|
249
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-483.7" font-family="sans-Serif" font-size="9.00" fill="#0f172a">observe · intel · correlate</text>
|
|
250
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-473.2" font-family="sans-Serif" font-size="9.00" fill="#0f172a">observations · stats · reset</text>
|
|
251
|
+
</g>
|
|
252
|
+
<!-- extro->t_extro -->
|
|
253
|
+
<g id="edge18" class="edge">
|
|
254
|
+
<title>extro->t_extro</title>
|
|
255
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.1" d="M272.39,-470.24C305.45,-473.14 354.8,-477.47 395.08,-481"/>
|
|
256
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.1" points="394.68,-483.42 401.86,-481.59 395.11,-478.54 394.68,-483.42"/>
|
|
257
|
+
</g>
|
|
258
|
+
<!-- t_cron -->
|
|
259
|
+
<g id="node20" class="node">
|
|
260
|
+
<title>t_cron</title>
|
|
261
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M511.88,-568C511.88,-568 417.12,-568 417.12,-568 411.12,-568 405.12,-562 405.12,-556 405.12,-556 405.12,-544 405.12,-544 405.12,-538 411.12,-532 417.12,-532 417.12,-532 511.88,-532 511.88,-532 517.88,-532 523.88,-538 523.88,-544 523.88,-544 523.88,-556 523.88,-556 523.88,-562 517.88,-568 511.88,-568"/>
|
|
262
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-551.95" font-family="sans-Serif" font-size="9.00" fill="#0f172a">cron_list · create · run</text>
|
|
263
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-541.45" font-family="sans-Serif" font-size="9.00" fill="#0f172a">enable · disable · remove</text>
|
|
264
|
+
</g>
|
|
265
|
+
<!-- cron->t_cron -->
|
|
266
|
+
<g id="edge19" class="edge">
|
|
267
|
+
<title>cron->t_cron</title>
|
|
268
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.1" d="M262.1,-530.57C294.77,-533.72 351.36,-539.18 396.25,-543.51"/>
|
|
269
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.1" points="395.91,-545.94 403.12,-544.17 396.39,-541.06 395.91,-545.94"/>
|
|
270
|
+
</g>
|
|
271
|
+
<!-- t_swarm -->
|
|
272
|
+
<g id="node21" class="node">
|
|
273
|
+
<title>t_swarm</title>
|
|
274
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M509.25,-632.75C509.25,-632.75 419.75,-632.75 419.75,-632.75 413.75,-632.75 407.75,-626.75 407.75,-620.75 407.75,-620.75 407.75,-605.25 407.75,-605.25 407.75,-599.25 413.75,-593.25 419.75,-593.25 419.75,-593.25 509.25,-593.25 509.25,-593.25 515.25,-593.25 521.25,-599.25 521.25,-605.25 521.25,-605.25 521.25,-620.75 521.25,-620.75 521.25,-626.75 515.25,-632.75 509.25,-632.75"/>
|
|
275
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-620.2" font-family="sans-Serif" font-size="9.00" fill="#0f172a">agent_list · spawn · ask</text>
|
|
276
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-609.7" font-family="sans-Serif" font-size="9.00" fill="#0f172a">debate · broadcast</text>
|
|
277
|
+
<text xml:space="preserve" text-anchor="middle" x="464.5" y="-599.2" font-family="sans-Serif" font-size="9.00" fill="#0f172a">swarm_bus · swarm_list</text>
|
|
278
|
+
</g>
|
|
279
|
+
<!-- swarm->t_swarm -->
|
|
280
|
+
<g id="edge20" class="edge">
|
|
281
|
+
<title>swarm->t_swarm</title>
|
|
282
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.1" d="M262.1,-591.8C295.43,-595.31 353.66,-601.44 398.97,-606.21"/>
|
|
283
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.1" points="398.68,-608.64 405.9,-606.94 399.19,-603.77 398.68,-608.64"/>
|
|
284
|
+
</g>
|
|
285
|
+
</g>
|
|
286
|
+
</svg>
|
|
@@ -0,0 +1,166 @@
|
|
|
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_AWS Pages: 1 -->
|
|
7
|
+
<svg width="1064pt" height="354pt"
|
|
8
|
+
viewBox="0.00 0.00 1064.00 354.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 311.2)">
|
|
10
|
+
<title>PWN_AWS</title>
|
|
11
|
+
<polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-311.2 1021.2,-311.2 1021.2,43.2 -43.2,43.2"/>
|
|
12
|
+
<text xml:space="preserve" text-anchor="start" x="246.38" y="-246" font-family="sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">PWN::AWS — Cloud Security (90 service wrappers)</text>
|
|
13
|
+
<text xml:space="preserve" text-anchor="start" x="379.12" y="-234.55" font-family="sans-Serif" font-size="11.00" fill="#94a3b8">enumerate → misconfig → escalate → persist</text>
|
|
14
|
+
<g id="clust1" class="cluster">
|
|
15
|
+
<title>cluster_enum</title>
|
|
16
|
+
<path fill="#022c22" stroke="#047857" d="M185.5,-8C185.5,-8 309,-8 309,-8 315,-8 321,-14 321,-20 321,-20 321,-209 321,-209 321,-215 315,-221 309,-221 309,-221 185.5,-221 185.5,-221 179.5,-221 173.5,-215 173.5,-209 173.5,-209 173.5,-20 173.5,-20 173.5,-14 179.5,-8 185.5,-8"/>
|
|
17
|
+
<text xml:space="preserve" text-anchor="middle" x="247.25" y="-198" font-family="sans-Serif" font-size="20.00" fill="#a7f3d0">Enumerate</text>
|
|
18
|
+
</g>
|
|
19
|
+
<g id="clust2" class="cluster">
|
|
20
|
+
<title>cluster_mis</title>
|
|
21
|
+
<path fill="#422006" stroke="#a16207" d="M403,-8C403,-8 501.75,-8 501.75,-8 507.75,-8 513.75,-14 513.75,-20 513.75,-20 513.75,-209 513.75,-209 513.75,-215 507.75,-221 501.75,-221 501.75,-221 403,-221 403,-221 397,-221 391,-215 391,-209 391,-209 391,-20 391,-20 391,-14 397,-8 403,-8"/>
|
|
22
|
+
<text xml:space="preserve" text-anchor="middle" x="452.38" y="-198" font-family="sans-Serif" font-size="20.00" fill="#fde68a">Misconfig</text>
|
|
23
|
+
</g>
|
|
24
|
+
<g id="clust3" class="cluster">
|
|
25
|
+
<title>cluster_esc</title>
|
|
26
|
+
<path fill="#450a0a" stroke="#b91c1c" d="M595.75,-73C595.75,-73 740.75,-73 740.75,-73 746.75,-73 752.75,-79 752.75,-85 752.75,-85 752.75,-209 752.75,-209 752.75,-215 746.75,-221 740.75,-221 740.75,-221 595.75,-221 595.75,-221 589.75,-221 583.75,-215 583.75,-209 583.75,-209 583.75,-85 583.75,-85 583.75,-79 589.75,-73 595.75,-73"/>
|
|
27
|
+
<text xml:space="preserve" text-anchor="middle" x="668.25" y="-198" font-family="sans-Serif" font-size="20.00" fill="#fecaca">Escalate / Persist</text>
|
|
28
|
+
</g>
|
|
29
|
+
<!-- Creds -->
|
|
30
|
+
<g id="node1" class="node">
|
|
31
|
+
<title>Creds</title>
|
|
32
|
+
<path fill="#7dd3fc" stroke="#334155" stroke-width="1.3" d="M83.5,-117C83.5,-117 12,-117 12,-117 6,-117 0,-111 0,-105 0,-105 0,-93 0,-93 0,-87 6,-81 12,-81 12,-81 83.5,-81 83.5,-81 89.5,-81 95.5,-87 95.5,-93 95.5,-93 95.5,-105 95.5,-105 95.5,-111 89.5,-117 83.5,-117"/>
|
|
33
|
+
<text xml:space="preserve" text-anchor="middle" x="47.75" y="-101.88" font-family="sans-Serif" font-size="10.00" fill="#0f172a">🔑  AWS Creds</text>
|
|
34
|
+
<text xml:space="preserve" text-anchor="middle" x="47.75" y="-89.12" font-family="sans-Serif" font-size="10.00" fill="#0f172a">STS · env · profile</text>
|
|
35
|
+
</g>
|
|
36
|
+
<!-- IAM -->
|
|
37
|
+
<g id="node2" class="node">
|
|
38
|
+
<title>IAM</title>
|
|
39
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M273.25,-52C273.25,-52 221.25,-52 221.25,-52 215.25,-52 209.25,-46 209.25,-40 209.25,-40 209.25,-28 209.25,-28 209.25,-22 215.25,-16 221.25,-16 221.25,-16 273.25,-16 273.25,-16 279.25,-16 285.25,-22 285.25,-28 285.25,-28 285.25,-40 285.25,-40 285.25,-46 279.25,-52 273.25,-52"/>
|
|
40
|
+
<text xml:space="preserve" text-anchor="middle" x="247.25" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">IAM · STS</text>
|
|
41
|
+
<text xml:space="preserve" text-anchor="middle" x="247.25" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Organizations</text>
|
|
42
|
+
</g>
|
|
43
|
+
<!-- Creds->IAM -->
|
|
44
|
+
<g id="edge1" class="edge">
|
|
45
|
+
<title>Creds->IAM</title>
|
|
46
|
+
<path fill="none" stroke="#38bdf8" stroke-width="1.3" d="M96.06,-83.43C127.39,-73.12 168.32,-59.65 199.53,-49.38"/>
|
|
47
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="1.3" points="200.29,-52.07 207.02,-46.91 198.54,-46.75 200.29,-52.07"/>
|
|
48
|
+
</g>
|
|
49
|
+
<!-- EC2 -->
|
|
50
|
+
<g id="node3" class="node">
|
|
51
|
+
<title>EC2</title>
|
|
52
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M283.38,-117C283.38,-117 211.12,-117 211.12,-117 205.12,-117 199.12,-111 199.12,-105 199.12,-105 199.12,-93 199.12,-93 199.12,-87 205.12,-81 211.12,-81 211.12,-81 283.38,-81 283.38,-81 289.38,-81 295.38,-87 295.38,-93 295.38,-93 295.38,-105 295.38,-105 295.38,-111 289.38,-117 283.38,-117"/>
|
|
53
|
+
<text xml:space="preserve" text-anchor="middle" x="247.25" y="-101.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">EC2 · ECS · ECR</text>
|
|
54
|
+
<text xml:space="preserve" text-anchor="middle" x="247.25" y="-89.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Lambda · Lightsail</text>
|
|
55
|
+
</g>
|
|
56
|
+
<!-- Creds->EC2 -->
|
|
57
|
+
<g id="edge2" class="edge">
|
|
58
|
+
<title>Creds->EC2</title>
|
|
59
|
+
<path fill="none" stroke="#38bdf8" stroke-width="1.3" d="M96.06,-99C123.94,-99 159.43,-99 188.9,-99"/>
|
|
60
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="1.3" points="188.68,-101.8 196.68,-99 188.68,-96.2 188.68,-101.8"/>
|
|
61
|
+
</g>
|
|
62
|
+
<!-- Net -->
|
|
63
|
+
<g id="node4" class="node">
|
|
64
|
+
<title>Net</title>
|
|
65
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M301,-182C301,-182 193.5,-182 193.5,-182 187.5,-182 181.5,-176 181.5,-170 181.5,-170 181.5,-158 181.5,-158 181.5,-152 187.5,-146 193.5,-146 193.5,-146 301,-146 301,-146 307,-146 313,-152 313,-158 313,-158 313,-170 313,-170 313,-176 307,-182 301,-182"/>
|
|
66
|
+
<text xml:space="preserve" text-anchor="middle" x="247.25" y="-166.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Route53 · ELB</text>
|
|
67
|
+
<text xml:space="preserve" text-anchor="middle" x="247.25" y="-154.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">API Gateway · CloudFront</text>
|
|
68
|
+
</g>
|
|
69
|
+
<!-- Creds->Net -->
|
|
70
|
+
<g id="edge3" class="edge">
|
|
71
|
+
<title>Creds->Net</title>
|
|
72
|
+
<path fill="none" stroke="#38bdf8" stroke-width="1.3" d="M96.06,-114.57C121.38,-122.9 152.97,-133.3 180.63,-142.4"/>
|
|
73
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="1.3" points="179.5,-144.98 187.98,-144.82 181.25,-139.66 179.5,-144.98"/>
|
|
74
|
+
</g>
|
|
75
|
+
<!-- S3 -->
|
|
76
|
+
<g id="node5" class="node">
|
|
77
|
+
<title>S3</title>
|
|
78
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M479.88,-52C479.88,-52 424.88,-52 424.88,-52 418.88,-52 412.88,-46 412.88,-40 412.88,-40 412.88,-28 412.88,-28 412.88,-22 418.88,-16 424.88,-16 424.88,-16 479.88,-16 479.88,-16 485.88,-16 491.88,-22 491.88,-28 491.88,-28 491.88,-40 491.88,-40 491.88,-46 485.88,-52 479.88,-52"/>
|
|
79
|
+
<text xml:space="preserve" text-anchor="middle" x="452.38" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">S3 · Glacier</text>
|
|
80
|
+
<text xml:space="preserve" text-anchor="middle" x="452.38" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">public buckets</text>
|
|
81
|
+
</g>
|
|
82
|
+
<!-- IAM->S3 -->
|
|
83
|
+
<g id="edge4" class="edge">
|
|
84
|
+
<title>IAM->S3</title>
|
|
85
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M285.51,-34C318.38,-34 366.52,-34 402.48,-34"/>
|
|
86
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="402.31,-36.8 410.31,-34 402.31,-31.2 402.31,-36.8"/>
|
|
87
|
+
</g>
|
|
88
|
+
<!-- KMS -->
|
|
89
|
+
<g id="node6" class="node">
|
|
90
|
+
<title>KMS</title>
|
|
91
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M487.75,-117C487.75,-117 417,-117 417,-117 411,-117 405,-111 405,-105 405,-105 405,-93 405,-93 405,-87 411,-81 417,-81 417,-81 487.75,-81 487.75,-81 493.75,-81 499.75,-87 499.75,-93 499.75,-93 499.75,-105 499.75,-105 499.75,-111 493.75,-117 487.75,-117"/>
|
|
92
|
+
<text xml:space="preserve" text-anchor="middle" x="452.38" y="-101.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">KMS · CloudHSM</text>
|
|
93
|
+
<text xml:space="preserve" text-anchor="middle" x="452.38" y="-89.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Secrets · SSM</text>
|
|
94
|
+
</g>
|
|
95
|
+
<!-- EC2->KMS -->
|
|
96
|
+
<g id="edge5" class="edge">
|
|
97
|
+
<title>EC2->KMS</title>
|
|
98
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M295.87,-99C325.39,-99 363.48,-99 394.57,-99"/>
|
|
99
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="394.43,-101.8 402.43,-99 394.43,-96.2 394.43,-101.8"/>
|
|
100
|
+
</g>
|
|
101
|
+
<!-- Log -->
|
|
102
|
+
<g id="node7" class="node">
|
|
103
|
+
<title>Log</title>
|
|
104
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M493.75,-182C493.75,-182 411,-182 411,-182 405,-182 399,-176 399,-170 399,-170 399,-158 399,-158 399,-152 405,-146 411,-146 411,-146 493.75,-146 493.75,-146 499.75,-146 505.75,-152 505.75,-158 505.75,-158 505.75,-170 505.75,-170 505.75,-176 499.75,-182 493.75,-182"/>
|
|
105
|
+
<text xml:space="preserve" text-anchor="middle" x="452.38" y="-166.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">CloudTrail</text>
|
|
106
|
+
<text xml:space="preserve" text-anchor="middle" x="452.38" y="-154.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">CloudWatch · Config</text>
|
|
107
|
+
</g>
|
|
108
|
+
<!-- Net->Log -->
|
|
109
|
+
<g id="edge6" class="edge">
|
|
110
|
+
<title>Net->Log</title>
|
|
111
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M313.64,-164C337.8,-164 365.1,-164 388.98,-164"/>
|
|
112
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="388.67,-166.8 396.67,-164 388.67,-161.2 388.67,-166.8"/>
|
|
113
|
+
</g>
|
|
114
|
+
<!-- Priv -->
|
|
115
|
+
<g id="node8" class="node">
|
|
116
|
+
<title>Priv</title>
|
|
117
|
+
<path fill="#fda4af" stroke="#334155" stroke-width="1.3" d="M695.25,-117C695.25,-117 640.25,-117 640.25,-117 634.25,-117 628.25,-111 628.25,-105 628.25,-105 628.25,-93 628.25,-93 628.25,-87 634.25,-81 640.25,-81 640.25,-81 695.25,-81 695.25,-81 701.25,-81 707.25,-87 707.25,-93 707.25,-93 707.25,-105 707.25,-105 707.25,-111 701.25,-117 695.25,-117"/>
|
|
118
|
+
<text xml:space="preserve" text-anchor="middle" x="667.75" y="-101.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">iam:PassRole</text>
|
|
119
|
+
<text xml:space="preserve" text-anchor="middle" x="667.75" y="-89.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">lambda invoke</text>
|
|
120
|
+
</g>
|
|
121
|
+
<!-- S3->Priv -->
|
|
122
|
+
<g id="edge7" class="edge">
|
|
123
|
+
<title>S3->Priv</title>
|
|
124
|
+
<path fill="none" stroke="#fb7185" stroke-width="1.3" d="M492.51,-45.92C528,-56.73 580.44,-72.71 618.51,-84.31"/>
|
|
125
|
+
<polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="617.51,-86.93 625.98,-86.58 619.14,-81.57 617.51,-86.93"/>
|
|
126
|
+
</g>
|
|
127
|
+
<!-- KMS->Priv -->
|
|
128
|
+
<g id="edge8" class="edge">
|
|
129
|
+
<title>KMS->Priv</title>
|
|
130
|
+
<path fill="none" stroke="#fb7185" stroke-width="1.3" d="M500.2,-99C535.19,-99 582.87,-99 618.25,-99"/>
|
|
131
|
+
<polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="617.92,-101.8 625.92,-99 617.92,-96.2 617.92,-101.8"/>
|
|
132
|
+
</g>
|
|
133
|
+
<!-- Back -->
|
|
134
|
+
<g id="node9" class="node">
|
|
135
|
+
<title>Back</title>
|
|
136
|
+
<path fill="#fda4af" stroke="#334155" stroke-width="1.3" d="M699.38,-182C699.38,-182 636.12,-182 636.12,-182 630.12,-182 624.12,-176 624.12,-170 624.12,-170 624.12,-158 624.12,-158 624.12,-152 630.12,-146 636.12,-146 636.12,-146 699.38,-146 699.38,-146 705.38,-146 711.38,-152 711.38,-158 711.38,-158 711.38,-170 711.38,-170 711.38,-176 705.38,-182 699.38,-182"/>
|
|
137
|
+
<text xml:space="preserve" text-anchor="middle" x="667.75" y="-166.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">new access key</text>
|
|
138
|
+
<text xml:space="preserve" text-anchor="middle" x="667.75" y="-154.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">EC2 userdata</text>
|
|
139
|
+
</g>
|
|
140
|
+
<!-- Log->Back -->
|
|
141
|
+
<g id="edge9" class="edge">
|
|
142
|
+
<title>Log->Back</title>
|
|
143
|
+
<path fill="none" stroke="#fb7185" stroke-width="1.3" d="M506.39,-164C539.17,-164 581.08,-164 613.83,-164"/>
|
|
144
|
+
<polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="613.71,-166.8 621.71,-164 613.71,-161.2 613.71,-166.8"/>
|
|
145
|
+
</g>
|
|
146
|
+
<!-- Rep -->
|
|
147
|
+
<g id="node10" class="node">
|
|
148
|
+
<title>Rep</title>
|
|
149
|
+
<path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M966,-149C966,-149 842.75,-149 842.75,-149 836.75,-149 830.75,-143 830.75,-137 830.75,-137 830.75,-125 830.75,-125 830.75,-119 836.75,-113 842.75,-113 842.75,-113 966,-113 966,-113 972,-113 978,-119 978,-125 978,-125 978,-137 978,-137 978,-143 972,-149 966,-149"/>
|
|
150
|
+
<text xml:space="preserve" text-anchor="middle" x="904.38" y="-133.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn_aws_describe_resources</text>
|
|
151
|
+
<text xml:space="preserve" text-anchor="middle" x="904.38" y="-121.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Reports</text>
|
|
152
|
+
</g>
|
|
153
|
+
<!-- Priv->Rep -->
|
|
154
|
+
<g id="edge10" class="edge">
|
|
155
|
+
<title>Priv->Rep</title>
|
|
156
|
+
<path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M707.76,-104.32C738.39,-108.5 782.13,-114.46 820.48,-119.69"/>
|
|
157
|
+
<polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="819.85,-122.43 828.16,-120.74 820.61,-116.89 819.85,-122.43"/>
|
|
158
|
+
</g>
|
|
159
|
+
<!-- Back->Rep -->
|
|
160
|
+
<g id="edge11" class="edge">
|
|
161
|
+
<title>Back->Rep</title>
|
|
162
|
+
<path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M711.78,-157.95C742.14,-153.68 783.78,-147.82 820.48,-142.66"/>
|
|
163
|
+
<polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="820.71,-145.45 828.25,-141.57 819.93,-139.91 820.71,-145.45"/>
|
|
164
|
+
</g>
|
|
165
|
+
</g>
|
|
166
|
+
</svg>
|