pwn 0.5.506 → 0.5.507
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 +3 -3
- data/bin/pwn_gqrx_scanner +16 -16
- data/bin/pwn_serial_son_micro_sm132_rfid +11 -11
- data/lib/pwn/ai.rb +1 -1
- data/lib/pwn/aws.rb +1 -1
- data/lib/pwn/banner.rb +1 -1
- data/lib/pwn/blockchain.rb +1 -1
- data/lib/pwn/ffi.rb +1 -1
- data/lib/pwn/plugins/burp_suite.rb +2 -2
- data/lib/pwn/plugins.rb +1 -7
- data/lib/pwn/reports.rb +1 -1
- data/lib/pwn/sast.rb +2 -2
- data/lib/pwn/sdr/decoder/gsm.rb +200 -0
- data/lib/pwn/sdr/decoder.rb +19 -0
- data/lib/pwn/{plugins → sdr}/flipper_zero.rb +5 -5
- data/lib/pwn/sdr/frequency_allocation.rb +372 -0
- data/lib/pwn/sdr/gqrx.rb +656 -0
- data/lib/pwn/{plugins → sdr}/rfidler.rb +2 -2
- data/lib/pwn/{plugins → sdr}/son_micro_rfid.rb +12 -12
- data/lib/pwn/sdr.rb +21 -0
- data/lib/pwn/version.rb +1 -1
- data/lib/pwn/www.rb +1 -1
- data/lib/pwn.rb +1 -0
- data/spec/lib/pwn/sdr/decoder/gsm_spec.rb +15 -0
- data/spec/lib/pwn/sdr/decoder_spec.rb +10 -0
- data/spec/lib/pwn/{plugins → sdr}/flipper_zero_spec.rb +3 -3
- data/spec/lib/pwn/sdr/frequency_allocation_spec.rb +15 -0
- data/spec/lib/pwn/{plugins → sdr}/gqrx_spec.rb +3 -3
- data/spec/lib/pwn/{plugins → sdr}/rfidler_spec.rb +3 -3
- data/spec/lib/pwn/{plugins → sdr}/son_micro_rfid_spec.rb +3 -3
- data/spec/lib/pwn/sdr_spec.rb +10 -0
- data/third_party/pwn_rdoc.jsonl +3 -1
- metadata +21 -13
- data/lib/pwn/plugins/gqrx.rb +0 -757
|
@@ -4,7 +4,7 @@ require 'logger'
|
|
|
4
4
|
require 'timeout'
|
|
5
5
|
|
|
6
6
|
module PWN
|
|
7
|
-
module
|
|
7
|
+
module SDR
|
|
8
8
|
# This plugin is used for interacting with a SonMicro
|
|
9
9
|
# SM132 USB RFID Reader / Writer (PCB V3) && SM2330-USB Rev.0
|
|
10
10
|
module SonMicroRFID
|
|
@@ -14,7 +14,7 @@ module PWN
|
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
# Supported Method Parameters::
|
|
17
|
-
# son_micro_rfid_obj = PWN::
|
|
17
|
+
# son_micro_rfid_obj = PWN::SDR::SonMicroRFID.connect(
|
|
18
18
|
# block_dev: 'optional - serial block device path (defaults to /dev/ttyUSB0)',
|
|
19
19
|
# baud: 'optional - (defaults to 19_200)',
|
|
20
20
|
# data_bits: 'optional - (defaults to 8)',
|
|
@@ -40,7 +40,7 @@ module PWN
|
|
|
40
40
|
end
|
|
41
41
|
|
|
42
42
|
# Supported Method Parameters::
|
|
43
|
-
# cmds = PWN::
|
|
43
|
+
# cmds = PWN::SDR::SonMicroRFID.list_cmds
|
|
44
44
|
public_class_method def self.list_cmds
|
|
45
45
|
%i[
|
|
46
46
|
reset
|
|
@@ -69,7 +69,7 @@ module PWN
|
|
|
69
69
|
end
|
|
70
70
|
|
|
71
71
|
# Supported Method Parameters::
|
|
72
|
-
# params = PWN::
|
|
72
|
+
# params = PWN::SDR::SonMicroRFID.list_params(
|
|
73
73
|
# cmd: 'required - cmd returned from #list_cmds method'
|
|
74
74
|
# )
|
|
75
75
|
|
|
@@ -230,7 +230,7 @@ module PWN
|
|
|
230
230
|
end
|
|
231
231
|
|
|
232
232
|
# Supported Method Parameters::
|
|
233
|
-
# PWN::
|
|
233
|
+
# PWN::SDR::SonMicroRFID.exec(
|
|
234
234
|
# son_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method',
|
|
235
235
|
# cmd: 'required - cmd returned from #list_cmds method',
|
|
236
236
|
# params: 'optional - parameters for specific command returned from #list_params method'
|
|
@@ -334,7 +334,7 @@ module PWN
|
|
|
334
334
|
end
|
|
335
335
|
|
|
336
336
|
# Supported Method Parameters::
|
|
337
|
-
# PWN::
|
|
337
|
+
# PWN::SDR::SonMicroRFID.read_tag(
|
|
338
338
|
# son_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method',
|
|
339
339
|
# authn: 'optional - authentication flag (default: false)',
|
|
340
340
|
# key: 'optional - key for authentication (default: [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF])'
|
|
@@ -402,7 +402,7 @@ module PWN
|
|
|
402
402
|
end
|
|
403
403
|
|
|
404
404
|
# Supported Method Parameters::
|
|
405
|
-
# PWN::
|
|
405
|
+
# PWN::SDR::SonMicroRFID.write_tag(
|
|
406
406
|
# son_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method',
|
|
407
407
|
# rfid_data: 'required - RFID data to write (see #read_tag for structure)',
|
|
408
408
|
# authn: 'optional - authentication flag (default: false)',
|
|
@@ -504,7 +504,7 @@ module PWN
|
|
|
504
504
|
end
|
|
505
505
|
|
|
506
506
|
# Supported Method Parameters::
|
|
507
|
-
# PWN::
|
|
507
|
+
# PWN::SDR::SonMicroRFID.backup_tag(
|
|
508
508
|
# son_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'
|
|
509
509
|
# )
|
|
510
510
|
|
|
@@ -537,7 +537,7 @@ module PWN
|
|
|
537
537
|
end
|
|
538
538
|
|
|
539
539
|
# Supported Method Parameters::
|
|
540
|
-
# PWN::
|
|
540
|
+
# PWN::SDR::SonMicroRFID.clone_tag(
|
|
541
541
|
# son_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'
|
|
542
542
|
# )
|
|
543
543
|
|
|
@@ -564,7 +564,7 @@ module PWN
|
|
|
564
564
|
end
|
|
565
565
|
|
|
566
566
|
# Supported Method Parameters::
|
|
567
|
-
# PWN::
|
|
567
|
+
# PWN::SDR::SonMicroRFID.load_tag_from_file(
|
|
568
568
|
# son_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'
|
|
569
569
|
# )
|
|
570
570
|
|
|
@@ -602,7 +602,7 @@ module PWN
|
|
|
602
602
|
end
|
|
603
603
|
|
|
604
604
|
# Supported Method Parameters::
|
|
605
|
-
# PWN::
|
|
605
|
+
# PWN::SDR::SonMicroRFID.update_tag(
|
|
606
606
|
# son_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'
|
|
607
607
|
# )
|
|
608
608
|
|
|
@@ -677,7 +677,7 @@ module PWN
|
|
|
677
677
|
end
|
|
678
678
|
|
|
679
679
|
# Supported Method Parameters::
|
|
680
|
-
# PWN::
|
|
680
|
+
# PWN::SDR::SonMicroRFID.disconnect(
|
|
681
681
|
# son_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'
|
|
682
682
|
# )
|
|
683
683
|
|
data/lib/pwn/sdr.rb
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module PWN
|
|
4
|
+
# This file, using the autoload directive loads SDR modules
|
|
5
|
+
# into memory only when they're needed. For more information, see:
|
|
6
|
+
# http://www.rubyinside.com/ruby-techniques-revealed-autoload-1652.html
|
|
7
|
+
module SDR
|
|
8
|
+
autoload :Decoder, 'pwn/sdr/decoder'
|
|
9
|
+
autoload :FlipperZero, 'pwn/sdr/flipper_zero'
|
|
10
|
+
autoload :FrequencyAllocation, 'pwn/sdr/frequency_allocation'
|
|
11
|
+
autoload :GQRX, 'pwn/sdr/gqrx'
|
|
12
|
+
autoload :RFIDler, 'pwn/sdr/rfidler'
|
|
13
|
+
autoload :SonMicroRFID, 'pwn/sdr/son_micro_rfid'
|
|
14
|
+
|
|
15
|
+
# Display a List of Every PWN::AI Module
|
|
16
|
+
|
|
17
|
+
public_class_method def self.help
|
|
18
|
+
constants.sort
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
data/lib/pwn/version.rb
CHANGED
data/lib/pwn/www.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module PWN
|
|
4
|
-
# This file, using the autoload directive loads
|
|
4
|
+
# This file, using the autoload directive loads WWW modules
|
|
5
5
|
# into memory only when they're needed. For more information, see:
|
|
6
6
|
# http://www.rubyinside.com/ruby-techniques-revealed-autoload-1652.html
|
|
7
7
|
module WWW
|
data/lib/pwn.rb
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'spec_helper'
|
|
4
|
+
|
|
5
|
+
describe PWN::SDR::Decoder::GSM do
|
|
6
|
+
it 'should display information for authors' do
|
|
7
|
+
authors_response = PWN::SDR::Decoder::GSM
|
|
8
|
+
expect(authors_response).to respond_to :authors
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
it 'should display information for existing help method' do
|
|
12
|
+
help_response = PWN::SDR::Decoder::GSM
|
|
13
|
+
expect(help_response).to respond_to :help
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
require 'spec_helper'
|
|
4
4
|
|
|
5
|
-
describe PWN::
|
|
5
|
+
describe PWN::SDR::FlipperZero do
|
|
6
6
|
it 'should display information for authors' do
|
|
7
|
-
authors_response = PWN::
|
|
7
|
+
authors_response = PWN::SDR::FlipperZero
|
|
8
8
|
expect(authors_response).to respond_to :authors
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
it 'should display information for existing help method' do
|
|
12
|
-
help_response = PWN::
|
|
12
|
+
help_response = PWN::SDR::FlipperZero
|
|
13
13
|
expect(help_response).to respond_to :help
|
|
14
14
|
end
|
|
15
15
|
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'spec_helper'
|
|
4
|
+
|
|
5
|
+
describe PWN::SDR::FrequencyAllocation do
|
|
6
|
+
it 'should display information for authors' do
|
|
7
|
+
authors_response = PWN::SDR::FrequencyAllocation
|
|
8
|
+
expect(authors_response).to respond_to :authors
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
it 'should display information for existing help method' do
|
|
12
|
+
help_response = PWN::SDR::FrequencyAllocation
|
|
13
|
+
expect(help_response).to respond_to :help
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
require 'spec_helper'
|
|
4
4
|
|
|
5
|
-
describe PWN::
|
|
5
|
+
describe PWN::SDR::GQRX do
|
|
6
6
|
it 'should display information for authors' do
|
|
7
|
-
authors_response = PWN::
|
|
7
|
+
authors_response = PWN::SDR::GQRX
|
|
8
8
|
expect(authors_response).to respond_to :authors
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
it 'should display information for existing help method' do
|
|
12
|
-
help_response = PWN::
|
|
12
|
+
help_response = PWN::SDR::GQRX
|
|
13
13
|
expect(help_response).to respond_to :help
|
|
14
14
|
end
|
|
15
15
|
end
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
require 'spec_helper'
|
|
4
4
|
|
|
5
|
-
describe PWN::
|
|
5
|
+
describe PWN::SDR::RFIDler do
|
|
6
6
|
it 'should display information for authors' do
|
|
7
|
-
authors_response = PWN::
|
|
7
|
+
authors_response = PWN::SDR::RFIDler
|
|
8
8
|
expect(authors_response).to respond_to :authors
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
it 'should display information for existing help method' do
|
|
12
|
-
help_response = PWN::
|
|
12
|
+
help_response = PWN::SDR::RFIDler
|
|
13
13
|
expect(help_response).to respond_to :help
|
|
14
14
|
end
|
|
15
15
|
end
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
require 'spec_helper'
|
|
4
4
|
|
|
5
|
-
describe PWN::
|
|
5
|
+
describe PWN::SDR::SonMicroRFID do
|
|
6
6
|
it 'should display information for authors' do
|
|
7
|
-
authors_response = PWN::
|
|
7
|
+
authors_response = PWN::SDR::SonMicroRFID
|
|
8
8
|
expect(authors_response).to respond_to :authors
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
it 'should display information for existing help method' do
|
|
12
|
-
help_response = PWN::
|
|
12
|
+
help_response = PWN::SDR::SonMicroRFID
|
|
13
13
|
expect(help_response).to respond_to :help
|
|
14
14
|
end
|
|
15
15
|
end
|
data/third_party/pwn_rdoc.jsonl
CHANGED
|
@@ -567,10 +567,11 @@
|
|
|
567
567
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.get_repeater_tab Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.get_repeater_tab`: Supported Method Parameters\n\nrepeater_tab = PWN::Plugins::BurpSuite.get_repeater_tab(\n\nburp_obj: 'required - burp_obj returned by #start method',\nid: 'required - id of the repeater tab to get'\n\n)\n"}]}
|
|
568
568
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.get_scan_issues Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.get_scan_issues`: Supported Method Parameters\n\njson_scan_issues = PWN::Plugins::BurpSuite.get_scan_issues(\n\nburp_obj: 'required - burp_obj returned by #start method'\n\n)\n"}]}
|
|
569
569
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.get_sitemap Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.get_sitemap`: Supported Method Parameters\n\njson_sitemap = PWN::Plugins::BurpSuite.get_sitemap(\n\nburp_obj: 'required - burp_obj returned by #start method',\nkeyword: 'optional - keyword to filter sitemap entries (default: nil)',\nreturn_as: 'optional - :base64 or :har (defaults to :base64)'\n\n)\n"}]}
|
|
570
|
+
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.get_websocket_history Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.get_websocket_history`: Supported Method Parameters\n\njson_web_socket_history = PWN::Plugins::BurpSuite.get_websocket_history(\n\nburp_obj: 'required - burp_obj returned by #start method',\nkeyword: 'optional - keyword to filter websocket history entries (default: nil)'\n\n)\n"}]}
|
|
570
571
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.help Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.help`: "}]}
|
|
571
572
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.import_openapi_to_sitemap Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.import_openapi_to_sitemap`: "}]}
|
|
572
573
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.in_scope Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.in_scope`: Supported Method Parameters\n\nuri_in_scope = PWN::Plugins::BurpSuite.in_scope(\n\nburp_obj: 'required - burp_obj returned by #start method',\nuri: 'required - URI to determine if in scope'\n\n)\n"}]}
|
|
573
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.init_introspection_thread Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.init_introspection_thread`: Supported Method Parameters\n\nburp_obj = PWN::Plugins::BurpSuite.init_introspection_thread(\n\nburp_obj: 'required - burp_obj returned by #start method',\
|
|
574
|
+
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.init_introspection_thread Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.init_introspection_thread`: Supported Method Parameters\n\nburp_obj = PWN::Plugins::BurpSuite.init_introspection_thread(\n\nburp_obj: 'required - burp_obj returned by #start method',\ntype: 'required - type of history to introspect (:sitemap, :proxy_history, :websocket_history)'\n\n)\n"}]}
|
|
574
575
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.send_repeater_request Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.send_repeater_request`: Supported Method Parameters\n\nrepeater_resp = PWN::Plugins::BurpSuite.send_repeater_request(\n\nburp_obj: 'required - burp_obj returned by #start method',\nid: 'required - id of the repeater tab to send'\n\n)\n"}]}
|
|
575
576
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.spider Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.spider`: Supported Method Parameters\n\njson_spider = PWN::Plugins::BurpSuite.spider(\n\nburp_obj: 'required - burp_obj returned by #start method',\ntarget_url: 'required - target url to add to crawl / spider'\n\n)\n"}]}
|
|
576
577
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.start Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.start`: Supported Method Parameters\n\nburp_obj1 = PWN::Plugins::BurpSuite.start(\n\nburp_jar_path: 'optional - path of burp suite pro jar file (defaults to /opt/burpsuite/burpsuite_pro.jar)',\nheadless: 'optional - run burp headless if set to true',\nbrowser_type: 'optional - defaults to :firefox. See PWN::Plugins::TransparentBrowser.help for a list of types',\nburp_ip: 'optional - IP address for the Burp proxy (defaults to 127.0.0.1)',\nburp_port: 'optional - port for the Burp proxy (defaults to a random unused port)',\npwn_burp_ip: 'optional - IP address for the PWN Burp API (defaults to 127.0.0.1)',\npwn_burp_port: 'optional - port for the PWN Burp API (defaults to a random unused port)'\n\n)\n"}]}
|
|
@@ -580,6 +581,7 @@
|
|
|
580
581
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.update_proxy_listener Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.update_proxy_listener`: Supported Method Parameters\n\njson_proxy_listener = PWN::Plugins::BurpSuite.update_proxy_listener(\n\nburp_obj: 'required - burp_obj returned by #start method',\nid: 'optional - ID of the proxy listener (defaults to 0)',\nbindAddress: 'optional - bind address for the proxy listener (defaults to value of existing listener)',\nport: 'optional - port for the proxy listener (defaults to value of existing listener)',\nenabled: 'optional - enable or disable the listener (defaults to value of existing listener)'\n\n)\n"}]}
|
|
581
582
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.update_repeater_tab Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.update_repeater_tab`: Supported Method Parameters\n\nrepeater_obj = PWN::Plugins::BurpSuite.update_repeater_tab(\n\nburp_obj: 'required - burp_obj returned by #start method',\nid: 'required - id of the repeater tab to update',\nname: 'required - name of the repeater tab (max 30 characters)',\nrequest: 'required - base64 encoded HTTP request string'\n\n)\n"}]}
|
|
582
583
|
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.update_sitemap Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.update_sitemap`: Supported Method Parameters\n\njson_sitemap = PWN::Plugins::BurpSuite.update_sitemap(\n\nburp_obj: 'required - burp_obj returned by #start method',\nentry: 'required - hash of the sitemap entry to update'\n\n)\n"}]}
|
|
584
|
+
{"messages":[{"role":"user","content":"PWN::Plugins::BurpSuite.update_websocket_history Usage"},{"role":"assistant","content":"`PWN::Plugins::BurpSuite.update_websocket_history`: Supported Method Parameters\n\njson_proxy_history = PWN::Plugins::BurpSuite.update_proxy_history(\n\nburp_obj: 'required - burp_obj returned by #start method',\nentry: 'required - hash of the websocket history entry to update'\n\n)\n"}]}
|
|
583
585
|
{"messages":[{"role":"user","content":"PWN::Plugins::BusPirate.authors Usage"},{"role":"assistant","content":"`PWN::Plugins::BusPirate.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
584
586
|
{"messages":[{"role":"user","content":"PWN::Plugins::BusPirate.connect Usage"},{"role":"assistant","content":"`PWN::Plugins::BusPirate.connect`: Supported Method Parameters\n\nbus_pirate_obj = PWN::Plugins::BusPirate.connect(\n\nblock_dev: 'optional serial block device path (defaults to /dev/ttyUSB0)',\nbaud: 'optional (defaults to 9600)',\ndata_bits: 'optional (defaults to 8)',\nstop_bits: 'optional (defaults to 1)',\nparity: 'optional (defaults to SerialPort::NONE)',\nflow_control: 'optional (defaults to SerialPort::HARD) SerialPort::NONE|SerialPort::SOFT|SerialPort::HARD'\n\n)\n"}]}
|
|
585
587
|
{"messages":[{"role":"user","content":"PWN::Plugins::BusPirate.connect_via_screen Usage"},{"role":"assistant","content":"`PWN::Plugins::BusPirate.connect_via_screen`: Supported Method Parameters\n\nPWN::Plugins::BusPirate.connect_via_screen(\n\nblock_dev: 'optional - serial block device path (defaults to /dev/ttyUSB0)'\n\n)\n"}]}
|
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.507
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- 0day Inc.
|
|
@@ -379,14 +379,14 @@ dependencies:
|
|
|
379
379
|
requirements:
|
|
380
380
|
- - '='
|
|
381
381
|
- !ruby/object:Gem::Version
|
|
382
|
-
version: 4.
|
|
382
|
+
version: 4.4.2
|
|
383
383
|
type: :runtime
|
|
384
384
|
prerelease: false
|
|
385
385
|
version_requirements: !ruby/object:Gem::Requirement
|
|
386
386
|
requirements:
|
|
387
387
|
- - '='
|
|
388
388
|
- !ruby/object:Gem::Version
|
|
389
|
-
version: 4.
|
|
389
|
+
version: 4.4.2
|
|
390
390
|
- !ruby/object:Gem::Dependency
|
|
391
391
|
name: ipaddress
|
|
392
392
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1107,14 +1107,14 @@ dependencies:
|
|
|
1107
1107
|
requirements:
|
|
1108
1108
|
- - '='
|
|
1109
1109
|
- !ruby/object:Gem::Version
|
|
1110
|
-
version: 3.
|
|
1110
|
+
version: 3.1.0
|
|
1111
1111
|
type: :runtime
|
|
1112
1112
|
prerelease: false
|
|
1113
1113
|
version_requirements: !ruby/object:Gem::Requirement
|
|
1114
1114
|
requirements:
|
|
1115
1115
|
- - '='
|
|
1116
1116
|
- !ruby/object:Gem::Version
|
|
1117
|
-
version: 3.
|
|
1117
|
+
version: 3.1.0
|
|
1118
1118
|
- !ruby/object:Gem::Dependency
|
|
1119
1119
|
name: socksify
|
|
1120
1120
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1897,11 +1897,9 @@ files:
|
|
|
1897
1897
|
- lib/pwn/plugins/detect_os.rb
|
|
1898
1898
|
- lib/pwn/plugins/ein.rb
|
|
1899
1899
|
- lib/pwn/plugins/file_fu.rb
|
|
1900
|
-
- lib/pwn/plugins/flipper_zero.rb
|
|
1901
1900
|
- lib/pwn/plugins/fuzz.rb
|
|
1902
1901
|
- lib/pwn/plugins/git.rb
|
|
1903
1902
|
- lib/pwn/plugins/github.rb
|
|
1904
|
-
- lib/pwn/plugins/gqrx.rb
|
|
1905
1903
|
- lib/pwn/plugins/hacker_one.rb
|
|
1906
1904
|
- lib/pwn/plugins/hunter.rb
|
|
1907
1905
|
- lib/pwn/plugins/ip_info.rb
|
|
@@ -1928,13 +1926,11 @@ files:
|
|
|
1928
1926
|
- lib/pwn/plugins/pwn_logger.rb
|
|
1929
1927
|
- lib/pwn/plugins/rabbit_mq.rb
|
|
1930
1928
|
- lib/pwn/plugins/repl.rb
|
|
1931
|
-
- lib/pwn/plugins/rfidler.rb
|
|
1932
1929
|
- lib/pwn/plugins/scannable_codes.rb
|
|
1933
1930
|
- lib/pwn/plugins/serial.rb
|
|
1934
1931
|
- lib/pwn/plugins/shodan.rb
|
|
1935
1932
|
- lib/pwn/plugins/slack_client.rb
|
|
1936
1933
|
- lib/pwn/plugins/sock.rb
|
|
1937
|
-
- lib/pwn/plugins/son_micro_rfid.rb
|
|
1938
1934
|
- lib/pwn/plugins/spider.rb
|
|
1939
1935
|
- lib/pwn/plugins/ssn.rb
|
|
1940
1936
|
- lib/pwn/plugins/thread_pool.rb
|
|
@@ -2004,6 +2000,14 @@ files:
|
|
|
2004
2000
|
- lib/pwn/sast/use_after_free.rb
|
|
2005
2001
|
- lib/pwn/sast/version.rb
|
|
2006
2002
|
- lib/pwn/sast/window_location_hash.rb
|
|
2003
|
+
- lib/pwn/sdr.rb
|
|
2004
|
+
- lib/pwn/sdr/decoder.rb
|
|
2005
|
+
- lib/pwn/sdr/decoder/gsm.rb
|
|
2006
|
+
- lib/pwn/sdr/flipper_zero.rb
|
|
2007
|
+
- lib/pwn/sdr/frequency_allocation.rb
|
|
2008
|
+
- lib/pwn/sdr/gqrx.rb
|
|
2009
|
+
- lib/pwn/sdr/rfidler.rb
|
|
2010
|
+
- lib/pwn/sdr/son_micro_rfid.rb
|
|
2007
2011
|
- lib/pwn/version.rb
|
|
2008
2012
|
- lib/pwn/www.rb
|
|
2009
2013
|
- lib/pwn/www/app_cobalt_io.rb
|
|
@@ -2250,11 +2254,9 @@ files:
|
|
|
2250
2254
|
- spec/lib/pwn/plugins/detect_os_spec.rb
|
|
2251
2255
|
- spec/lib/pwn/plugins/ein_spec.rb
|
|
2252
2256
|
- spec/lib/pwn/plugins/file_fu_spec.rb
|
|
2253
|
-
- spec/lib/pwn/plugins/flipper_zero_spec.rb
|
|
2254
2257
|
- spec/lib/pwn/plugins/fuzz_spec.rb
|
|
2255
2258
|
- spec/lib/pwn/plugins/git_spec.rb
|
|
2256
2259
|
- spec/lib/pwn/plugins/github_spec.rb
|
|
2257
|
-
- spec/lib/pwn/plugins/gqrx_spec.rb
|
|
2258
2260
|
- spec/lib/pwn/plugins/hacker_one_spec.rb
|
|
2259
2261
|
- spec/lib/pwn/plugins/hunter_spec.rb
|
|
2260
2262
|
- spec/lib/pwn/plugins/ip_info_spec.rb
|
|
@@ -2281,13 +2283,11 @@ files:
|
|
|
2281
2283
|
- spec/lib/pwn/plugins/pwn_logger_spec.rb
|
|
2282
2284
|
- spec/lib/pwn/plugins/rabbit_mq_spec.rb
|
|
2283
2285
|
- spec/lib/pwn/plugins/repl_spec.rb
|
|
2284
|
-
- spec/lib/pwn/plugins/rfidler_spec.rb
|
|
2285
2286
|
- spec/lib/pwn/plugins/scannable_codes_spec.rb
|
|
2286
2287
|
- spec/lib/pwn/plugins/serial_spec.rb
|
|
2287
2288
|
- spec/lib/pwn/plugins/shodan_spec.rb
|
|
2288
2289
|
- spec/lib/pwn/plugins/slack_client_spec.rb
|
|
2289
2290
|
- spec/lib/pwn/plugins/sock_spec.rb
|
|
2290
|
-
- spec/lib/pwn/plugins/son_micro_rfid_spec.rb
|
|
2291
2291
|
- spec/lib/pwn/plugins/spider_spec.rb
|
|
2292
2292
|
- spec/lib/pwn/plugins/ssn_spec.rb
|
|
2293
2293
|
- spec/lib/pwn/plugins/thread_pool_spec.rb
|
|
@@ -2358,6 +2358,14 @@ files:
|
|
|
2358
2358
|
- spec/lib/pwn/sast/version_spec.rb
|
|
2359
2359
|
- spec/lib/pwn/sast/window_location_hash_spec.rb
|
|
2360
2360
|
- spec/lib/pwn/sast_spec.rb
|
|
2361
|
+
- spec/lib/pwn/sdr/decoder/gsm_spec.rb
|
|
2362
|
+
- spec/lib/pwn/sdr/decoder_spec.rb
|
|
2363
|
+
- spec/lib/pwn/sdr/flipper_zero_spec.rb
|
|
2364
|
+
- spec/lib/pwn/sdr/frequency_allocation_spec.rb
|
|
2365
|
+
- spec/lib/pwn/sdr/gqrx_spec.rb
|
|
2366
|
+
- spec/lib/pwn/sdr/rfidler_spec.rb
|
|
2367
|
+
- spec/lib/pwn/sdr/son_micro_rfid_spec.rb
|
|
2368
|
+
- spec/lib/pwn/sdr_spec.rb
|
|
2361
2369
|
- spec/lib/pwn/version_spec.rb
|
|
2362
2370
|
- spec/lib/pwn/www/app_cobalt_io_spec.rb
|
|
2363
2371
|
- spec/lib/pwn/www/bing_spec.rb
|