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
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pwn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.620
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- 0day Inc.
|
|
@@ -547,14 +547,14 @@ dependencies:
|
|
|
547
547
|
requirements:
|
|
548
548
|
- - '='
|
|
549
549
|
- !ruby/object:Gem::Version
|
|
550
|
-
version: 0.0.
|
|
550
|
+
version: 0.0.169
|
|
551
551
|
type: :runtime
|
|
552
552
|
prerelease: false
|
|
553
553
|
version_requirements: !ruby/object:Gem::Requirement
|
|
554
554
|
requirements:
|
|
555
555
|
- - '='
|
|
556
556
|
- !ruby/object:Gem::Version
|
|
557
|
-
version: 0.0.
|
|
557
|
+
version: 0.0.169
|
|
558
558
|
- !ruby/object:Gem::Dependency
|
|
559
559
|
name: metasm
|
|
560
560
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -981,14 +981,14 @@ dependencies:
|
|
|
981
981
|
requirements:
|
|
982
982
|
- - '='
|
|
983
983
|
- !ruby/object:Gem::Version
|
|
984
|
-
version: 1.88.
|
|
984
|
+
version: 1.88.2
|
|
985
985
|
type: :runtime
|
|
986
986
|
prerelease: false
|
|
987
987
|
version_requirements: !ruby/object:Gem::Requirement
|
|
988
988
|
requirements:
|
|
989
989
|
- - '='
|
|
990
990
|
- !ruby/object:Gem::Version
|
|
991
|
-
version: 1.88.
|
|
991
|
+
version: 1.88.2
|
|
992
992
|
- !ruby/object:Gem::Dependency
|
|
993
993
|
name: rubocop-rake
|
|
994
994
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1454,27 +1454,51 @@ files:
|
|
|
1454
1454
|
- bin/pwn_zaproxy_active_scan
|
|
1455
1455
|
- build_gem.sh
|
|
1456
1456
|
- documentation/AI-Integration.md
|
|
1457
|
+
- documentation/AWS.md
|
|
1458
|
+
- documentation/Agent-Tool-Registry.md
|
|
1459
|
+
- documentation/Banner.md
|
|
1460
|
+
- documentation/Blockchain.md
|
|
1461
|
+
- documentation/Bounty.md
|
|
1457
1462
|
- documentation/BurpSuite.md
|
|
1463
|
+
- documentation/CLI-Drivers.md
|
|
1464
|
+
- documentation/Configuration.md
|
|
1458
1465
|
- documentation/Contributing.md
|
|
1466
|
+
- documentation/Cron.md
|
|
1459
1467
|
- documentation/Diagrams.md
|
|
1460
1468
|
- documentation/Drivers.md
|
|
1469
|
+
- documentation/Extrospection.md
|
|
1470
|
+
- documentation/FFI.md
|
|
1471
|
+
- documentation/Fuzzing.md
|
|
1461
1472
|
- documentation/General-PWN-Usage.md
|
|
1473
|
+
- documentation/Hardware.md
|
|
1462
1474
|
- documentation/Home.md
|
|
1463
1475
|
- documentation/How-PWN-Works.md
|
|
1464
1476
|
- documentation/Installation.md
|
|
1477
|
+
- documentation/Metasploit.md
|
|
1478
|
+
- documentation/Mistakes.md
|
|
1465
1479
|
- documentation/NmapIt.md
|
|
1480
|
+
- documentation/PWN.png
|
|
1481
|
+
- documentation/PWN_Contributors_and_Users.png
|
|
1482
|
+
- documentation/Persistence.md
|
|
1466
1483
|
- documentation/Plugins.md
|
|
1467
1484
|
- documentation/Reporting.md
|
|
1468
1485
|
- documentation/SAST.md
|
|
1486
|
+
- documentation/SDR.md
|
|
1487
|
+
- documentation/Sessions.md
|
|
1469
1488
|
- documentation/Skills-Memory-Learning.md
|
|
1489
|
+
- documentation/Swarm.md
|
|
1470
1490
|
- documentation/Transparent-Browser.md
|
|
1471
1491
|
- documentation/Troubleshooting.md
|
|
1492
|
+
- documentation/WWW.md
|
|
1472
1493
|
- documentation/What-is-PWN.md
|
|
1473
1494
|
- documentation/Why-PWN.md
|
|
1495
|
+
- documentation/diagrams/agent-tool-registry.svg
|
|
1474
1496
|
- documentation/diagrams/ai-integration-tool-calling.svg
|
|
1497
|
+
- documentation/diagrams/aws-cloud-security.svg
|
|
1475
1498
|
- documentation/diagrams/build.sh
|
|
1476
1499
|
- documentation/diagrams/burp-vs-zap-preference.svg
|
|
1477
1500
|
- documentation/diagrams/code-scanning-sast.svg
|
|
1501
|
+
- documentation/diagrams/cron-scheduling.svg
|
|
1478
1502
|
- documentation/diagrams/dot/_THEME.md
|
|
1479
1503
|
- documentation/diagrams/dot/agent-tool-registry.dot
|
|
1480
1504
|
- documentation/diagrams/dot/ai-integration-tool-calling.dot
|
|
@@ -1485,11 +1509,14 @@ files:
|
|
|
1485
1509
|
- documentation/diagrams/dot/driver-framework.dot
|
|
1486
1510
|
- documentation/diagrams/dot/extrospection-world-awareness.dot
|
|
1487
1511
|
- documentation/diagrams/dot/fuzzing-workflow.dot
|
|
1512
|
+
- documentation/diagrams/dot/hardware-hacking.dot
|
|
1488
1513
|
- documentation/diagrams/dot/history-to-drivers.dot
|
|
1489
1514
|
- documentation/diagrams/dot/memory-skills-detailed.dot
|
|
1515
|
+
- documentation/diagrams/dot/mistakes-negative-feedback.dot
|
|
1490
1516
|
- documentation/diagrams/dot/network-infra-testing.dot
|
|
1491
1517
|
- documentation/diagrams/dot/overall-pwn-architecture.dot
|
|
1492
1518
|
- documentation/diagrams/dot/penetration-testing-workflow.dot
|
|
1519
|
+
- documentation/diagrams/dot/persistence-filesystem.dot
|
|
1493
1520
|
- documentation/diagrams/dot/plugin-ecosystem.dot
|
|
1494
1521
|
- documentation/diagrams/dot/pwn-ai-feedback-learning-loop.dot
|
|
1495
1522
|
- documentation/diagrams/dot/pwn-repl-prototyping.dot
|
|
@@ -1501,22 +1528,35 @@ files:
|
|
|
1501
1528
|
- documentation/diagrams/dot/web-application-testing.dot
|
|
1502
1529
|
- documentation/diagrams/dot/zero-day-research-flow.dot
|
|
1503
1530
|
- documentation/diagrams/driver-framework.svg
|
|
1531
|
+
- documentation/diagrams/extrospection-world-awareness.svg
|
|
1504
1532
|
- documentation/diagrams/fuzzing-workflow.svg
|
|
1533
|
+
- documentation/diagrams/hardware-hacking.svg
|
|
1505
1534
|
- documentation/diagrams/history-to-drivers.svg
|
|
1506
1535
|
- documentation/diagrams/memory-skills-detailed.svg
|
|
1536
|
+
- documentation/diagrams/mistakes-negative-feedback.svg
|
|
1507
1537
|
- documentation/diagrams/network-infra-testing.svg
|
|
1508
1538
|
- documentation/diagrams/overall-pwn-architecture.svg
|
|
1509
1539
|
- documentation/diagrams/penetration-testing-workflow.svg
|
|
1540
|
+
- documentation/diagrams/persistence-filesystem.svg
|
|
1510
1541
|
- documentation/diagrams/plugin-ecosystem.svg
|
|
1511
1542
|
- documentation/diagrams/pwn-ai-feedback-learning-loop.svg
|
|
1512
1543
|
- documentation/diagrams/pwn-repl-prototyping.svg
|
|
1513
1544
|
- documentation/diagrams/reporting-pipeline.svg
|
|
1514
1545
|
- documentation/diagrams/reverse-engineering-flow.svg
|
|
1546
|
+
- documentation/diagrams/sdr-radio-flow.svg
|
|
1515
1547
|
- documentation/diagrams/sessions-cron-automation.svg
|
|
1548
|
+
- documentation/diagrams/swarm-multi-agent.svg
|
|
1516
1549
|
- documentation/diagrams/web-application-testing.svg
|
|
1517
1550
|
- documentation/diagrams/zero-day-research-flow.svg
|
|
1551
|
+
- documentation/fax-spectrogram.png
|
|
1552
|
+
- documentation/fax-waveform.png
|
|
1518
1553
|
- documentation/pwn-REPL.md
|
|
1519
1554
|
- documentation/pwn-ai-Agent.md
|
|
1555
|
+
- documentation/pwn_android_war_dialer_session.png
|
|
1556
|
+
- documentation/pwn_install.png
|
|
1557
|
+
- documentation/pwn_wallpaper.jpg
|
|
1558
|
+
- documentation/ringing-spectrogram.png
|
|
1559
|
+
- documentation/ringing-waveform.png
|
|
1520
1560
|
- etc/systemd/msfrpcd.service
|
|
1521
1561
|
- etc/systemd/openvas.service
|
|
1522
1562
|
- etc/userland/aws/apache2/jenkins_443.conf
|
|
@@ -1838,6 +1878,7 @@ files:
|
|
|
1838
1878
|
- lib/pwn/ai/agent/learning.rb
|
|
1839
1879
|
- lib/pwn/ai/agent/loop.rb
|
|
1840
1880
|
- lib/pwn/ai/agent/metrics.rb
|
|
1881
|
+
- lib/pwn/ai/agent/mistakes.rb
|
|
1841
1882
|
- lib/pwn/ai/agent/prompt_builder.rb
|
|
1842
1883
|
- lib/pwn/ai/agent/registry.rb
|
|
1843
1884
|
- lib/pwn/ai/agent/result.rb
|
|
@@ -1848,6 +1889,7 @@ files:
|
|
|
1848
1889
|
- lib/pwn/ai/agent/tools/learning.rb
|
|
1849
1890
|
- lib/pwn/ai/agent/tools/memory.rb
|
|
1850
1891
|
- lib/pwn/ai/agent/tools/metrics.rb
|
|
1892
|
+
- lib/pwn/ai/agent/tools/mistakes.rb
|
|
1851
1893
|
- lib/pwn/ai/agent/tools/ruby_eval.rb
|
|
1852
1894
|
- lib/pwn/ai/agent/tools/sessions.rb
|
|
1853
1895
|
- lib/pwn/ai/agent/tools/shell.rb
|
|
@@ -2103,11 +2145,27 @@ files:
|
|
|
2103
2145
|
- lib/pwn/sast/window_location_hash.rb
|
|
2104
2146
|
- lib/pwn/sdr.rb
|
|
2105
2147
|
- lib/pwn/sdr/decoder.rb
|
|
2148
|
+
- lib/pwn/sdr/decoder/adsb.rb
|
|
2149
|
+
- lib/pwn/sdr/decoder/apt.rb
|
|
2106
2150
|
- lib/pwn/sdr/decoder/base.rb
|
|
2151
|
+
- lib/pwn/sdr/decoder/bluetooth.rb
|
|
2152
|
+
- lib/pwn/sdr/decoder/dect.rb
|
|
2107
2153
|
- lib/pwn/sdr/decoder/flex.rb
|
|
2154
|
+
- lib/pwn/sdr/decoder/gps.rb
|
|
2108
2155
|
- lib/pwn/sdr/decoder/gsm.rb
|
|
2156
|
+
- lib/pwn/sdr/decoder/iridium.rb
|
|
2157
|
+
- lib/pwn/sdr/decoder/lora.rb
|
|
2158
|
+
- lib/pwn/sdr/decoder/lte.rb
|
|
2159
|
+
- lib/pwn/sdr/decoder/morse.rb
|
|
2160
|
+
- lib/pwn/sdr/decoder/p25.rb
|
|
2161
|
+
- lib/pwn/sdr/decoder/pager.rb
|
|
2109
2162
|
- lib/pwn/sdr/decoder/pocsag.rb
|
|
2110
2163
|
- lib/pwn/sdr/decoder/rds.rb
|
|
2164
|
+
- lib/pwn/sdr/decoder/rfid.rb
|
|
2165
|
+
- lib/pwn/sdr/decoder/rtl433.rb
|
|
2166
|
+
- lib/pwn/sdr/decoder/rtty.rb
|
|
2167
|
+
- lib/pwn/sdr/decoder/wifi.rb
|
|
2168
|
+
- lib/pwn/sdr/decoder/zigbee.rb
|
|
2111
2169
|
- lib/pwn/sdr/flipper_zero.rb
|
|
2112
2170
|
- lib/pwn/sdr/frequency_allocation.rb
|
|
2113
2171
|
- lib/pwn/sdr/gqrx.rb
|
|
@@ -2234,6 +2292,7 @@ files:
|
|
|
2234
2292
|
- spec/lib/pwn/ai/agent/learning_spec.rb
|
|
2235
2293
|
- spec/lib/pwn/ai/agent/loop_spec.rb
|
|
2236
2294
|
- spec/lib/pwn/ai/agent/metrics_spec.rb
|
|
2295
|
+
- spec/lib/pwn/ai/agent/mistakes_spec.rb
|
|
2237
2296
|
- spec/lib/pwn/ai/agent/prompt_builder_spec.rb
|
|
2238
2297
|
- spec/lib/pwn/ai/agent/registry_spec.rb
|
|
2239
2298
|
- spec/lib/pwn/ai/agent/result_spec.rb
|
|
@@ -2244,6 +2303,7 @@ files:
|
|
|
2244
2303
|
- spec/lib/pwn/ai/agent/tools/learning_spec.rb
|
|
2245
2304
|
- spec/lib/pwn/ai/agent/tools/memory_spec.rb
|
|
2246
2305
|
- spec/lib/pwn/ai/agent/tools/metrics_spec.rb
|
|
2306
|
+
- spec/lib/pwn/ai/agent/tools/mistakes_spec.rb
|
|
2247
2307
|
- spec/lib/pwn/ai/agent/tools/ruby_eval_spec.rb
|
|
2248
2308
|
- spec/lib/pwn/ai/agent/tools/sessions_spec.rb
|
|
2249
2309
|
- spec/lib/pwn/ai/agent/tools/shell_spec.rb
|
|
@@ -2499,11 +2559,27 @@ files:
|
|
|
2499
2559
|
- spec/lib/pwn/sast/version_spec.rb
|
|
2500
2560
|
- spec/lib/pwn/sast/window_location_hash_spec.rb
|
|
2501
2561
|
- spec/lib/pwn/sast_spec.rb
|
|
2562
|
+
- spec/lib/pwn/sdr/decoder/adsb_spec.rb
|
|
2563
|
+
- spec/lib/pwn/sdr/decoder/apt_spec.rb
|
|
2502
2564
|
- spec/lib/pwn/sdr/decoder/base_spec.rb
|
|
2565
|
+
- spec/lib/pwn/sdr/decoder/bluetooth_spec.rb
|
|
2566
|
+
- spec/lib/pwn/sdr/decoder/dect_spec.rb
|
|
2503
2567
|
- spec/lib/pwn/sdr/decoder/flex_spec.rb
|
|
2568
|
+
- spec/lib/pwn/sdr/decoder/gps_spec.rb
|
|
2504
2569
|
- spec/lib/pwn/sdr/decoder/gsm_spec.rb
|
|
2570
|
+
- spec/lib/pwn/sdr/decoder/iridium_spec.rb
|
|
2571
|
+
- spec/lib/pwn/sdr/decoder/lora_spec.rb
|
|
2572
|
+
- spec/lib/pwn/sdr/decoder/lte_spec.rb
|
|
2573
|
+
- spec/lib/pwn/sdr/decoder/morse_spec.rb
|
|
2574
|
+
- spec/lib/pwn/sdr/decoder/p25_spec.rb
|
|
2575
|
+
- spec/lib/pwn/sdr/decoder/pager_spec.rb
|
|
2505
2576
|
- spec/lib/pwn/sdr/decoder/pocsag_spec.rb
|
|
2506
2577
|
- spec/lib/pwn/sdr/decoder/rds_spec.rb
|
|
2578
|
+
- spec/lib/pwn/sdr/decoder/rfid_spec.rb
|
|
2579
|
+
- spec/lib/pwn/sdr/decoder/rtl433_spec.rb
|
|
2580
|
+
- spec/lib/pwn/sdr/decoder/rtty_spec.rb
|
|
2581
|
+
- spec/lib/pwn/sdr/decoder/wifi_spec.rb
|
|
2582
|
+
- spec/lib/pwn/sdr/decoder/zigbee_spec.rb
|
|
2507
2583
|
- spec/lib/pwn/sdr/decoder_spec.rb
|
|
2508
2584
|
- spec/lib/pwn/sdr/flipper_zero_spec.rb
|
|
2509
2585
|
- spec/lib/pwn/sdr/frequency_allocation_spec.rb
|