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,119 +3,181 @@
|
|
|
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_Network Pages: 1 -->
|
|
7
|
+
<svg width="1171pt" height="360pt"
|
|
8
|
+
viewBox="0.00 0.00 1171.00 360.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 317.2)">
|
|
10
|
+
<title>PWN_Network</title>
|
|
11
|
+
<polygon fill="#0f172a" stroke="none" points="-43.2,43.2 -43.2,-317.2 1127.45,-317.2 1127.45,43.2 -43.2,43.2"/>
|
|
12
|
+
<text xml:space="preserve" text-anchor="start" x="388.75" y="-252" font-family="sans-Serif" font-weight="bold" font-size="20.00" fill="#e2e8f0">Network & Infrastructure Testing</text>
|
|
13
|
+
<text xml:space="preserve" text-anchor="start" x="410.12" y="-240.55" font-family="sans-Serif" font-size="11.00" fill="#94a3b8">discovery → service enum → auth attacks → cloud / CI</text>
|
|
14
|
+
<g id="clust1" class="cluster">
|
|
15
|
+
<title>cluster_disc</title>
|
|
16
|
+
<path fill="#022c22" stroke="#047857" d="M160.75,-76C160.75,-76 297.75,-76 297.75,-76 303.75,-76 309.75,-82 309.75,-88 309.75,-88 309.75,-215 309.75,-215 309.75,-221 303.75,-227 297.75,-227 297.75,-227 160.75,-227 160.75,-227 154.75,-227 148.75,-221 148.75,-215 148.75,-215 148.75,-88 148.75,-88 148.75,-82 154.75,-76 160.75,-76"/>
|
|
17
|
+
<text xml:space="preserve" text-anchor="middle" x="229.25" y="-204" font-family="sans-Serif" font-size="20.00" fill="#a7f3d0">Discover</text>
|
|
18
|
+
</g>
|
|
19
|
+
<g id="clust2" class="cluster">
|
|
20
|
+
<title>cluster_svc</title>
|
|
21
|
+
<path fill="#422006" stroke="#a16207" d="M391.75,-8C391.75,-8 508.25,-8 508.25,-8 514.25,-8 520.25,-14 520.25,-20 520.25,-20 520.25,-215 520.25,-215 520.25,-221 514.25,-227 508.25,-227 508.25,-227 391.75,-227 391.75,-227 385.75,-227 379.75,-221 379.75,-215 379.75,-215 379.75,-20 379.75,-20 379.75,-14 385.75,-8 391.75,-8"/>
|
|
22
|
+
<text xml:space="preserve" text-anchor="middle" x="450" y="-204" font-family="sans-Serif" font-size="20.00" fill="#fde68a">Service Enum</text>
|
|
23
|
+
</g>
|
|
24
|
+
<g id="clust3" class="cluster">
|
|
25
|
+
<title>cluster_auth</title>
|
|
26
|
+
<path fill="#450a0a" stroke="#b91c1c" d="M602.25,-8C602.25,-8 711.25,-8 711.25,-8 717.25,-8 723.25,-14 723.25,-20 723.25,-20 723.25,-147 723.25,-147 723.25,-153 717.25,-159 711.25,-159 711.25,-159 602.25,-159 602.25,-159 596.25,-159 590.25,-153 590.25,-147 590.25,-147 590.25,-20 590.25,-20 590.25,-14 596.25,-8 602.25,-8"/>
|
|
27
|
+
<text xml:space="preserve" text-anchor="middle" x="656.75" y="-136" font-family="sans-Serif" font-size="20.00" fill="#fecaca">Auth / Exploit</text>
|
|
28
|
+
</g>
|
|
29
|
+
<g id="clust4" class="cluster">
|
|
30
|
+
<title>cluster_cloud</title>
|
|
31
|
+
<path fill="#2e1065" stroke="#6d28d9" d="M805.25,-8C805.25,-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 805.25,-159 805.25,-159 799.25,-159 793.25,-153 793.25,-147 793.25,-147 793.25,-20 793.25,-20 793.25,-14 799.25,-8 805.25,-8"/>
|
|
32
|
+
<text xml:space="preserve" text-anchor="middle" x="845.25" y="-136" font-family="sans-Serif" font-size="20.00" fill="#ddd6fe">Cloud / CI</text>
|
|
33
|
+
</g>
|
|
34
|
+
<!-- CIDR -->
|
|
13
35
|
<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="
|
|
36
|
+
<title>CIDR</title>
|
|
37
|
+
<path fill="#7dd3fc" stroke="#334155" stroke-width="1.3" d="M58.75,-154C58.75,-154 12,-154 12,-154 6,-154 0,-148 0,-142 0,-142 0,-130 0,-130 0,-124 6,-118 12,-118 12,-118 58.75,-118 58.75,-118 64.75,-118 70.75,-124 70.75,-130 70.75,-130 70.75,-142 70.75,-142 70.75,-148 64.75,-154 58.75,-154"/>
|
|
38
|
+
<text xml:space="preserve" text-anchor="middle" x="35.38" y="-138.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">CIDR / ASN</text>
|
|
39
|
+
<text xml:space="preserve" text-anchor="middle" x="35.38" y="-126.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">scope</text>
|
|
18
40
|
</g>
|
|
19
|
-
<!--
|
|
41
|
+
<!-- Nmap -->
|
|
20
42
|
<g id="node2" class="node">
|
|
21
|
-
<title>
|
|
22
|
-
<path fill="
|
|
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="115.88" y="-376.45" font-family="Arial" font-size="9.00">Shodan, IPInfo, crt.sh)</text>
|
|
43
|
+
<title>Nmap</title>
|
|
44
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M289.75,-120C289.75,-120 168.75,-120 168.75,-120 162.75,-120 156.75,-114 156.75,-108 156.75,-108 156.75,-96 156.75,-96 156.75,-90 162.75,-84 168.75,-84 168.75,-84 289.75,-84 289.75,-84 295.75,-84 301.75,-90 301.75,-96 301.75,-96 301.75,-108 301.75,-108 301.75,-114 295.75,-120 289.75,-120"/>
|
|
45
|
+
<text xml:space="preserve" text-anchor="middle" x="229.25" y="-104.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">NmapIt</text>
|
|
46
|
+
<text xml:space="preserve" text-anchor="middle" x="229.25" y="-92.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">pwn_nmap_discover_tcp_udp</text>
|
|
26
47
|
</g>
|
|
27
|
-
<!--
|
|
48
|
+
<!-- CIDR->Nmap -->
|
|
28
49
|
<g id="edge1" class="edge">
|
|
29
|
-
<title>
|
|
30
|
-
<path fill="none" stroke="
|
|
31
|
-
<polygon fill="
|
|
50
|
+
<title>CIDR->Nmap</title>
|
|
51
|
+
<path fill="none" stroke="#38bdf8" stroke-width="1.3" d="M71.12,-129.84C92.28,-126.09 120.26,-121.14 146.74,-116.44"/>
|
|
52
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="1.3" points="147.08,-119.23 154.47,-115.07 146.1,-113.71 147.08,-119.23"/>
|
|
32
53
|
</g>
|
|
33
|
-
<!--
|
|
54
|
+
<!-- Packet -->
|
|
34
55
|
<g id="node3" class="node">
|
|
35
|
-
<title>
|
|
36
|
-
<path fill="
|
|
37
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
38
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
56
|
+
<title>Packet</title>
|
|
57
|
+
<path fill="#6ee7b7" stroke="#334155" stroke-width="1.3" d="M259.75,-188C259.75,-188 198.75,-188 198.75,-188 192.75,-188 186.75,-182 186.75,-176 186.75,-176 186.75,-164 186.75,-164 186.75,-158 192.75,-152 198.75,-152 198.75,-152 259.75,-152 259.75,-152 265.75,-152 271.75,-158 271.75,-164 271.75,-164 271.75,-176 271.75,-176 271.75,-182 265.75,-188 259.75,-188"/>
|
|
58
|
+
<text xml:space="preserve" text-anchor="middle" x="229.25" y="-172.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Packet</text>
|
|
59
|
+
<text xml:space="preserve" text-anchor="middle" x="229.25" y="-160.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">raw craft / sniff</text>
|
|
39
60
|
</g>
|
|
40
|
-
<!--
|
|
61
|
+
<!-- CIDR->Packet -->
|
|
41
62
|
<g id="edge2" class="edge">
|
|
42
|
-
<title>
|
|
43
|
-
<path fill="none" stroke="
|
|
44
|
-
<polygon fill="
|
|
63
|
+
<title>CIDR->Packet</title>
|
|
64
|
+
<path fill="none" stroke="#38bdf8" stroke-width="1.3" d="M71.12,-142.16C100.61,-147.38 143.33,-154.95 176.79,-160.88"/>
|
|
65
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="1.3" points="176.1,-163.6 184.47,-162.24 177.08,-158.09 176.1,-163.6"/>
|
|
45
66
|
</g>
|
|
46
|
-
<!--
|
|
67
|
+
<!-- Sock -->
|
|
47
68
|
<g id="node4" class="node">
|
|
48
|
-
<title>
|
|
49
|
-
<path fill="
|
|
50
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
51
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
52
|
-
<text xml:space="preserve" text-anchor="middle" x="115.88" y="-228.95" font-family="Arial" font-size="9.00">credential spray)</text>
|
|
69
|
+
<title>Sock</title>
|
|
70
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M475.88,-52C475.88,-52 423.12,-52 423.12,-52 417.12,-52 411.12,-46 411.12,-40 411.12,-40 411.12,-28 411.12,-28 411.12,-22 417.12,-16 423.12,-16 423.12,-16 475.88,-16 475.88,-16 481.88,-16 487.88,-22 487.88,-28 487.88,-28 487.88,-40 487.88,-40 487.88,-46 481.88,-52 475.88,-52"/>
|
|
71
|
+
<text xml:space="preserve" text-anchor="middle" x="449.5" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Sock</text>
|
|
72
|
+
<text xml:space="preserve" text-anchor="middle" x="449.5" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">banner grab</text>
|
|
53
73
|
</g>
|
|
54
|
-
<!--
|
|
74
|
+
<!-- Nmap->Sock -->
|
|
55
75
|
<g id="edge3" class="edge">
|
|
56
|
-
<title>
|
|
57
|
-
<path fill="none" stroke="
|
|
58
|
-
<polygon fill="
|
|
76
|
+
<title>Nmap->Sock</title>
|
|
77
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M289.89,-83.42C324.92,-72.5 368.59,-58.9 401.24,-48.73"/>
|
|
78
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="401.88,-51.46 408.68,-46.41 400.21,-46.11 401.88,-51.46"/>
|
|
59
79
|
</g>
|
|
60
|
-
<!--
|
|
80
|
+
<!-- DAO -->
|
|
61
81
|
<g id="node5" class="node">
|
|
62
|
-
<title>
|
|
63
|
-
<path fill="
|
|
64
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
65
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
66
|
-
<text xml:space="preserve" text-anchor="middle" x="115.88" y="-153.45" font-family="Arial" font-size="9.00">Nexpose, Zaproxy)</text>
|
|
82
|
+
<title>DAO</title>
|
|
83
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M491.62,-120C491.62,-120 407.38,-120 407.38,-120 401.38,-120 395.38,-114 395.38,-108 395.38,-108 395.38,-96 395.38,-96 395.38,-90 401.38,-84 407.38,-84 407.38,-84 491.62,-84 491.62,-84 497.62,-84 503.62,-90 503.62,-96 503.62,-96 503.62,-108 503.62,-108 503.62,-114 497.62,-120 491.62,-120"/>
|
|
84
|
+
<text xml:space="preserve" text-anchor="middle" x="449.5" y="-104.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">DAO::LDAP · Mongo</text>
|
|
85
|
+
<text xml:space="preserve" text-anchor="middle" x="449.5" y="-92.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Postgres · SQLite3</text>
|
|
67
86
|
</g>
|
|
68
|
-
<!--
|
|
87
|
+
<!-- Nmap->DAO -->
|
|
69
88
|
<g id="edge4" class="edge">
|
|
70
|
-
<title>
|
|
71
|
-
<path fill="none" stroke="
|
|
72
|
-
<polygon fill="
|
|
89
|
+
<title>Nmap->DAO</title>
|
|
90
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M302.32,-102C329.07,-102 359.2,-102 385.12,-102"/>
|
|
91
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="384.86,-104.8 392.86,-102 384.86,-99.2 384.86,-104.8"/>
|
|
73
92
|
</g>
|
|
74
|
-
<!--
|
|
93
|
+
<!-- MQ -->
|
|
75
94
|
<g id="node6" class="node">
|
|
76
|
-
<title>
|
|
77
|
-
<path fill="
|
|
78
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
79
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
80
|
-
<text xml:space="preserve" text-anchor="middle" x="54.88" y="-77.95" font-family="Arial" font-size="9.00">Sock, Tor)</text>
|
|
95
|
+
<title>MQ</title>
|
|
96
|
+
<path fill="#fcd34d" stroke="#334155" stroke-width="1.3" d="M484.88,-188C484.88,-188 414.12,-188 414.12,-188 408.12,-188 402.12,-182 402.12,-176 402.12,-176 402.12,-164 402.12,-164 402.12,-158 408.12,-152 414.12,-152 414.12,-152 484.88,-152 484.88,-152 490.88,-152 496.88,-158 496.88,-164 496.88,-164 496.88,-176 496.88,-176 496.88,-182 490.88,-188 484.88,-188"/>
|
|
97
|
+
<text xml:space="preserve" text-anchor="middle" x="449.5" y="-172.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">RabbitMQ</text>
|
|
98
|
+
<text xml:space="preserve" text-anchor="middle" x="449.5" y="-160.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Slack · IRC · Mail</text>
|
|
81
99
|
</g>
|
|
82
|
-
<!--
|
|
100
|
+
<!-- Packet->MQ -->
|
|
83
101
|
<g id="edge5" class="edge">
|
|
84
|
-
<title>
|
|
85
|
-
<path fill="none" stroke="
|
|
86
|
-
<polygon fill="
|
|
102
|
+
<title>Packet->MQ</title>
|
|
103
|
+
<path fill="none" stroke="#f59e0b" stroke-width="1.3" d="M272.33,-170C306.33,-170 354.5,-170 391.88,-170"/>
|
|
104
|
+
<polygon fill="#f59e0b" stroke="#f59e0b" stroke-width="1.3" points="391.66,-172.8 399.66,-170 391.66,-167.2 391.66,-172.8"/>
|
|
87
105
|
</g>
|
|
88
|
-
<!--
|
|
106
|
+
<!-- MSF -->
|
|
89
107
|
<g id="node7" class="node">
|
|
90
|
-
<title>
|
|
91
|
-
<path fill="
|
|
92
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
93
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
94
|
-
<text xml:space="preserve" text-anchor="middle" x="177.88" y="-77.95" font-family="Arial" font-size="9.00">Vsphere, RabbitMQ)</text>
|
|
108
|
+
<title>MSF</title>
|
|
109
|
+
<path fill="#fda4af" stroke="#334155" stroke-width="1.3" d="M694.62,-52C694.62,-52 617.88,-52 617.88,-52 611.88,-52 605.88,-46 605.88,-40 605.88,-40 605.88,-28 605.88,-28 605.88,-22 611.88,-16 617.88,-16 617.88,-16 694.62,-16 694.62,-16 700.62,-16 706.62,-22 706.62,-28 706.62,-28 706.62,-40 706.62,-40 706.62,-46 700.62,-52 694.62,-52"/>
|
|
110
|
+
<text xml:space="preserve" text-anchor="middle" x="656.25" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Metasploit</text>
|
|
111
|
+
<text xml:space="preserve" text-anchor="middle" x="656.25" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">msf_postgres_login</text>
|
|
95
112
|
</g>
|
|
96
|
-
<!--
|
|
97
|
-
<g id="
|
|
98
|
-
<title>
|
|
99
|
-
<path fill="none" stroke="
|
|
100
|
-
<polygon fill="
|
|
113
|
+
<!-- Sock->MSF -->
|
|
114
|
+
<g id="edge6" class="edge">
|
|
115
|
+
<title>Sock->MSF</title>
|
|
116
|
+
<path fill="none" stroke="#fb7185" stroke-width="1.3" d="M488.05,-34C518.24,-34 561.18,-34 595.99,-34"/>
|
|
117
|
+
<polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="595.61,-36.8 603.61,-34 595.61,-31.2 595.61,-36.8"/>
|
|
101
118
|
</g>
|
|
102
|
-
<!--
|
|
119
|
+
<!-- Auth -->
|
|
103
120
|
<g id="node8" class="node">
|
|
104
|
-
<title>
|
|
105
|
-
<path fill="
|
|
106
|
-
<text xml:space="preserve" text-anchor="middle" x="
|
|
121
|
+
<title>Auth</title>
|
|
122
|
+
<path fill="#fda4af" stroke="#334155" stroke-width="1.3" d="M697.62,-120C697.62,-120 614.88,-120 614.88,-120 608.88,-120 602.88,-114 602.88,-108 602.88,-108 602.88,-96 602.88,-96 602.88,-90 608.88,-84 614.88,-84 614.88,-84 697.62,-84 697.62,-84 703.62,-84 709.62,-90 709.62,-96 709.62,-96 709.62,-108 709.62,-108 709.62,-114 703.62,-120 697.62,-120"/>
|
|
123
|
+
<text xml:space="preserve" text-anchor="middle" x="656.25" y="-104.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">BasicAuth · OAuth2</text>
|
|
124
|
+
<text xml:space="preserve" text-anchor="middle" x="656.25" y="-92.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">AuthenticationHelper</text>
|
|
107
125
|
</g>
|
|
108
|
-
<!--
|
|
109
|
-
<g id="
|
|
110
|
-
<title>
|
|
111
|
-
<path fill="none" stroke="
|
|
112
|
-
<polygon fill="
|
|
126
|
+
<!-- DAO->Auth -->
|
|
127
|
+
<g id="edge7" class="edge">
|
|
128
|
+
<title>DAO->Auth</title>
|
|
129
|
+
<path fill="none" stroke="#fb7185" stroke-width="1.3" d="M504.03,-102C531.16,-102 564.27,-102 592.59,-102"/>
|
|
130
|
+
<polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="592.42,-104.8 600.42,-102 592.42,-99.2 592.42,-104.8"/>
|
|
113
131
|
</g>
|
|
114
|
-
<!--
|
|
132
|
+
<!-- MQ->Auth -->
|
|
115
133
|
<g id="edge8" class="edge">
|
|
116
|
-
<title>
|
|
117
|
-
<path fill="none" stroke="
|
|
118
|
-
<polygon fill="
|
|
134
|
+
<title>MQ->Auth</title>
|
|
135
|
+
<path fill="none" stroke="#fb7185" stroke-width="1.3" d="M497.47,-154.4C525.83,-144.98 562.3,-132.87 593.03,-122.67"/>
|
|
136
|
+
<polygon fill="#fb7185" stroke="#fb7185" stroke-width="1.3" points="593.79,-125.36 600.5,-120.18 592.02,-120.05 593.79,-125.36"/>
|
|
137
|
+
</g>
|
|
138
|
+
<!-- AWS -->
|
|
139
|
+
<g id="node9" class="node">
|
|
140
|
+
<title>AWS</title>
|
|
141
|
+
<path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M872.38,-52C872.38,-52 818.12,-52 818.12,-52 812.12,-52 806.12,-46 806.12,-40 806.12,-40 806.12,-28 806.12,-28 806.12,-22 812.12,-16 818.12,-16 818.12,-16 872.38,-16 872.38,-16 878.38,-16 884.38,-22 884.38,-28 884.38,-28 884.38,-40 884.38,-40 884.38,-46 878.38,-52 872.38,-52"/>
|
|
142
|
+
<text xml:space="preserve" text-anchor="middle" x="845.25" y="-36.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">PWN::AWS::*</text>
|
|
143
|
+
<text xml:space="preserve" text-anchor="middle" x="845.25" y="-24.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">90 services</text>
|
|
144
|
+
</g>
|
|
145
|
+
<!-- MSF->AWS -->
|
|
146
|
+
<g id="edge9" class="edge">
|
|
147
|
+
<title>MSF->AWS</title>
|
|
148
|
+
<path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M706.87,-34C734.43,-34 768.57,-34 795.92,-34"/>
|
|
149
|
+
<polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="795.7,-36.8 803.7,-34 795.7,-31.2 795.7,-36.8"/>
|
|
150
|
+
</g>
|
|
151
|
+
<!-- Jenk -->
|
|
152
|
+
<g id="node10" class="node">
|
|
153
|
+
<title>Jenk</title>
|
|
154
|
+
<path fill="#c4b5fd" stroke="#334155" stroke-width="1.3" d="M877.25,-120C877.25,-120 813.25,-120 813.25,-120 807.25,-120 801.25,-114 801.25,-108 801.25,-108 801.25,-96 801.25,-96 801.25,-90 807.25,-84 813.25,-84 813.25,-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"/>
|
|
155
|
+
<text xml:space="preserve" text-anchor="middle" x="845.25" y="-104.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Plugins::Jenkins</text>
|
|
156
|
+
<text xml:space="preserve" text-anchor="middle" x="845.25" y="-92.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">vSphere · Vault</text>
|
|
157
|
+
</g>
|
|
158
|
+
<!-- Auth->Jenk -->
|
|
159
|
+
<g id="edge10" class="edge">
|
|
160
|
+
<title>Auth->Jenk</title>
|
|
161
|
+
<path fill="none" stroke="#a78bfa" stroke-width="1.3" d="M709.84,-102C735.21,-102 765.58,-102 791.03,-102"/>
|
|
162
|
+
<polygon fill="#a78bfa" stroke="#a78bfa" stroke-width="1.3" points="790.91,-104.8 798.91,-102 790.91,-99.2 790.91,-104.8"/>
|
|
163
|
+
</g>
|
|
164
|
+
<!-- Report -->
|
|
165
|
+
<g id="node11" class="node">
|
|
166
|
+
<title>Report</title>
|
|
167
|
+
<path fill="#7dd3fc" stroke="#334155" stroke-width="1.3" d="M1072.25,-86C1072.25,-86 987.25,-86 987.25,-86 981.25,-86 975.25,-80 975.25,-74 975.25,-74 975.25,-62 975.25,-62 975.25,-56 981.25,-50 987.25,-50 987.25,-50 1072.25,-50 1072.25,-50 1078.25,-50 1084.25,-56 1084.25,-62 1084.25,-62 1084.25,-74 1084.25,-74 1084.25,-80 1078.25,-86 1072.25,-86"/>
|
|
168
|
+
<text xml:space="preserve" text-anchor="middle" x="1029.75" y="-64.5" font-family="sans-Serif" font-size="10.00" fill="#0f172a">Reports · DefectDojo</text>
|
|
169
|
+
</g>
|
|
170
|
+
<!-- AWS->Report -->
|
|
171
|
+
<g id="edge11" class="edge">
|
|
172
|
+
<title>AWS->Report</title>
|
|
173
|
+
<path fill="none" stroke="#38bdf8" stroke-width="1.3" d="M884.95,-41.21C908.25,-45.55 938.48,-51.18 965.2,-56.16"/>
|
|
174
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="1.3" points="964.56,-58.89 972.94,-57.6 965.59,-53.38 964.56,-58.89"/>
|
|
175
|
+
</g>
|
|
176
|
+
<!-- Jenk->Report -->
|
|
177
|
+
<g id="edge12" class="edge">
|
|
178
|
+
<title>Jenk->Report</title>
|
|
179
|
+
<path fill="none" stroke="#38bdf8" stroke-width="1.3" d="M889.5,-93.94C912.02,-89.75 939.99,-84.54 964.94,-79.89"/>
|
|
180
|
+
<polygon fill="#38bdf8" stroke="#38bdf8" stroke-width="1.3" points="965.41,-82.65 972.77,-78.43 964.39,-77.14 965.41,-82.65"/>
|
|
119
181
|
</g>
|
|
120
182
|
</g>
|
|
121
183
|
</svg>
|