pwn 0.5.508 → 0.5.510
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/.rubocop.yml +1 -1
- data/.rubocop_todo.yml +12 -12
- data/.ruby-version +1 -1
- data/Gemfile +9 -9
- data/README.md +5 -5
- data/find_latest_gem_versions_per_Gemfile.sh +1 -1
- data/lib/pwn/sdr/decoder/gsm.rb +31 -0
- data/lib/pwn/sdr/frequency_allocation.rb +316 -30
- data/lib/pwn/version.rb +1 -1
- data/packer/provisioners/geckodriver.sh +1 -1
- data/packer/provisioners/pwn.sh +1 -1
- data/packer/provisioners/rvm.sh +1 -0
- data/third_party/pwn_rdoc.jsonl +43 -33
- metadata +22 -22
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d58d781b8c20f486edb8e75e754abf3ecef32c5452e37b95db9cdc42d99b00c5
|
|
4
|
+
data.tar.gz: 3ad4a359bc29b32b0075ab742251049f29ee7fc0e71404205cb799fd3674703b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38e23042f38a7f1774e67f1bda23b3e77a9ff1d2242aee7c59d47957cddff06ec831d3fee6fec16681795bab6e450fb178bbb705e1d44a3624d1c8260d55625b
|
|
7
|
+
data.tar.gz: 1edb0154984ee110ef2b4d87eddf5f007a98d7977f50cb33fbb1b735d79fc64725ba75bfff288822bbdd723bf893ba25f3022b9aff1094ec4a068dd953cae2ef
|
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on 2025-
|
|
3
|
+
# on 2025-11-24 21:22:25 UTC using RuboCop version 1.81.7.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
|
@@ -13,7 +13,7 @@ Layout/TrailingWhitespace:
|
|
|
13
13
|
Exclude:
|
|
14
14
|
- 'lib/pwn/banner/radare2_ai.rb'
|
|
15
15
|
|
|
16
|
-
# Offense count:
|
|
16
|
+
# Offense count: 11
|
|
17
17
|
# Configuration parameters: AllowedMethods, AllowedPatterns.
|
|
18
18
|
Lint/NestedMethodDefinition:
|
|
19
19
|
Exclude:
|
|
@@ -30,7 +30,7 @@ Lint/RedundantTypeConversion:
|
|
|
30
30
|
- 'lib/pwn/plugins/jenkins.rb'
|
|
31
31
|
- 'lib/pwn/plugins/repl.rb'
|
|
32
32
|
|
|
33
|
-
# Offense count:
|
|
33
|
+
# Offense count: 294
|
|
34
34
|
# This cop supports safe autocorrection (--autocorrect).
|
|
35
35
|
Lint/UselessAssignment:
|
|
36
36
|
Enabled: false
|
|
@@ -60,13 +60,6 @@ Metrics/MethodLength:
|
|
|
60
60
|
Exclude:
|
|
61
61
|
- 'lib/pwn/banner/code_cave.rb'
|
|
62
62
|
|
|
63
|
-
# Offense count: 2
|
|
64
|
-
# Configuration parameters: CountComments, Max, CountAsOne.
|
|
65
|
-
Metrics/ModuleLength:
|
|
66
|
-
Exclude:
|
|
67
|
-
- 'lib/pwn/plugins/android.rb'
|
|
68
|
-
- 'lib/pwn/plugins/transparent_browser.rb'
|
|
69
|
-
|
|
70
63
|
# Offense count: 7
|
|
71
64
|
Naming/AccessorMethodName:
|
|
72
65
|
Exclude:
|
|
@@ -77,6 +70,14 @@ Naming/AccessorMethodName:
|
|
|
77
70
|
- 'lib/pwn/plugins/jira_data_center.rb'
|
|
78
71
|
- 'lib/pwn/plugins/vin.rb'
|
|
79
72
|
|
|
73
|
+
# Offense count: 2
|
|
74
|
+
# Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers, AllowedPatterns.
|
|
75
|
+
# SupportedStyles: snake_case, normalcase, non_integer
|
|
76
|
+
# AllowedIdentifiers: TLS1_1, TLS1_2, capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339, x86_64
|
|
77
|
+
Naming/VariableNumber:
|
|
78
|
+
Exclude:
|
|
79
|
+
- 'lib/pwn/sdr/frequency_allocation.rb'
|
|
80
|
+
|
|
80
81
|
# Offense count: 1
|
|
81
82
|
# This cop supports safe autocorrection (--autocorrect).
|
|
82
83
|
# Configuration parameters: EnforcedStyle.
|
|
@@ -89,7 +90,7 @@ Style/Alias:
|
|
|
89
90
|
Style/ClassVars:
|
|
90
91
|
Enabled: false
|
|
91
92
|
|
|
92
|
-
# Offense count:
|
|
93
|
+
# Offense count: 273
|
|
93
94
|
# This cop supports safe autocorrection (--autocorrect).
|
|
94
95
|
# Configuration parameters: EnforcedStyle, SingleLineConditionsOnly, IncludeTernaryExpressions.
|
|
95
96
|
# SupportedStyles: assign_to_condition, assign_inside_condition
|
|
@@ -168,7 +169,6 @@ Style/SlicingWithRange:
|
|
|
168
169
|
- 'lib/pwn/ai/ollama.rb'
|
|
169
170
|
- 'lib/pwn/ai/open_ai.rb'
|
|
170
171
|
- 'lib/pwn/aws/iam.rb'
|
|
171
|
-
- 'lib/pwn/plugins/gqrx.rb'
|
|
172
172
|
- 'lib/pwn/plugins/irc.rb'
|
|
173
173
|
- 'lib/pwn/plugins/open_api.rb'
|
|
174
174
|
- 'lib/pwn/plugins/repl.rb'
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.4.
|
|
1
|
+
3.4.7
|
data/Gemfile
CHANGED
|
@@ -20,8 +20,8 @@ gem 'base32', '0.3.4'
|
|
|
20
20
|
gem 'bitcoin-ruby', '0.0.20'
|
|
21
21
|
gem 'brakeman', '7.1.1'
|
|
22
22
|
gem 'bson', '5.2.0'
|
|
23
|
-
gem 'bundler', '>=
|
|
24
|
-
gem 'bundler-audit', '0.9.
|
|
23
|
+
gem 'bundler', '>=4.0.0'
|
|
24
|
+
gem 'bundler-audit', '>=0.9.3'
|
|
25
25
|
gem 'bunny', '2.24.0'
|
|
26
26
|
gem 'colorize', '1.1.0'
|
|
27
27
|
gem 'credit_card_validations', '7.0.0'
|
|
@@ -29,7 +29,7 @@ gem 'curses', '1.5.3'
|
|
|
29
29
|
gem 'diffy', '3.4.4'
|
|
30
30
|
gem 'eventmachine', '1.2.7'
|
|
31
31
|
gem 'executable-hooks', '1.7.1'
|
|
32
|
-
gem 'faker', '3.5.
|
|
32
|
+
gem 'faker', '3.5.3'
|
|
33
33
|
gem 'faye-websocket', '0.12.0'
|
|
34
34
|
gem 'ffi', '1.17.2'
|
|
35
35
|
# gem 'fftw3', '0.3'
|
|
@@ -49,9 +49,9 @@ gem 'jwt', '3.1.2'
|
|
|
49
49
|
gem 'libusb', '0.7.2'
|
|
50
50
|
gem 'luhn', '3.0.0'
|
|
51
51
|
gem 'mail', '2.9.0'
|
|
52
|
-
gem 'meshtastic', '0.0.
|
|
52
|
+
gem 'meshtastic', '0.0.147'
|
|
53
53
|
gem 'metasm', '1.0.5'
|
|
54
|
-
gem 'mongo', '2.
|
|
54
|
+
gem 'mongo', '2.22.0'
|
|
55
55
|
gem 'msfrpc-client', '1.1.2'
|
|
56
56
|
gem 'netaddr', '2.0.6'
|
|
57
57
|
gem 'net-ldap', '0.20.0'
|
|
@@ -73,11 +73,11 @@ gem 'pry-doc', '1.6.0'
|
|
|
73
73
|
gem 'rake', '13.3.1'
|
|
74
74
|
gem 'rb-readline', '0.5.5'
|
|
75
75
|
gem 'rbvmomi2', '3.8.0'
|
|
76
|
-
gem 'rdoc', '6.
|
|
76
|
+
gem 'rdoc', '6.16.1'
|
|
77
77
|
gem 'rest-client', '2.1.0'
|
|
78
78
|
gem 'rex', '2.0.13'
|
|
79
79
|
gem 'rmagick', '6.1.4'
|
|
80
|
-
gem 'rqrcode', '3.1.
|
|
80
|
+
gem 'rqrcode', '3.1.1'
|
|
81
81
|
gem 'rspec', '3.13.2'
|
|
82
82
|
gem 'rtesseract', '3.1.4'
|
|
83
83
|
gem 'rubocop', '1.81.7'
|
|
@@ -93,14 +93,14 @@ gem 'selenium-webdriver', '4.38.0'
|
|
|
93
93
|
gem 'slack-ruby-client', '3.1.0'
|
|
94
94
|
gem 'socksify', '1.8.1'
|
|
95
95
|
gem 'spreadsheet', '1.3.4'
|
|
96
|
-
gem 'sqlite3', '2.8.
|
|
96
|
+
gem 'sqlite3', '2.8.1'
|
|
97
97
|
gem 'thin', '2.0.1'
|
|
98
98
|
gem 'tty-prompt', '0.23.1'
|
|
99
99
|
gem 'tty-spinner', '0.9.3'
|
|
100
100
|
gem 'uart', '1.0.0'
|
|
101
101
|
gem 'watir', '7.3.0'
|
|
102
102
|
gem 'waveform', '0.1.3'
|
|
103
|
-
gem 'webrick', '1.9.
|
|
103
|
+
gem 'webrick', '1.9.2'
|
|
104
104
|
gem 'whois', '6.0.3'
|
|
105
105
|
gem 'whois-parser', '2.0.0'
|
|
106
106
|
gem 'wicked_pdf', '2.8.2'
|
data/README.md
CHANGED
|
@@ -37,7 +37,7 @@ $ cd /opt/pwn
|
|
|
37
37
|
$ ./install.sh
|
|
38
38
|
$ ./install.sh ruby-gem
|
|
39
39
|
$ pwn
|
|
40
|
-
pwn[v0.5.
|
|
40
|
+
pwn[v0.5.510]:001 >>> PWN.help
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
[](https://youtu.be/G7iLUY4FzsI)
|
|
@@ -48,21 +48,21 @@ pwn[v0.5.508]:001 >>> PWN.help
|
|
|
48
48
|
It's wise to update pwn often as numerous versions are released/week:
|
|
49
49
|
```
|
|
50
50
|
$ rvm list gemsets
|
|
51
|
-
$ rvm use ruby-3.4.
|
|
51
|
+
$ rvm use ruby-3.4.7@pwn
|
|
52
52
|
$ gem uninstall --all --executables pwn
|
|
53
53
|
$ gem install --verbose pwn
|
|
54
54
|
$ pwn
|
|
55
|
-
pwn[v0.5.
|
|
55
|
+
pwn[v0.5.510]:001 >>> PWN.help
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
If you're using a multi-user install of RVM do:
|
|
59
59
|
```
|
|
60
60
|
$ rvm list gemsets
|
|
61
|
-
$ rvm use ruby-3.4.
|
|
61
|
+
$ rvm use ruby-3.4.7@pwn
|
|
62
62
|
$ rvmsudo gem uninstall --all --executables pwn
|
|
63
63
|
$ rvmsudo gem install --verbose pwn
|
|
64
64
|
$ pwn
|
|
65
|
-
pwn[v0.5.
|
|
65
|
+
pwn[v0.5.510]:001 >>> PWN.help
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
PWN periodically upgrades to the latest version of Ruby which is reflected in `/opt/pwn/.ruby-version`. The easiest way to upgrade to the latest version of Ruby from a previous PWN installation is to run the following script:
|
|
@@ -8,7 +8,7 @@ cat Gemfile | awk '{print $2}' | grep -E "^'.+$" | grep -v -e rubygems.org | whi
|
|
|
8
8
|
echo "${this_gem} => $latest_version"
|
|
9
9
|
if [[ $this_gem == 'activesupport' ]]; then
|
|
10
10
|
sed -i "s/^gem '${this_gem}'.*$/gem '${this_gem}', '<${latest_version}'/g" Gemfile
|
|
11
|
-
elif [[ $this_gem == 'bundler' ]]; then
|
|
11
|
+
elif [[ $this_gem == 'bundler' || $this_gem == 'bundler-audit' ]]; then
|
|
12
12
|
sed -i "s/^gem '${this_gem}'.*$/gem '${this_gem}', '>=${latest_version}'/g" Gemfile
|
|
13
13
|
elif [[ $this_gem == 'json' ]]; then
|
|
14
14
|
# Shakes fist at selenium-webdriver
|
data/lib/pwn/sdr/decoder/gsm.rb
CHANGED
|
@@ -194,6 +194,37 @@ module PWN
|
|
|
194
194
|
puts "Cleaned up recording: #{record_path}"
|
|
195
195
|
end
|
|
196
196
|
end
|
|
197
|
+
|
|
198
|
+
# Author(s):: 0day Inc. <support@0dayinc.com>
|
|
199
|
+
|
|
200
|
+
public_class_method def self.authors
|
|
201
|
+
"AUTHOR(S):
|
|
202
|
+
0day Inc. <support@0dayinc.com>
|
|
203
|
+
"
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
# Display Usage for this Module
|
|
207
|
+
|
|
208
|
+
public_class_method def self.help
|
|
209
|
+
puts "USAGE:
|
|
210
|
+
gsm_decoder_thread = PWN::SDR::Decoder::GSM.start(
|
|
211
|
+
gqrx_obj: {
|
|
212
|
+
record_path: 'path/to/record.wav',
|
|
213
|
+
frequency: 935_000_000, # Frequency in Hz
|
|
214
|
+
bandwidth: 200_000, # Sample rate in Hz
|
|
215
|
+
gqrx_sock: gqrx_socket_object
|
|
216
|
+
}
|
|
217
|
+
)
|
|
218
|
+
|
|
219
|
+
# To stop the decoder thread:
|
|
220
|
+
PWN::SDR::Decoder::GSM.stop(
|
|
221
|
+
thread: gsm_decoder_thread,
|
|
222
|
+
gqrx_obj: gqrx_object_used_to_start_decoder
|
|
223
|
+
)
|
|
224
|
+
|
|
225
|
+
#{self}.authors
|
|
226
|
+
"
|
|
227
|
+
end
|
|
197
228
|
end
|
|
198
229
|
end
|
|
199
230
|
end
|
|
@@ -1,22 +1,12 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require 'open3'
|
|
4
|
-
require 'json'
|
|
5
|
-
require 'fileutils'
|
|
6
|
-
|
|
7
3
|
module PWN
|
|
8
4
|
module SDR
|
|
9
5
|
# This plugin interacts with the remote control interface of GQRX.
|
|
10
6
|
module FrequencyAllocation
|
|
11
|
-
# Supported Method Parameters::
|
|
12
|
-
# profiles = PWN::SDR::FrequencyAllocation.profiles
|
|
13
7
|
# Supported Method Parameters::
|
|
14
8
|
# profiles = PWN::SDR::FrequencyAllocation.profiles
|
|
15
9
|
public_class_method def self.profiles
|
|
16
|
-
# TODO: Wifi5 / Wifi6 profiles,
|
|
17
|
-
# migrate to a YAML file, and add
|
|
18
|
-
# rSpec test to ensure all profiles
|
|
19
|
-
# contain consistent key-value pairs
|
|
20
10
|
{
|
|
21
11
|
ads_b978: {
|
|
22
12
|
start_freq: '978.000.000',
|
|
@@ -34,12 +24,76 @@ module PWN
|
|
|
34
24
|
precision: 5,
|
|
35
25
|
overlap_protection: true
|
|
36
26
|
},
|
|
37
|
-
|
|
38
|
-
start_freq: '
|
|
39
|
-
target_freq: '
|
|
40
|
-
demodulator_mode: '
|
|
41
|
-
bandwidth:
|
|
42
|
-
precision:
|
|
27
|
+
aeronautical_lf: {
|
|
28
|
+
start_freq: '200.000',
|
|
29
|
+
target_freq: '415.000',
|
|
30
|
+
demodulator_mode: 'AM',
|
|
31
|
+
bandwidth: 10_000,
|
|
32
|
+
precision: 3,
|
|
33
|
+
overlap_protection: true
|
|
34
|
+
},
|
|
35
|
+
aeronautical_mf: {
|
|
36
|
+
start_freq: '285.000',
|
|
37
|
+
target_freq: '325.000',
|
|
38
|
+
demodulator_mode: 'AM',
|
|
39
|
+
bandwidth: 10_000,
|
|
40
|
+
precision: 3,
|
|
41
|
+
overlap_protection: true
|
|
42
|
+
},
|
|
43
|
+
amateur_1_25m: {
|
|
44
|
+
start_freq: '222.000.000',
|
|
45
|
+
target_freq: '225.000.000',
|
|
46
|
+
demodulator_mode: 'FM',
|
|
47
|
+
bandwidth: 25_000,
|
|
48
|
+
precision: 4,
|
|
49
|
+
overlap_protection: true
|
|
50
|
+
},
|
|
51
|
+
amateur_160m: {
|
|
52
|
+
start_freq: '1.800.000',
|
|
53
|
+
target_freq: '2.000.000',
|
|
54
|
+
demodulator_mode: 'LSB',
|
|
55
|
+
bandwidth: 2_700,
|
|
56
|
+
precision: 6,
|
|
57
|
+
overlap_protection: true
|
|
58
|
+
},
|
|
59
|
+
amateur_2m: {
|
|
60
|
+
start_freq: '144.000.000',
|
|
61
|
+
target_freq: '148.000.000',
|
|
62
|
+
demodulator_mode: 'FM',
|
|
63
|
+
bandwidth: 15_000,
|
|
64
|
+
precision: 4,
|
|
65
|
+
overlap_protection: true
|
|
66
|
+
},
|
|
67
|
+
amateur_30m: {
|
|
68
|
+
start_freq: '10.100.000',
|
|
69
|
+
target_freq: '10.150.000',
|
|
70
|
+
demodulator_mode: 'CW',
|
|
71
|
+
bandwidth: 150,
|
|
72
|
+
precision: 3,
|
|
73
|
+
overlap_protection: true
|
|
74
|
+
},
|
|
75
|
+
amateur_60m: {
|
|
76
|
+
start_freq: '5.351.500',
|
|
77
|
+
target_freq: '5.366.500',
|
|
78
|
+
demodulator_mode: 'USB',
|
|
79
|
+
bandwidth: 2_700,
|
|
80
|
+
precision: 6,
|
|
81
|
+
overlap_protection: true
|
|
82
|
+
},
|
|
83
|
+
amateur_6m: {
|
|
84
|
+
start_freq: '50.000.000',
|
|
85
|
+
target_freq: '54.000.000',
|
|
86
|
+
demodulator_mode: 'USB',
|
|
87
|
+
bandwidth: 2_700,
|
|
88
|
+
precision: 6,
|
|
89
|
+
overlap_protection: true
|
|
90
|
+
},
|
|
91
|
+
amateur_70cm: {
|
|
92
|
+
start_freq: '420.000.000',
|
|
93
|
+
target_freq: '450.000.000',
|
|
94
|
+
demodulator_mode: 'FM',
|
|
95
|
+
bandwidth: 25_000,
|
|
96
|
+
precision: 4,
|
|
43
97
|
overlap_protection: true
|
|
44
98
|
},
|
|
45
99
|
analog_tv_uhf: {
|
|
@@ -50,6 +104,14 @@ module PWN
|
|
|
50
104
|
precision: 5,
|
|
51
105
|
overlap_protection: true
|
|
52
106
|
},
|
|
107
|
+
analog_tv_vhf: {
|
|
108
|
+
start_freq: '54.000.000',
|
|
109
|
+
target_freq: '216.000.000',
|
|
110
|
+
demodulator_mode: 'WFM',
|
|
111
|
+
bandwidth: 600_000,
|
|
112
|
+
precision: 5,
|
|
113
|
+
overlap_protection: true
|
|
114
|
+
},
|
|
53
115
|
am_radio: {
|
|
54
116
|
start_freq: '540.000',
|
|
55
117
|
target_freq: '1.700.000',
|
|
@@ -58,6 +120,30 @@ module PWN
|
|
|
58
120
|
precision: 4,
|
|
59
121
|
overlap_protection: true
|
|
60
122
|
},
|
|
123
|
+
aviation_nav: {
|
|
124
|
+
start_freq: '108.000.000',
|
|
125
|
+
target_freq: '118.000.000',
|
|
126
|
+
demodulator_mode: 'AM',
|
|
127
|
+
bandwidth: 25_000,
|
|
128
|
+
precision: 4,
|
|
129
|
+
overlap_protection: true
|
|
130
|
+
},
|
|
131
|
+
aviation_vhf: {
|
|
132
|
+
start_freq: '118.000.000',
|
|
133
|
+
target_freq: '137.000.000',
|
|
134
|
+
demodulator_mode: 'AM',
|
|
135
|
+
bandwidth: 25_000,
|
|
136
|
+
precision: 4,
|
|
137
|
+
overlap_protection: true
|
|
138
|
+
},
|
|
139
|
+
aws: {
|
|
140
|
+
start_freq: '1.710.000.000',
|
|
141
|
+
target_freq: '1.755.000.000',
|
|
142
|
+
demodulator_mode: 'RAW',
|
|
143
|
+
bandwidth: 200_000,
|
|
144
|
+
precision: 6,
|
|
145
|
+
overlap_protection: false
|
|
146
|
+
},
|
|
61
147
|
bluetooth: {
|
|
62
148
|
start_freq: '2.402.000.000',
|
|
63
149
|
target_freq: '2.480.000.000',
|
|
@@ -66,6 +152,14 @@ module PWN
|
|
|
66
152
|
precision: 5,
|
|
67
153
|
overlap_protection: true
|
|
68
154
|
},
|
|
155
|
+
cb: {
|
|
156
|
+
start_freq: '26.965.000',
|
|
157
|
+
target_freq: '27.405.000',
|
|
158
|
+
demodulator_mode: 'AM',
|
|
159
|
+
bandwidth: 10_000,
|
|
160
|
+
precision: 3,
|
|
161
|
+
overlap_protection: true
|
|
162
|
+
},
|
|
69
163
|
cdma: {
|
|
70
164
|
start_freq: '824.000.000',
|
|
71
165
|
target_freq: '849.000.000',
|
|
@@ -98,6 +192,14 @@ module PWN
|
|
|
98
192
|
precision: 3,
|
|
99
193
|
overlap_protection: true
|
|
100
194
|
},
|
|
195
|
+
dect: {
|
|
196
|
+
start_freq: '1.880.000.000',
|
|
197
|
+
target_freq: '1.900.000.000',
|
|
198
|
+
demodulator_mode: 'RAW',
|
|
199
|
+
bandwidth: 100_000,
|
|
200
|
+
precision: 5,
|
|
201
|
+
overlap_protection: true
|
|
202
|
+
},
|
|
101
203
|
fm_radio: {
|
|
102
204
|
start_freq: '87.900.000',
|
|
103
205
|
target_freq: '108.000.000',
|
|
@@ -162,15 +264,23 @@ module PWN
|
|
|
162
264
|
precision: 3,
|
|
163
265
|
overlap_protection: true
|
|
164
266
|
},
|
|
165
|
-
|
|
166
|
-
start_freq: '
|
|
167
|
-
target_freq: '
|
|
267
|
+
iridium: {
|
|
268
|
+
start_freq: '1.616.000.000',
|
|
269
|
+
target_freq: '1.626.500.000',
|
|
168
270
|
demodulator_mode: 'RAW',
|
|
169
|
-
bandwidth:
|
|
170
|
-
precision:
|
|
271
|
+
bandwidth: 200_000,
|
|
272
|
+
precision: 6,
|
|
273
|
+
overlap_protection: false
|
|
274
|
+
},
|
|
275
|
+
ism_5g: {
|
|
276
|
+
start_freq: '5.725.000.000',
|
|
277
|
+
target_freq: '5.875.000.000',
|
|
278
|
+
demodulator_mode: 'RAW',
|
|
279
|
+
bandwidth: 200_000,
|
|
280
|
+
precision: 7,
|
|
171
281
|
overlap_protection: true
|
|
172
282
|
},
|
|
173
|
-
|
|
283
|
+
ism_902: {
|
|
174
284
|
start_freq: '902.000.000',
|
|
175
285
|
target_freq: '928.000.000',
|
|
176
286
|
demodulator_mode: 'RAW',
|
|
@@ -178,14 +288,6 @@ module PWN
|
|
|
178
288
|
precision: 3,
|
|
179
289
|
overlap_protection: true
|
|
180
290
|
},
|
|
181
|
-
low_rfid: {
|
|
182
|
-
start_freq: '125.000',
|
|
183
|
-
target_freq: '134.000',
|
|
184
|
-
demodulator_mode: 'RAW',
|
|
185
|
-
bandwidth: 200_000,
|
|
186
|
-
precision: 1,
|
|
187
|
-
overlap_protection: true
|
|
188
|
-
},
|
|
189
291
|
keyfob300: {
|
|
190
292
|
start_freq: '300.000.000',
|
|
191
293
|
target_freq: '300.100.000',
|
|
@@ -234,6 +336,102 @@ module PWN
|
|
|
234
336
|
precision: 4,
|
|
235
337
|
overlap_protection: true
|
|
236
338
|
},
|
|
339
|
+
land_mobile_uhf: {
|
|
340
|
+
start_freq: '450.000.000',
|
|
341
|
+
target_freq: '470.000.000',
|
|
342
|
+
demodulator_mode: 'FM',
|
|
343
|
+
bandwidth: 25_000,
|
|
344
|
+
precision: 4,
|
|
345
|
+
overlap_protection: true
|
|
346
|
+
},
|
|
347
|
+
land_mobile_vhf: {
|
|
348
|
+
start_freq: '150.000.000',
|
|
349
|
+
target_freq: '174.000.000',
|
|
350
|
+
demodulator_mode: 'FM',
|
|
351
|
+
bandwidth: 25_000,
|
|
352
|
+
precision: 4,
|
|
353
|
+
overlap_protection: true
|
|
354
|
+
},
|
|
355
|
+
longwave_broadcast: {
|
|
356
|
+
start_freq: '148.500',
|
|
357
|
+
target_freq: '283.500',
|
|
358
|
+
demodulator_mode: 'AM',
|
|
359
|
+
bandwidth: 10_000,
|
|
360
|
+
precision: 3,
|
|
361
|
+
overlap_protection: true
|
|
362
|
+
},
|
|
363
|
+
lora433: {
|
|
364
|
+
start_freq: '432.000.000',
|
|
365
|
+
target_freq: '434.000.000',
|
|
366
|
+
demodulator_mode: 'RAW',
|
|
367
|
+
bandwidth: 50_000,
|
|
368
|
+
precision: 3,
|
|
369
|
+
overlap_protection: true
|
|
370
|
+
},
|
|
371
|
+
lora915: {
|
|
372
|
+
start_freq: '902.000.000',
|
|
373
|
+
target_freq: '928.000.000',
|
|
374
|
+
demodulator_mode: 'RAW',
|
|
375
|
+
bandwidth: 50_000,
|
|
376
|
+
precision: 3,
|
|
377
|
+
overlap_protection: true
|
|
378
|
+
},
|
|
379
|
+
low_rfid: {
|
|
380
|
+
start_freq: '125.000',
|
|
381
|
+
target_freq: '134.000',
|
|
382
|
+
demodulator_mode: 'RAW',
|
|
383
|
+
bandwidth: 200_000,
|
|
384
|
+
precision: 1,
|
|
385
|
+
overlap_protection: true
|
|
386
|
+
},
|
|
387
|
+
marine_vhf: {
|
|
388
|
+
start_freq: '156.000.000',
|
|
389
|
+
target_freq: '162.000.000',
|
|
390
|
+
demodulator_mode: 'FM',
|
|
391
|
+
bandwidth: 25_000,
|
|
392
|
+
precision: 4,
|
|
393
|
+
overlap_protection: true
|
|
394
|
+
},
|
|
395
|
+
maritime_mf: {
|
|
396
|
+
start_freq: '415.000',
|
|
397
|
+
target_freq: '535.000',
|
|
398
|
+
demodulator_mode: 'USB',
|
|
399
|
+
bandwidth: 2_700,
|
|
400
|
+
precision: 6,
|
|
401
|
+
overlap_protection: true
|
|
402
|
+
},
|
|
403
|
+
noaa_weather: {
|
|
404
|
+
start_freq: '162.400.000',
|
|
405
|
+
target_freq: '162.550.000',
|
|
406
|
+
demodulator_mode: 'FM',
|
|
407
|
+
bandwidth: 16_000,
|
|
408
|
+
precision: 4,
|
|
409
|
+
overlap_protection: true
|
|
410
|
+
},
|
|
411
|
+
pager: {
|
|
412
|
+
start_freq: '929.000.000',
|
|
413
|
+
target_freq: '932.000.000',
|
|
414
|
+
demodulator_mode: 'FM',
|
|
415
|
+
bandwidth: 25_000,
|
|
416
|
+
precision: 4,
|
|
417
|
+
overlap_protection: true
|
|
418
|
+
},
|
|
419
|
+
pcs: {
|
|
420
|
+
start_freq: '1.850.000.000',
|
|
421
|
+
target_freq: '1.990.000.000',
|
|
422
|
+
demodulator_mode: 'RAW',
|
|
423
|
+
bandwidth: 200_000,
|
|
424
|
+
precision: 6,
|
|
425
|
+
overlap_protection: false
|
|
426
|
+
},
|
|
427
|
+
public_safety_700: {
|
|
428
|
+
start_freq: '698.000.000',
|
|
429
|
+
target_freq: '806.000.000',
|
|
430
|
+
demodulator_mode: 'FM',
|
|
431
|
+
bandwidth: 25_000,
|
|
432
|
+
precision: 4,
|
|
433
|
+
overlap_protection: false
|
|
434
|
+
},
|
|
237
435
|
rtty20: {
|
|
238
436
|
start_freq: '14.000.000',
|
|
239
437
|
target_freq: '14.350.000',
|
|
@@ -258,6 +456,54 @@ module PWN
|
|
|
258
456
|
precision: 3,
|
|
259
457
|
overlap_protection: true
|
|
260
458
|
},
|
|
459
|
+
shortwave1: {
|
|
460
|
+
start_freq: '5.900.000',
|
|
461
|
+
target_freq: '6.200.000',
|
|
462
|
+
demodulator_mode: 'AM',
|
|
463
|
+
bandwidth: 10_000,
|
|
464
|
+
precision: 4,
|
|
465
|
+
overlap_protection: true
|
|
466
|
+
},
|
|
467
|
+
shortwave2: {
|
|
468
|
+
start_freq: '7.200.000',
|
|
469
|
+
target_freq: '7.450.000',
|
|
470
|
+
demodulator_mode: 'AM',
|
|
471
|
+
bandwidth: 10_000,
|
|
472
|
+
precision: 4,
|
|
473
|
+
overlap_protection: true
|
|
474
|
+
},
|
|
475
|
+
shortwave3: {
|
|
476
|
+
start_freq: '9.400.000',
|
|
477
|
+
target_freq: '9.900.000',
|
|
478
|
+
demodulator_mode: 'AM',
|
|
479
|
+
bandwidth: 10_000,
|
|
480
|
+
precision: 4,
|
|
481
|
+
overlap_protection: true
|
|
482
|
+
},
|
|
483
|
+
shortwave4: {
|
|
484
|
+
start_freq: '11.600.000',
|
|
485
|
+
target_freq: '12.100.000',
|
|
486
|
+
demodulator_mode: 'AM',
|
|
487
|
+
bandwidth: 10_000,
|
|
488
|
+
precision: 4,
|
|
489
|
+
overlap_protection: true
|
|
490
|
+
},
|
|
491
|
+
shortwave5: {
|
|
492
|
+
start_freq: '13.570.000',
|
|
493
|
+
target_freq: '13.870.000',
|
|
494
|
+
demodulator_mode: 'AM',
|
|
495
|
+
bandwidth: 10_000,
|
|
496
|
+
precision: 4,
|
|
497
|
+
overlap_protection: true
|
|
498
|
+
},
|
|
499
|
+
shortwave6: {
|
|
500
|
+
start_freq: '15.100.000',
|
|
501
|
+
target_freq: '15.800.000',
|
|
502
|
+
demodulator_mode: 'AM',
|
|
503
|
+
bandwidth: 10_000,
|
|
504
|
+
precision: 4,
|
|
505
|
+
overlap_protection: true
|
|
506
|
+
},
|
|
261
507
|
ssb10: {
|
|
262
508
|
start_freq: '28.000.000',
|
|
263
509
|
target_freq: '29.700.000',
|
|
@@ -330,6 +576,30 @@ module PWN
|
|
|
330
576
|
precision: 4,
|
|
331
577
|
overlap_protection: false
|
|
332
578
|
},
|
|
579
|
+
tv_high_vhf: {
|
|
580
|
+
start_freq: '174.000.000',
|
|
581
|
+
target_freq: '216.000.000',
|
|
582
|
+
demodulator_mode: 'WFM',
|
|
583
|
+
bandwidth: 600_000,
|
|
584
|
+
precision: 5,
|
|
585
|
+
overlap_protection: true
|
|
586
|
+
},
|
|
587
|
+
tv_low_vhf: {
|
|
588
|
+
start_freq: '54.000.000',
|
|
589
|
+
target_freq: '88.000.000',
|
|
590
|
+
demodulator_mode: 'WFM',
|
|
591
|
+
bandwidth: 600_000,
|
|
592
|
+
precision: 5,
|
|
593
|
+
overlap_protection: true
|
|
594
|
+
},
|
|
595
|
+
tv_uhf: {
|
|
596
|
+
start_freq: '470.000.000',
|
|
597
|
+
target_freq: '698.000.000',
|
|
598
|
+
demodulator_mode: 'WFM',
|
|
599
|
+
bandwidth: 600_000,
|
|
600
|
+
precision: 5,
|
|
601
|
+
overlap_protection: true
|
|
602
|
+
},
|
|
333
603
|
uhf_rfid: {
|
|
334
604
|
start_freq: '860.000.000',
|
|
335
605
|
target_freq: '960.000.000',
|
|
@@ -338,6 +608,22 @@ module PWN
|
|
|
338
608
|
precision: 5,
|
|
339
609
|
overlap_protection: true
|
|
340
610
|
},
|
|
611
|
+
umts: {
|
|
612
|
+
start_freq: '1.920.000.000',
|
|
613
|
+
target_freq: '2.170.000.000',
|
|
614
|
+
demodulator_mode: 'RAW',
|
|
615
|
+
bandwidth: 200_000,
|
|
616
|
+
precision: 6,
|
|
617
|
+
overlap_protection: false
|
|
618
|
+
},
|
|
619
|
+
weather_sat: {
|
|
620
|
+
start_freq: '137.000.000',
|
|
621
|
+
target_freq: '138.000.000',
|
|
622
|
+
demodulator_mode: 'FM',
|
|
623
|
+
bandwidth: 40_000,
|
|
624
|
+
precision: 5,
|
|
625
|
+
overlap_protection: true
|
|
626
|
+
},
|
|
341
627
|
wifi24: {
|
|
342
628
|
start_freq: '2.400.000.000',
|
|
343
629
|
target_freq: '2.500.000.000',
|
data/lib/pwn/version.rb
CHANGED
|
@@ -3,7 +3,7 @@ source /etc/profile.d/globals.sh
|
|
|
3
3
|
|
|
4
4
|
# Preferred way over to install geckodriver instead
|
|
5
5
|
# of attempting to grab latest gecko on our own
|
|
6
|
-
#
|
|
6
|
+
# geckodriver is implicitly installed as a dependency of
|
|
7
7
|
# eyewitness :)
|
|
8
8
|
$screen_cmd "${apt} install -y eyewitness ${assess_update_errors}"
|
|
9
9
|
grok_error
|
data/packer/provisioners/pwn.sh
CHANGED
|
@@ -53,7 +53,7 @@ case $os in
|
|
|
53
53
|
grok_error
|
|
54
54
|
|
|
55
55
|
echo "Installing fontmatrix..."
|
|
56
|
-
$screen_cmd "${apt} install -y
|
|
56
|
+
$screen_cmd "${apt} install -y cmatrix-xfont ${assess_update_errors}"
|
|
57
57
|
grok_error
|
|
58
58
|
|
|
59
59
|
echo "Installing Postgres Libraries for pg gem..."
|
data/packer/provisioners/rvm.sh
CHANGED
|
@@ -28,4 +28,5 @@ sudo /bin/bash --login -c "echo -e \"trust\n5\ny\n\" | gpg2 --no-tty --command-f
|
|
|
28
28
|
|
|
29
29
|
# Multi-user install required due to the need to run MSFRPCD as root w/in metasploit gemset
|
|
30
30
|
curl -sSL https://get.rvm.io | sudo bash -s stable
|
|
31
|
+
source /etc/profile.d/rvm.sh
|
|
31
32
|
rvm reload
|
data/third_party/pwn_rdoc.jsonl
CHANGED
|
@@ -669,24 +669,9 @@
|
|
|
669
669
|
{"messages":[{"role":"user","content":"PWN::Plugins::FileFu.help Usage"},{"role":"assistant","content":"`PWN::Plugins::FileFu.help`: "}]}
|
|
670
670
|
{"messages":[{"role":"user","content":"PWN::Plugins::FileFu.recurse_in_dir Usage"},{"role":"assistant","content":"`PWN::Plugins::FileFu.recurse_in_dir`: Supported Method Parameters\n\nPWN::Plugins::FileFu.recurse_in_dir(\n\ndir_path: 'optional path to dir defaults to .',\ninclude_extensions: 'optional - array of file extensions to search for in scan (e.g. ['.js', '.php'])',\nexclude_extensions: 'optional - array of file extensions to exclude from scan (e.g. ['.log', '.txt', '.spec'])'\n\n)\n"}]}
|
|
671
671
|
{"messages":[{"role":"user","content":"PWN::Plugins::FileFu.untar_gz_file Usage"},{"role":"assistant","content":"`PWN::Plugins::FileFu.untar_gz_file`: Supported Method Parameters\n\nPWN::Plugins::FileFu.untar_gz_file(\n\ntar_gz_file: 'required - path to .tar.gz file',\ndestination: 'required - destination folder to save extracted contents'\n\n)\n"}]}
|
|
672
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::FlipperZero.authors Usage"},{"role":"assistant","content":"`PWN::Plugins::FlipperZero.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
673
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::FlipperZero.connect Usage"},{"role":"assistant","content":"`PWN::Plugins::FlipperZero.connect`: Supported Method Parameters\n\nflipper_zero_obj = PWN::Plugins::FlipperZero.connect(\n\nblock_dev: 'optional serial block device path (defaults to /dev/ttyACM0)',\nbaud: 'optional (defaults to 9600)',\ndata_bits: 'optional (defaults to 8)',\nstop_bits: 'optional (defaults to 1)',\nparity: 'optional - :even||:odd|:none (defaults to :none)'\n\n)\n"}]}
|
|
674
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::FlipperZero.connect_via_screen Usage"},{"role":"assistant","content":"`PWN::Plugins::FlipperZero.connect_via_screen`: Supported Method Parameters\n\nPWN::Plugins::FlipperZero.connect_via_screen(\n\nblock_dev: 'optional - serial block device path (defaults to /dev/ttyACM0)'\n\n)\n"}]}
|
|
675
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::FlipperZero.disconnect Usage"},{"role":"assistant","content":"`PWN::Plugins::FlipperZero.disconnect`: Supported Method Parameters\n\nPWN::Plugins::FlipperZero.disconnect(\n\nflipper_zero_obj: 'required - flipper_zero_obj returned from #connect method'\n\n)\n"}]}
|
|
676
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::FlipperZero.help Usage"},{"role":"assistant","content":"`PWN::Plugins::FlipperZero.help`: "}]}
|
|
677
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::FlipperZero.request Usage"},{"role":"assistant","content":"`PWN::Plugins::FlipperZero.request`: Supported Method Parameters\n\nresponse = PWN::Plugins::FlipperZero.request(\n\nflipper_zero_obj: 'required - flipper_zero_obj returned from #connect method',\npayload: 'optional - payload to send to the device (defaults to help)'\n\n)\n"}]}
|
|
678
672
|
{"messages":[{"role":"user","content":"PWN::Plugins::Fuzz.authors Usage"},{"role":"assistant","content":"`PWN::Plugins::Fuzz.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
679
673
|
{"messages":[{"role":"user","content":"PWN::Plugins::Fuzz.help Usage"},{"role":"assistant","content":"`PWN::Plugins::Fuzz.help`: "}]}
|
|
680
674
|
{"messages":[{"role":"user","content":"PWN::Plugins::Fuzz.socket Usage"},{"role":"assistant","content":"`PWN::Plugins::Fuzz.socket`: Supported Method Parameters\n\nsocket_fuzz_results_arr = PWN::Plugins::Fuzz.socket(\n\ntarget: 'required - target host or ip',\nport: 'required - target port',\nprotocol: 'optional - :tcp || :udp (defaults to tcp)',\ntls: 'optional - boolean connect to target socket using TLS (defaults to false)',\nfuzz_delimeter: 'optional - fuzz delimeter used in request to specify where payloads should reside (defaults to \\u2665)',\nrequest: 'required - String object of socket request w/ \\u001A as fuzz delimeter (e.g. \"GET /\\u001A\\u001A HTTP/1.1\\r\\nHost: \\u001A127..0.0.1\\u001A\\r\\n\\r\\n\")',\npayload: 'required - payload string',\nencoding: 'optional - :base64 || :hex || :html_entity || :url (Defaults to nil)',\nencoding_depth: 'optional - number of times to encode payload (defaults to 1)',\nchar_encoding: 'optional - character encoding returned by PWN::Plugins::Char.list_encoders (defaults to UTF-8)',\nresponse_timeout: 'optional - float (defaults to 0.9)',\nrequest_rate_limit: 'optional - float (defaults to 0.3)'\n\n)\n"}]}
|
|
681
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::GQRX.assume_profile Usage"},{"role":"assistant","content":"`PWN::Plugins::GQRX.assume_profile`: Supported Method Parameters\n\nopts = PWN::Plugins::GQRX.assume_profile(\n\nprofile: 'required - valid GQRX profile name returned from #list_profiles method'\n\n)\n"}]}
|
|
682
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::GQRX.authors Usage"},{"role":"assistant","content":"`PWN::Plugins::GQRX.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
683
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::GQRX.connect Usage"},{"role":"assistant","content":"`PWN::Plugins::GQRX.connect`: Supported Method Parameters\n\ngqrx_sock = PWN::Plugins::GQRX.connect(\n\ntarget: 'optional - GQRX target IP address (defaults to 127.0.0.1)',\nport: 'optional - GQRX target port (defaults to 7356)'\n\n)\n"}]}
|
|
684
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::GQRX.disconnect Usage"},{"role":"assistant","content":"`PWN::Plugins::GQRX.disconnect`: Supported Method Parameters\n\nPWN::Plugins::GQRX.disconnect(\n\ngqrx_sock: 'required - GQRX socket object returned from #connect method'\n\n)\n"}]}
|
|
685
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::GQRX.gqrx_cmd Usage"},{"role":"assistant","content":"`PWN::Plugins::GQRX.gqrx_cmd`: Supported Method Parameters\n\ngqrx_resp = PWN::Plugins::GQRX.gqrx_cmd(\n\ngqrx_sock: 'required - GQRX socket object returned from #connect method',\ncmd: 'required - GQRX command to execute',\nresp_ok: 'optional - Expected response from GQRX to indicate success'\n\n)\n"}]}
|
|
686
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::GQRX.help Usage"},{"role":"assistant","content":"`PWN::Plugins::GQRX.help`: "}]}
|
|
687
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::GQRX.init_freq Usage"},{"role":"assistant","content":"`PWN::Plugins::GQRX.init_freq`: Supported Method Parameters\n\nPWN::Plugins::GQRX.init_freq(\n\ngqrx_sock: 'required - GQRX socket object returned from #connect method',\nfreq: 'required - Frequency to set',\ndemodulator_mode: 'optional - Demodulator mode (defaults to WFM)',\nbandwidth: 'optional - Bandwidth (defaults to 200000)',\nlock_freq_duration: 'optional - Lock frequency duration (defaults to 0.5)',\nstrength_lock: 'optional - Strength lock (defaults to -60.0)'\n\n)\n"}]}
|
|
688
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::GQRX.list_profiles Usage"},{"role":"assistant","content":"`PWN::Plugins::GQRX.list_profiles`: Supported Method Parameters\n\nprofiles = PWN::Plugins::GQRX.list_profiles\n"}]}
|
|
689
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::GQRX.scan_range Usage"},{"role":"assistant","content":"`PWN::Plugins::GQRX.scan_range`: Supported Method Parameters\n\nPWN::Plugins::GQRX.scan_range(\n\ngqrx_sock: 'required - GQRX socket object returned from #connect method',\ndemodulator_mode: 'required - Demodulator mode',\nbandwidth: 'required - Bandwidth',\nstart_freq: 'required - Starting frequency',\ntarget_freq: 'required - Target frequency',\nprecision: 'required - Precision',\nlock_freq_duration: 'optional - Lock frequency duration (defaults to 0.5)',\nstrength_lock: 'optional - Strength lock (defaults to -60.0)'\n\n)\n"}]}
|
|
690
675
|
{"messages":[{"role":"user","content":"PWN::Plugins::Git.authors Usage"},{"role":"assistant","content":"`PWN::Plugins::Git.authors`: Author(s)\n\nJacob Hoopes <jake.hoopes@gmail.com>\n"}]}
|
|
691
676
|
{"messages":[{"role":"user","content":"PWN::Plugins::Git.dump_all_repo_branches Usage"},{"role":"assistant","content":"`PWN::Plugins::Git.dump_all_repo_branches`: Supported Method Parameters\n\nPWN::Plugins::Git.dump_all_repo_branches(\n\ngit_url: 'required git repo url'\n\n)\n"}]}
|
|
692
677
|
{"messages":[{"role":"user","content":"PWN::Plugins::Git.gen_html_diff Usage"},{"role":"assistant","content":"`PWN::Plugins::Git.gen_html_diff`: Supported Method Parameters\n\nPWN::Plugins::Git.gen_html_diff(\n\nrepo: 'required git repo name',\nbranch: 'required git repo branch (e.g. master, develop, etc)',\nsince: 'optional date, otherwise default to last pull'\n\n)\n"}]}
|
|
@@ -921,9 +906,6 @@
|
|
|
921
906
|
{"messages":[{"role":"user","content":"PWN::Plugins::REPL.start Usage"},{"role":"assistant","content":"`PWN::Plugins::REPL.start`: Supported Method Parameters\n\nPWN::Plugins::REPL.start\n"}]}
|
|
922
907
|
{"messages":[{"role":"user","content":"PWN::Plugins::REPL.process Usage"},{"role":"assistant","content":"`PWN::Plugins::REPL.process`: "}]}
|
|
923
908
|
{"messages":[{"role":"user","content":"PWN::Plugins::REPL.top_h1_program_scope Usage"},{"role":"assistant","content":"`PWN::Plugins::REPL.top_h1_program_scope`: "}]}
|
|
924
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::RFIDler.authors Usage"},{"role":"assistant","content":"`PWN::Plugins::RFIDler.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
925
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::RFIDler.connect_via_screen Usage"},{"role":"assistant","content":"`PWN::Plugins::RFIDler.connect_via_screen`: Supported Method Parameters\n\nPWN::Plugins::RFIDler.connect_via_screen(\n\nblock_dev: 'optional - serial block device path (defaults to /dev/ttyUSB0)'\n\n)\n"}]}
|
|
926
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::RFIDler.help Usage"},{"role":"assistant","content":"`PWN::Plugins::RFIDler.help`: "}]}
|
|
927
909
|
{"messages":[{"role":"user","content":"PWN::Plugins::RabbitMQ.authors Usage"},{"role":"assistant","content":"`PWN::Plugins::RabbitMQ.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
928
910
|
{"messages":[{"role":"user","content":"PWN::Plugins::RabbitMQ.close Usage"},{"role":"assistant","content":"`PWN::Plugins::RabbitMQ.close`: Supported Method Parameters\n\nPWN::Plugins::RabbitMQ.close(\n\namqp_oject: amqp_conn1\n\n)\n"}]}
|
|
929
911
|
{"messages":[{"role":"user","content":"PWN::Plugins::RabbitMQ.help Usage"},{"role":"assistant","content":"`PWN::Plugins::RabbitMQ.help`: "}]}
|
|
@@ -980,21 +962,6 @@
|
|
|
980
962
|
{"messages":[{"role":"user","content":"PWN::Plugins::Sock.get_tls_cert Usage"},{"role":"assistant","content":"`PWN::Plugins::Sock.get_tls_cert`: Supported Method Parameters\n\ncert_obj = PWN::Plugins::Sock.get_tls_cert(\n\ntarget: 'required - target host or ip',\nport: 'optional - target port (defaults to 443)'\n\n)\n"}]}
|
|
981
963
|
{"messages":[{"role":"user","content":"PWN::Plugins::Sock.help Usage"},{"role":"assistant","content":"`PWN::Plugins::Sock.help`: "}]}
|
|
982
964
|
{"messages":[{"role":"user","content":"PWN::Plugins::Sock.listen Usage"},{"role":"assistant","content":"`PWN::Plugins::Sock.listen`: Supported Method Parameters\n\nPWN::Plugins::Sock.listen(\n\nserver_ip: 'required - target host or ip to listen',\nport: 'required - target port',\nprotocol: 'optional - :tcp || :udp (defaults to tcp)',\ntls: 'optional - boolean listen on TLS-enabled socket (defaults to false)'\n\n)\n"}]}
|
|
983
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.authors Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
984
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.backup_tag Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.backup_tag`: Supported Method Parameters\n\nPWN::Plugins::SonMicroRFID.backup_tag(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'\n\n)\n"}]}
|
|
985
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.clone_tag Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.clone_tag`: Supported Method Parameters\n\nPWN::Plugins::SonMicroRFID.clone_tag(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'\n\n)\n"}]}
|
|
986
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.connect Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.connect`: Supported Method Parameters\n\nson_micro_rfid_obj = PWN::Plugins::SonMicroRFID.connect(\n\nblock_dev: 'optional - serial block device path (defaults to /dev/ttyUSB0)',\nbaud: 'optional - (defaults to 19_200)',\ndata_bits: 'optional - (defaults to 8)',\nstop_bits: 'optional - (defaults to 1)',\nparity: 'optional - :even|:mark|:odd|:space|:none (defaults to :none)',\nflow_control: 'optional - :none||:hard||:soft (defaults to :none)'\n\n)\n"}]}
|
|
987
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.disconnect Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.disconnect`: Supported Method Parameters\n\nPWN::Plugins::SonMicroRFID.disconnect(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'\n\n)\n"}]}
|
|
988
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.exec Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.exec`: Supported Method Parameters\n\nPWN::Plugins::SonMicroRFID.exec(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method',\ncmd: 'required - cmd returned from #list_cmds method',\nparams: 'optional - parameters for specific command returned from #list_params method'\n\n)\n"}]}
|
|
989
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.help Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.help`: "}]}
|
|
990
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.list_cmds Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.list_cmds`: Supported Method Parameters\n\ncmds = PWN::Plugins::SonMicroRFID.list_cmds\n"}]}
|
|
991
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.list_params Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.list_params`: Supported Method Parameters\n\nparams = PWN::Plugins::SonMicroRFID.list_params(\n\ncmd: 'required - cmd returned from #list_cmds method'\n\n)\n"}]}
|
|
992
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.load_tag_from_file Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.load_tag_from_file`: Supported Method Parameters\n\nPWN::Plugins::SonMicroRFID.load_tag_from_file(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'\n\n)\n"}]}
|
|
993
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.logger Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.logger`: "}]}
|
|
994
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.parse_responses Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.parse_responses`: Supported Method Parameters\n\nparsed_cmd_resp_arr = parse_responses(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method',\ncmd: 'required - command symbol'\n\n)\n"}]}
|
|
995
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.read_tag Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.read_tag`: Supported Method Parameters\n\nPWN::Plugins::SonMicroRFID.read_tag(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method',\nauthn: 'optional - authentication flag (default: false)',\nkey: 'optional - key for authentication (default: [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF])'\n\n)\n"}]}
|
|
996
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.update_tag Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.update_tag`: Supported Method Parameters\n\nPWN::Plugins::SonMicroRFID.update_tag(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'\n\n)\n"}]}
|
|
997
|
-
{"messages":[{"role":"user","content":"PWN::Plugins::SonMicroRFID.write_tag Usage"},{"role":"assistant","content":"`PWN::Plugins::SonMicroRFID.write_tag`: Supported Method Parameters\n\nPWN::Plugins::SonMicroRFID.write_tag(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method',\nrfid_data: 'required - RFID data to write (see #read_tag for structure)',\nauthn: 'optional - authentication flag (default: false)',\nkey: 'optional - key for authentication (default: [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF])'\n\n)\n"}]}
|
|
998
965
|
{"messages":[{"role":"user","content":"PWN::Plugins::Spider.authors Usage"},{"role":"assistant","content":"`PWN::Plugins::Spider.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
999
966
|
{"messages":[{"role":"user","content":"PWN::Plugins::Spider.crawl Usage"},{"role":"assistant","content":"`PWN::Plugins::Spider.crawl`: Supported Method Parameters\n\nPWN::Plugins::Spider.crawl(\n\ntarget_fqdn: 'required - target fqdn to spider',\nresults_path: 'required - path to save spider results',\nproxy: 'optional - proxy to spider through e.g. http://127.0.0.1:8080'\n\n)\n"}]}
|
|
1000
967
|
{"messages":[{"role":"user","content":"PWN::Plugins::Spider.help Usage"},{"role":"assistant","content":"`PWN::Plugins::Spider.help`: "}]}
|
|
@@ -1306,6 +1273,49 @@
|
|
|
1306
1273
|
{"messages":[{"role":"user","content":"PWN::SAST::WindowLocationHash.help Usage"},{"role":"assistant","content":"`PWN::SAST::WindowLocationHash.help`: "}]}
|
|
1307
1274
|
{"messages":[{"role":"user","content":"PWN::SAST::WindowLocationHash.scan Usage"},{"role":"assistant","content":"`PWN::SAST::WindowLocationHash.scan`: Supported Method Parameters\n\nPWN::SAST::WindowLocationHash.scan(\n\ndir_path: 'optional path to dir defaults to .'\ngit_repo_root_uri: 'optional http uri of git repo scanned'\n\n)\n"}]}
|
|
1308
1275
|
{"messages":[{"role":"user","content":"PWN::SAST::WindowLocationHash.security_references Usage"},{"role":"assistant","content":"`PWN::SAST::WindowLocationHash.security_references`: "}]}
|
|
1276
|
+
{"messages":[{"role":"user","content":"PWN::SDR.help Usage"},{"role":"assistant","content":"`PWN::SDR.help`: "}]}
|
|
1277
|
+
{"messages":[{"role":"user","content":"PWN::SDR::Decoder.help Usage"},{"role":"assistant","content":"`PWN::SDR::Decoder.help`: "}]}
|
|
1278
|
+
{"messages":[{"role":"user","content":"PWN::SDR::Decoder::GSM.authors Usage"},{"role":"assistant","content":"`PWN::SDR::Decoder::GSM.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
1279
|
+
{"messages":[{"role":"user","content":"PWN::SDR::Decoder::GSM.help Usage"},{"role":"assistant","content":"`PWN::SDR::Decoder::GSM.help`: "}]}
|
|
1280
|
+
{"messages":[{"role":"user","content":"PWN::SDR::Decoder::GSM.start Usage"},{"role":"assistant","content":"`PWN::SDR::Decoder::GSM.start`: "}]}
|
|
1281
|
+
{"messages":[{"role":"user","content":"PWN::SDR::Decoder::GSM.stop Usage"},{"role":"assistant","content":"`PWN::SDR::Decoder::GSM.stop`: "}]}
|
|
1282
|
+
{"messages":[{"role":"user","content":"PWN::SDR::FlipperZero.authors Usage"},{"role":"assistant","content":"`PWN::SDR::FlipperZero.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
1283
|
+
{"messages":[{"role":"user","content":"PWN::SDR::FlipperZero.connect Usage"},{"role":"assistant","content":"`PWN::SDR::FlipperZero.connect`: Supported Method Parameters\n\nflipper_zero_obj = PWN::SDR::FlipperZero.connect(\n\nblock_dev: 'optional serial block device path (defaults to /dev/ttyACM0)',\nbaud: 'optional (defaults to 9600)',\ndata_bits: 'optional (defaults to 8)',\nstop_bits: 'optional (defaults to 1)',\nparity: 'optional - :even||:odd|:none (defaults to :none)'\n\n)\n"}]}
|
|
1284
|
+
{"messages":[{"role":"user","content":"PWN::SDR::FlipperZero.connect_via_screen Usage"},{"role":"assistant","content":"`PWN::SDR::FlipperZero.connect_via_screen`: Supported Method Parameters\n\nPWN::SDR::FlipperZero.connect_via_screen(\n\nblock_dev: 'optional - serial block device path (defaults to /dev/ttyACM0)'\n\n)\n"}]}
|
|
1285
|
+
{"messages":[{"role":"user","content":"PWN::SDR::FlipperZero.disconnect Usage"},{"role":"assistant","content":"`PWN::SDR::FlipperZero.disconnect`: Supported Method Parameters\n\nPWN::SDR::FlipperZero.disconnect(\n\nflipper_zero_obj: 'required - flipper_zero_obj returned from #connect method'\n\n)\n"}]}
|
|
1286
|
+
{"messages":[{"role":"user","content":"PWN::SDR::FlipperZero.help Usage"},{"role":"assistant","content":"`PWN::SDR::FlipperZero.help`: "}]}
|
|
1287
|
+
{"messages":[{"role":"user","content":"PWN::SDR::FlipperZero.request Usage"},{"role":"assistant","content":"`PWN::SDR::FlipperZero.request`: Supported Method Parameters\n\nresponse = PWN::SDR::FlipperZero.request(\n\nflipper_zero_obj: 'required - flipper_zero_obj returned from #connect method',\npayload: 'optional - payload to send to the device (defaults to help)'\n\n)\n"}]}
|
|
1288
|
+
{"messages":[{"role":"user","content":"PWN::SDR::FrequencyAllocation.authors Usage"},{"role":"assistant","content":"`PWN::SDR::FrequencyAllocation.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
1289
|
+
{"messages":[{"role":"user","content":"PWN::SDR::FrequencyAllocation.help Usage"},{"role":"assistant","content":"`PWN::SDR::FrequencyAllocation.help`: "}]}
|
|
1290
|
+
{"messages":[{"role":"user","content":"PWN::SDR::FrequencyAllocation.load Usage"},{"role":"assistant","content":"`PWN::SDR::FrequencyAllocation.load`: Supported Method Parameters\n\nopts = PWN::SDR::FrequencyAllocation.load(\n\nprofile: 'required - valid FrequencyAllocation profile name returned from #profiles method'\n\n)\n"}]}
|
|
1291
|
+
{"messages":[{"role":"user","content":"PWN::SDR::FrequencyAllocation.profiles Usage"},{"role":"assistant","content":"`PWN::SDR::FrequencyAllocation.profiles`: Supported Method Parameters\n\nprofiles = PWN::SDR::FrequencyAllocation.profiles\n"}]}
|
|
1292
|
+
{"messages":[{"role":"user","content":"PWN::SDR::GQRX.authors Usage"},{"role":"assistant","content":"`PWN::SDR::GQRX.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
1293
|
+
{"messages":[{"role":"user","content":"PWN::SDR::GQRX.connect Usage"},{"role":"assistant","content":"`PWN::SDR::GQRX.connect`: Supported Method Parameters\n\ngqrx_sock = PWN::SDR::GQRX.connect(\n\ntarget: 'optional - GQRX target IP address (defaults to 127.0.0.1)',\nport: 'optional - GQRX target port (defaults to 7356)'\n\n)\n"}]}
|
|
1294
|
+
{"messages":[{"role":"user","content":"PWN::SDR::GQRX.disconnect Usage"},{"role":"assistant","content":"`PWN::SDR::GQRX.disconnect`: Supported Method Parameters\n\nPWN::SDR::GQRX.disconnect(\n\ngqrx_sock: 'required - GQRX socket object returned from #connect method'\n\n)\n"}]}
|
|
1295
|
+
{"messages":[{"role":"user","content":"PWN::SDR::GQRX.gqrx_cmd Usage"},{"role":"assistant","content":"`PWN::SDR::GQRX.gqrx_cmd`: Supported Method Parameters\n\ngqrx_resp = PWN::SDR::GQRX.gqrx_cmd(\n\ngqrx_sock: 'required - GQRX socket object returned from #connect method',\ncmd: 'required - GQRX command to execute',\nresp_ok: 'optional - Expected response from GQRX to indicate success'\n\n)\n"}]}
|
|
1296
|
+
{"messages":[{"role":"user","content":"PWN::SDR::GQRX.help Usage"},{"role":"assistant","content":"`PWN::SDR::GQRX.help`: "}]}
|
|
1297
|
+
{"messages":[{"role":"user","content":"PWN::SDR::GQRX.init_freq Usage"},{"role":"assistant","content":"`PWN::SDR::GQRX.init_freq`: Supported Method Parameters\n\ninit_freq_hash = PWN::SDR::GQRX.init_freq(\n\ngqrx_sock: 'required - GQRX socket object returned from #connect method',\nfreq: 'required - Frequency to set',\ndemodulator_mode: 'optional - Demodulator mode (defaults to WFM)',\nbandwidth: 'optional - Bandwidth (defaults to 200_000)',\nsquelch: 'optional - Squelch level to set (Defaults to current value)',\ndecoder: 'optional - Decoder key (e.g., :gsm) to start live decoding (starts recording if provided)',\nrecord_dir: 'optional - Directory where GQRX saves recordings (required if decoder provided; defaults to Dir.home)',\ndecoder_opts: 'optional - Hash of additional options for the decoder',\nsuppress_details: 'optional - Boolean to include extra frequency details in return hash (defaults to false)'\n\n)\n"}]}
|
|
1298
|
+
{"messages":[{"role":"user","content":"PWN::SDR::GQRX.scan_range Usage"},{"role":"assistant","content":"`PWN::SDR::GQRX.scan_range`: Supported Method Parameters\n\nscan_resp = PWN::SDR::GQRX.scan_range(\n\ngqrx_sock: 'required - GQRX socket object returned from #connect method',\nstart_freq: 'required - Start frequency of scan range',\ntarget_freq: 'required - Target frequency of scan range',\ndemodulator_mode: 'optional - Demodulator mode (e.g. WFM, AM, FM, USB, LSB, RAW, CW, RTTY / defaults to WFM)',\nbandwidth: 'optional - Bandwidth in Hz (Defaults to 200_000)',\noverlap_protection: 'optional - Boolean to enable/disable bandwidth overlap protection (defaults to false)',\nprecision: 'optional - Frequency step precision (number of digits; defaults to 1)',\nlock_freq_duration: 'optional - Lock frequency duration in seconds (defaults to 0.04)',\nstrength_lock: 'optional - Strength lock in dBFS (defaults to -70.0)',\nsquelch: 'optional - Squelch level in dBFS (defaults to strength_lock - 3.0)',\nlocation: 'optional - Location string to include in AI analysis (e.g., \"New York, NY\", 90210, GPS coords, etc.)'\n\n)\n"}]}
|
|
1299
|
+
{"messages":[{"role":"user","content":"PWN::SDR::GQRX.pretty_hz Usage"},{"role":"assistant","content":"`PWN::SDR::GQRX.pretty_hz`: "}]}
|
|
1300
|
+
{"messages":[{"role":"user","content":"PWN::SDR::GQRX.raw_hz Usage"},{"role":"assistant","content":"`PWN::SDR::GQRX.raw_hz`: "}]}
|
|
1301
|
+
{"messages":[{"role":"user","content":"PWN::SDR::RFIDler.authors Usage"},{"role":"assistant","content":"`PWN::SDR::RFIDler.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
1302
|
+
{"messages":[{"role":"user","content":"PWN::SDR::RFIDler.connect_via_screen Usage"},{"role":"assistant","content":"`PWN::SDR::RFIDler.connect_via_screen`: Supported Method Parameters\n\nPWN::SDR::RFIDler.connect_via_screen(\n\nblock_dev: 'optional - serial block device path (defaults to /dev/ttyUSB0)'\n\n)\n"}]}
|
|
1303
|
+
{"messages":[{"role":"user","content":"PWN::SDR::RFIDler.help Usage"},{"role":"assistant","content":"`PWN::SDR::RFIDler.help`: "}]}
|
|
1304
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.authors Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
1305
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.backup_tag Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.backup_tag`: Supported Method Parameters\n\nPWN::SDR::SonMicroRFID.backup_tag(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'\n\n)\n"}]}
|
|
1306
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.clone_tag Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.clone_tag`: Supported Method Parameters\n\nPWN::SDR::SonMicroRFID.clone_tag(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'\n\n)\n"}]}
|
|
1307
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.connect Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.connect`: Supported Method Parameters\n\nson_micro_rfid_obj = PWN::SDR::SonMicroRFID.connect(\n\nblock_dev: 'optional - serial block device path (defaults to /dev/ttyUSB0)',\nbaud: 'optional - (defaults to 19_200)',\ndata_bits: 'optional - (defaults to 8)',\nstop_bits: 'optional - (defaults to 1)',\nparity: 'optional - :even|:mark|:odd|:space|:none (defaults to :none)',\nflow_control: 'optional - :none||:hard||:soft (defaults to :none)'\n\n)\n"}]}
|
|
1308
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.disconnect Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.disconnect`: Supported Method Parameters\n\nPWN::SDR::SonMicroRFID.disconnect(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'\n\n)\n"}]}
|
|
1309
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.exec Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.exec`: Supported Method Parameters\n\nPWN::SDR::SonMicroRFID.exec(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method',\ncmd: 'required - cmd returned from #list_cmds method',\nparams: 'optional - parameters for specific command returned from #list_params method'\n\n)\n"}]}
|
|
1310
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.help Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.help`: "}]}
|
|
1311
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.list_cmds Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.list_cmds`: Supported Method Parameters\n\ncmds = PWN::SDR::SonMicroRFID.list_cmds\n"}]}
|
|
1312
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.list_params Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.list_params`: Supported Method Parameters\n\nparams = PWN::SDR::SonMicroRFID.list_params(\n\ncmd: 'required - cmd returned from #list_cmds method'\n\n)\n"}]}
|
|
1313
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.load_tag_from_file Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.load_tag_from_file`: Supported Method Parameters\n\nPWN::SDR::SonMicroRFID.load_tag_from_file(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'\n\n)\n"}]}
|
|
1314
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.logger Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.logger`: "}]}
|
|
1315
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.parse_responses Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.parse_responses`: Supported Method Parameters\n\nparsed_cmd_resp_arr = parse_responses(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method',\ncmd: 'required - command symbol'\n\n)\n"}]}
|
|
1316
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.read_tag Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.read_tag`: Supported Method Parameters\n\nPWN::SDR::SonMicroRFID.read_tag(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method',\nauthn: 'optional - authentication flag (default: false)',\nkey: 'optional - key for authentication (default: [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF])'\n\n)\n"}]}
|
|
1317
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.update_tag Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.update_tag`: Supported Method Parameters\n\nPWN::SDR::SonMicroRFID.update_tag(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method'\n\n)\n"}]}
|
|
1318
|
+
{"messages":[{"role":"user","content":"PWN::SDR::SonMicroRFID.write_tag Usage"},{"role":"assistant","content":"`PWN::SDR::SonMicroRFID.write_tag`: Supported Method Parameters\n\nPWN::SDR::SonMicroRFID.write_tag(\n\nson_micro_rfid_obj: 'required - son_micro_rfid_obj returned from #connect method',\nrfid_data: 'required - RFID data to write (see #read_tag for structure)',\nauthn: 'optional - authentication flag (default: false)',\nkey: 'optional - key for authentication (default: [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF])'\n\n)\n"}]}
|
|
1309
1319
|
{"messages":[{"role":"user","content":"PWN::WWW.help Usage"},{"role":"assistant","content":"`PWN::WWW.help`: "}]}
|
|
1310
1320
|
{"messages":[{"role":"user","content":"PWN::WWW::AppCobaltIO.authors Usage"},{"role":"assistant","content":"`PWN::WWW::AppCobaltIO.authors`: Author(s)\n\n0day Inc. <support@0dayinc.com>\n"}]}
|
|
1311
1321
|
{"messages":[{"role":"user","content":"PWN::WWW::AppCobaltIO.close Usage"},{"role":"assistant","content":"`PWN::WWW::AppCobaltIO.close`: Supported Method Parameters\n\nbrowser_obj = PWN::WWW::AppCobaltIO.close(\n\nbrowser_obj: 'required - browser_obj returned from #open method'\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.510
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- 0day Inc.
|
|
@@ -141,28 +141,28 @@ dependencies:
|
|
|
141
141
|
requirements:
|
|
142
142
|
- - ">="
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
|
-
version:
|
|
144
|
+
version: 4.0.0
|
|
145
145
|
type: :development
|
|
146
146
|
prerelease: false
|
|
147
147
|
version_requirements: !ruby/object:Gem::Requirement
|
|
148
148
|
requirements:
|
|
149
149
|
- - ">="
|
|
150
150
|
- !ruby/object:Gem::Version
|
|
151
|
-
version:
|
|
151
|
+
version: 4.0.0
|
|
152
152
|
- !ruby/object:Gem::Dependency
|
|
153
153
|
name: bundler-audit
|
|
154
154
|
requirement: !ruby/object:Gem::Requirement
|
|
155
155
|
requirements:
|
|
156
|
-
- -
|
|
156
|
+
- - ">="
|
|
157
157
|
- !ruby/object:Gem::Version
|
|
158
|
-
version: 0.9.
|
|
158
|
+
version: 0.9.3
|
|
159
159
|
type: :runtime
|
|
160
160
|
prerelease: false
|
|
161
161
|
version_requirements: !ruby/object:Gem::Requirement
|
|
162
162
|
requirements:
|
|
163
|
-
- -
|
|
163
|
+
- - ">="
|
|
164
164
|
- !ruby/object:Gem::Version
|
|
165
|
-
version: 0.9.
|
|
165
|
+
version: 0.9.3
|
|
166
166
|
- !ruby/object:Gem::Dependency
|
|
167
167
|
name: bunny
|
|
168
168
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -267,14 +267,14 @@ dependencies:
|
|
|
267
267
|
requirements:
|
|
268
268
|
- - '='
|
|
269
269
|
- !ruby/object:Gem::Version
|
|
270
|
-
version: 3.5.
|
|
270
|
+
version: 3.5.3
|
|
271
271
|
type: :runtime
|
|
272
272
|
prerelease: false
|
|
273
273
|
version_requirements: !ruby/object:Gem::Requirement
|
|
274
274
|
requirements:
|
|
275
275
|
- - '='
|
|
276
276
|
- !ruby/object:Gem::Version
|
|
277
|
-
version: 3.5.
|
|
277
|
+
version: 3.5.3
|
|
278
278
|
- !ruby/object:Gem::Dependency
|
|
279
279
|
name: faye-websocket
|
|
280
280
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -533,14 +533,14 @@ dependencies:
|
|
|
533
533
|
requirements:
|
|
534
534
|
- - '='
|
|
535
535
|
- !ruby/object:Gem::Version
|
|
536
|
-
version: 0.0.
|
|
536
|
+
version: 0.0.147
|
|
537
537
|
type: :runtime
|
|
538
538
|
prerelease: false
|
|
539
539
|
version_requirements: !ruby/object:Gem::Requirement
|
|
540
540
|
requirements:
|
|
541
541
|
- - '='
|
|
542
542
|
- !ruby/object:Gem::Version
|
|
543
|
-
version: 0.0.
|
|
543
|
+
version: 0.0.147
|
|
544
544
|
- !ruby/object:Gem::Dependency
|
|
545
545
|
name: metasm
|
|
546
546
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -561,14 +561,14 @@ dependencies:
|
|
|
561
561
|
requirements:
|
|
562
562
|
- - '='
|
|
563
563
|
- !ruby/object:Gem::Version
|
|
564
|
-
version: 2.
|
|
564
|
+
version: 2.22.0
|
|
565
565
|
type: :runtime
|
|
566
566
|
prerelease: false
|
|
567
567
|
version_requirements: !ruby/object:Gem::Requirement
|
|
568
568
|
requirements:
|
|
569
569
|
- - '='
|
|
570
570
|
- !ruby/object:Gem::Version
|
|
571
|
-
version: 2.
|
|
571
|
+
version: 2.22.0
|
|
572
572
|
- !ruby/object:Gem::Dependency
|
|
573
573
|
name: msfrpc-client
|
|
574
574
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -869,14 +869,14 @@ dependencies:
|
|
|
869
869
|
requirements:
|
|
870
870
|
- - '='
|
|
871
871
|
- !ruby/object:Gem::Version
|
|
872
|
-
version: 6.
|
|
872
|
+
version: 6.16.1
|
|
873
873
|
type: :development
|
|
874
874
|
prerelease: false
|
|
875
875
|
version_requirements: !ruby/object:Gem::Requirement
|
|
876
876
|
requirements:
|
|
877
877
|
- - '='
|
|
878
878
|
- !ruby/object:Gem::Version
|
|
879
|
-
version: 6.
|
|
879
|
+
version: 6.16.1
|
|
880
880
|
- !ruby/object:Gem::Dependency
|
|
881
881
|
name: rest-client
|
|
882
882
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -925,14 +925,14 @@ dependencies:
|
|
|
925
925
|
requirements:
|
|
926
926
|
- - '='
|
|
927
927
|
- !ruby/object:Gem::Version
|
|
928
|
-
version: 3.1.
|
|
928
|
+
version: 3.1.1
|
|
929
929
|
type: :runtime
|
|
930
930
|
prerelease: false
|
|
931
931
|
version_requirements: !ruby/object:Gem::Requirement
|
|
932
932
|
requirements:
|
|
933
933
|
- - '='
|
|
934
934
|
- !ruby/object:Gem::Version
|
|
935
|
-
version: 3.1.
|
|
935
|
+
version: 3.1.1
|
|
936
936
|
- !ruby/object:Gem::Dependency
|
|
937
937
|
name: rspec
|
|
938
938
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1149,14 +1149,14 @@ dependencies:
|
|
|
1149
1149
|
requirements:
|
|
1150
1150
|
- - '='
|
|
1151
1151
|
- !ruby/object:Gem::Version
|
|
1152
|
-
version: 2.8.
|
|
1152
|
+
version: 2.8.1
|
|
1153
1153
|
type: :runtime
|
|
1154
1154
|
prerelease: false
|
|
1155
1155
|
version_requirements: !ruby/object:Gem::Requirement
|
|
1156
1156
|
requirements:
|
|
1157
1157
|
- - '='
|
|
1158
1158
|
- !ruby/object:Gem::Version
|
|
1159
|
-
version: 2.8.
|
|
1159
|
+
version: 2.8.1
|
|
1160
1160
|
- !ruby/object:Gem::Dependency
|
|
1161
1161
|
name: thin
|
|
1162
1162
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1247,14 +1247,14 @@ dependencies:
|
|
|
1247
1247
|
requirements:
|
|
1248
1248
|
- - '='
|
|
1249
1249
|
- !ruby/object:Gem::Version
|
|
1250
|
-
version: 1.9.
|
|
1250
|
+
version: 1.9.2
|
|
1251
1251
|
type: :runtime
|
|
1252
1252
|
prerelease: false
|
|
1253
1253
|
version_requirements: !ruby/object:Gem::Requirement
|
|
1254
1254
|
requirements:
|
|
1255
1255
|
- - '='
|
|
1256
1256
|
- !ruby/object:Gem::Version
|
|
1257
|
-
version: 1.9.
|
|
1257
|
+
version: 1.9.2
|
|
1258
1258
|
- !ruby/object:Gem::Dependency
|
|
1259
1259
|
name: whois
|
|
1260
1260
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -2445,7 +2445,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
2445
2445
|
- !ruby/object:Gem::Version
|
|
2446
2446
|
version: '0'
|
|
2447
2447
|
requirements: []
|
|
2448
|
-
rubygems_version:
|
|
2448
|
+
rubygems_version: 4.0.0
|
|
2449
2449
|
specification_version: 4
|
|
2450
2450
|
summary: Automated Security Testing for CI/CD Pipelines & Beyond
|
|
2451
2451
|
test_files: []
|