pwn 0.5.214 → 0.5.216

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,298 @@
1
+
2
+ SSUUMMMMAARRYY OOFF LLEESSSS CCOOMMMMAANNDDSS
3
+
4
+ Commands marked with * may be preceded by a number, _N.
5
+ Notes in parentheses indicate the behavior if _N is given.
6
+ A key preceded by a caret indicates the Ctrl key; thus ^K is ctrl-K.
7
+
8
+ h H Display this help.
9
+ q :q Q :Q ZZ Exit.
10
+ ---------------------------------------------------------------------------
11
+
12
+ MMOOVVIINNGG
13
+
14
+ e ^E j ^N CR * Forward one line (or _N lines).
15
+ y ^Y k ^K ^P * Backward one line (or _N lines).
16
+ f ^F ^V SPACE * Forward one window (or _N lines).
17
+ b ^B ESC-v * Backward one window (or _N lines).
18
+ z * Forward one window (and set window to _N).
19
+ w * Backward one window (and set window to _N).
20
+ ESC-SPACE * Forward one window, but don't stop at end-of-file.
21
+ d ^D * Forward one half-window (and set half-window to _N).
22
+ u ^U * Backward one half-window (and set half-window to _N).
23
+ ESC-) RightArrow * Right one half screen width (or _N positions).
24
+ ESC-( LeftArrow * Left one half screen width (or _N positions).
25
+ ESC-} ^RightArrow Right to last column displayed.
26
+ ESC-{ ^LeftArrow Left to first column.
27
+ F Forward forever; like "tail -f".
28
+ ESC-F Like F but stop when search pattern is found.
29
+ r ^R ^L Repaint screen.
30
+ R Repaint screen, discarding buffered input.
31
+ ---------------------------------------------------
32
+ Default "window" is the screen height.
33
+ Default "half-window" is half of the screen height.
34
+ ---------------------------------------------------------------------------
35
+
36
+ SSEEAARRCCHHIINNGG
37
+
38
+ /_p_a_t_t_e_r_n * Search forward for (_N-th) matching line.
39
+ ?_p_a_t_t_e_r_n * Search backward for (_N-th) matching line.
40
+ n * Repeat previous search (for _N-th occurrence).
41
+ N * Repeat previous search in reverse direction.
42
+ ESC-n * Repeat previous search, spanning files.
43
+ ESC-N * Repeat previous search, reverse dir. & spanning files.
44
+ ESC-u Undo (toggle) search highlighting.
45
+ ESC-U Clear search highlighting.
46
+ &_p_a_t_t_e_r_n * Display only matching lines.
47
+ ---------------------------------------------------
48
+ A search pattern may begin with one or more of:
49
+ ^N or ! Search for NON-matching lines.
50
+ ^E or * Search multiple files (pass thru END OF FILE).
51
+ ^F or @ Start search at FIRST file (for /) or last file (for ?).
52
+ ^K Highlight matches, but don't move (KEEP position).
53
+ ^R Don't use REGULAR EXPRESSIONS.
54
+ ^S _n Search for match in _n-th parenthesized subpattern.
55
+ ^W WRAP search if no match found.
56
+ ---------------------------------------------------------------------------
57
+
58
+ JJUUMMPPIINNGG
59
+
60
+ g < ESC-< * Go to first line in file (or line _N).
61
+ G > ESC-> * Go to last line in file (or line _N).
62
+ p % * Go to beginning of file (or _N percent into file).
63
+ t * Go to the (_N-th) next tag.
64
+ T * Go to the (_N-th) previous tag.
65
+ { ( [ * Find close bracket } ) ].
66
+ } ) ] * Find open bracket { ( [.
67
+ ESC-^F _<_c_1_> _<_c_2_> * Find close bracket _<_c_2_>.
68
+ ESC-^B _<_c_1_> _<_c_2_> * Find open bracket _<_c_1_>.
69
+ ---------------------------------------------------
70
+ Each "find close bracket" command goes forward to the close bracket
71
+ matching the (_N-th) open bracket in the top line.
72
+ Each "find open bracket" command goes backward to the open bracket
73
+ matching the (_N-th) close bracket in the bottom line.
74
+
75
+ m_<_l_e_t_t_e_r_> Mark the current top line with <letter>.
76
+ M_<_l_e_t_t_e_r_> Mark the current bottom line with <letter>.
77
+ '_<_l_e_t_t_e_r_> Go to a previously marked position.
78
+ '' Go to the previous position.
79
+ ^X^X Same as '.
80
+ ESC-m_<_l_e_t_t_e_r_> Clear a mark.
81
+ ---------------------------------------------------
82
+ A mark is any upper-case or lower-case letter.
83
+ Certain marks are predefined:
84
+ ^ means beginning of the file
85
+ $ means end of the file
86
+ ---------------------------------------------------------------------------
87
+
88
+ CCHHAANNGGIINNGG FFIILLEESS
89
+
90
+ :e [_f_i_l_e] Examine a new file.
91
+ ^X^V Same as :e.
92
+ :n * Examine the (_N-th) next file from the command line.
93
+ :p * Examine the (_N-th) previous file from the command line.
94
+ :x * Examine the first (or _N-th) file from the command line.
95
+ :d Delete the current file from the command line list.
96
+ = ^G :f Print current file name.
97
+ ---------------------------------------------------------------------------
98
+
99
+ MMIISSCCEELLLLAANNEEOOUUSS CCOOMMMMAANNDDSS
100
+
101
+ -_<_f_l_a_g_> Toggle a command line option [see OPTIONS below].
102
+ --_<_n_a_m_e_> Toggle a command line option, by name.
103
+ __<_f_l_a_g_> Display the setting of a command line option.
104
+ ___<_n_a_m_e_> Display the setting of an option, by name.
105
+ +_c_m_d Execute the less cmd each time a new file is examined.
106
+
107
+ !_c_o_m_m_a_n_d Execute the shell command with $SHELL.
108
+ #_c_o_m_m_a_n_d Execute the shell command, expanded like a prompt.
109
+ |XX_c_o_m_m_a_n_d Pipe file between current pos & mark XX to shell command.
110
+ s _f_i_l_e Save input to a file.
111
+ v Edit the current file with $VISUAL or $EDITOR.
112
+ V Print version number of "less".
113
+ ---------------------------------------------------------------------------
114
+
115
+ OOPPTTIIOONNSS
116
+
117
+ Most options may be changed either on the command line,
118
+ or from within less by using the - or -- command.
119
+ Options may be given in one of two forms: either a single
120
+ character preceded by a -, or a name preceded by --.
121
+
122
+ -? ........ --help
123
+ Display help (from command line).
124
+ -a ........ --search-skip-screen
125
+ Search skips current screen.
126
+ -A ........ --SEARCH-SKIP-SCREEN
127
+ Search starts just after target line.
128
+ -b [_N] .... --buffers=[_N]
129
+ Number of buffers.
130
+ -B ........ --auto-buffers
131
+ Don't automatically allocate buffers for pipes.
132
+ -c ........ --clear-screen
133
+ Repaint by clearing rather than scrolling.
134
+ -d ........ --dumb
135
+ Dumb terminal.
136
+ -D xx_c_o_l_o_r . --color=xx_c_o_l_o_r
137
+ Set screen colors.
138
+ -e -E .... --quit-at-eof --QUIT-AT-EOF
139
+ Quit at end of file.
140
+ -f ........ --force
141
+ Force open non-regular files.
142
+ -F ........ --quit-if-one-screen
143
+ Quit if entire file fits on first screen.
144
+ -g ........ --hilite-search
145
+ Highlight only last match for searches.
146
+ -G ........ --HILITE-SEARCH
147
+ Don't highlight any matches for searches.
148
+ -h [_N] .... --max-back-scroll=[_N]
149
+ Backward scroll limit.
150
+ -i ........ --ignore-case
151
+ Ignore case in searches that do not contain uppercase.
152
+ -I ........ --IGNORE-CASE
153
+ Ignore case in all searches.
154
+ -j [_N] .... --jump-target=[_N]
155
+ Screen position of target lines.
156
+ -J ........ --status-column
157
+ Display a status column at left edge of screen.
158
+ -k [_f_i_l_e] . --lesskey-file=[_f_i_l_e]
159
+ Use a lesskey file.
160
+ -K ........ --quit-on-intr
161
+ Exit less in response to ctrl-C.
162
+ -L ........ --no-lessopen
163
+ Ignore the LESSOPEN environment variable.
164
+ -m -M .... --long-prompt --LONG-PROMPT
165
+ Set prompt style.
166
+ -n ......... --line-numbers
167
+ Suppress line numbers in prompts and messages.
168
+ -N ......... --LINE-NUMBERS
169
+ Display line number at start of each line.
170
+ -o [_f_i_l_e] . --log-file=[_f_i_l_e]
171
+ Copy to log file (standard input only).
172
+ -O [_f_i_l_e] . --LOG-FILE=[_f_i_l_e]
173
+ Copy to log file (unconditionally overwrite).
174
+ -p [_p_a_t_t_e_r_n] --pattern=[_p_a_t_t_e_r_n]
175
+ Start at pattern (from command line).
176
+ -P [_p_r_o_m_p_t] --prompt=[_p_r_o_m_p_t]
177
+ Define new prompt.
178
+ -q -Q .... --quiet --QUIET --silent --SILENT
179
+ Quiet the terminal bell.
180
+ -r -R .... --raw-control-chars --RAW-CONTROL-CHARS
181
+ Output "raw" control characters.
182
+ -s ........ --squeeze-blank-lines
183
+ Squeeze multiple blank lines.
184
+ -S ........ --chop-long-lines
185
+ Chop (truncate) long lines rather than wrapping.
186
+ -t [_t_a_g] .. --tag=[_t_a_g]
187
+ Find a tag.
188
+ -T [_t_a_g_s_f_i_l_e] --tag-file=[_t_a_g_s_f_i_l_e]
189
+ Use an alternate tags file.
190
+ -u -U .... --underline-special --UNDERLINE-SPECIAL
191
+ Change handling of backspaces, tabs and carriage returns.
192
+ -V ........ --version
193
+ Display the version number of "less".
194
+ -w ........ --hilite-unread
195
+ Highlight first new line after forward-screen.
196
+ -W ........ --HILITE-UNREAD
197
+ Highlight first new line after any forward movement.
198
+ -x [_N[,...]] --tabs=[_N[,...]]
199
+ Set tab stops.
200
+ -X ........ --no-init
201
+ Don't use termcap init/deinit strings.
202
+ -y [_N] .... --max-forw-scroll=[_N]
203
+ Forward scroll limit.
204
+ -z [_N] .... --window=[_N]
205
+ Set size of window.
206
+ -" [_c[_c]] . --quotes=[_c[_c]]
207
+ Set shell quote characters.
208
+ -~ ........ --tilde
209
+ Don't display tildes after end of file.
210
+ -# [_N] .... --shift=[_N]
211
+ Set horizontal scroll amount (0 = one half screen width).
212
+ --exit-follow-on-close
213
+ Exit F command on a pipe when writer closes pipe.
214
+ --file-size
215
+ Automatically determine the size of the input file.
216
+ --follow-name
217
+ The F command changes files if the input file is renamed.
218
+ --header=[_N[,_M]]
219
+ Use N lines and M columns to display file headers.
220
+ --incsearch
221
+ Search file as each pattern character is typed in.
222
+ --intr=_C
223
+ Use _C instead of ^X to interrupt a read.
224
+ --line-num-width=_N
225
+ Set the width of the -N line number field to _N characters.
226
+ --modelines=_N
227
+ Read _N lines from the input file and look for vim modelines.
228
+ --mouse
229
+ Enable mouse input.
230
+ --no-keypad
231
+ Don't send termcap keypad init/deinit strings.
232
+ --no-histdups
233
+ Remove duplicates from command history.
234
+ --no-number-headers
235
+ Don't give line numbers to header lines.
236
+ --no-search-headers
237
+ Don't search in header lines or columns.
238
+ --no-vbell
239
+ Disable the terminal's visual bell.
240
+ --redraw-on-quit
241
+ Redraw final screen when quitting.
242
+ --rscroll=_C
243
+ Set the character used to mark truncated lines.
244
+ --save-marks
245
+ Retain marks across invocations of less.
246
+ --search-options=[EFKNRW-]
247
+ Set default options for every search.
248
+ --show-preproc-errors
249
+ Display a message if preprocessor exits with an error status.
250
+ --proc-backspace
251
+ Process backspaces for bold/underline.
252
+ --SPECIAL-BACKSPACE
253
+ Treat backspaces as control characters.
254
+ --proc-return
255
+ Delete carriage returns before newline.
256
+ --SPECIAL-RETURN
257
+ Treat carriage returns as control characters.
258
+ --proc-tab
259
+ Expand tabs to spaces.
260
+ --SPECIAL-TAB
261
+ Treat tabs as control characters.
262
+ --status-col-width=_N
263
+ Set the width of the -J status column to _N characters.
264
+ --status-line
265
+ Highlight or color the entire line containing a mark.
266
+ --use-backslash
267
+ Subsequent options use backslash as escape char.
268
+ --use-color
269
+ Enables colored text.
270
+ --wheel-lines=_N
271
+ Each click of the mouse wheel moves _N lines.
272
+ --wordwrap
273
+ Wrap lines at spaces.
274
+
275
+
276
+ ---------------------------------------------------------------------------
277
+
278
+ LLIINNEE EEDDIITTIINNGG
279
+
280
+ These keys can be used to edit text being entered
281
+ on the "command line" at the bottom of the screen.
282
+
283
+ RightArrow ..................... ESC-l ... Move cursor right one character.
284
+ LeftArrow ...................... ESC-h ... Move cursor left one character.
285
+ ctrl-RightArrow ESC-RightArrow ESC-w ... Move cursor right one word.
286
+ ctrl-LeftArrow ESC-LeftArrow ESC-b ... Move cursor left one word.
287
+ HOME ........................... ESC-0 ... Move cursor to start of line.
288
+ END ............................ ESC-$ ... Move cursor to end of line.
289
+ BACKSPACE ................................ Delete char to left of cursor.
290
+ DELETE ......................... ESC-x ... Delete char under cursor.
291
+ ctrl-BACKSPACE ESC-BACKSPACE ........... Delete word to left of cursor.
292
+ ctrl-DELETE .... ESC-DELETE .... ESC-X ... Delete word under cursor.
293
+ ctrl-U ......... ESC (MS-DOS only) ....... Delete entire line.
294
+ UpArrow ........................ ESC-k ... Retrieve previous command line.
295
+ DownArrow ...................... ESC-j ... Retrieve next command line.
296
+ TAB ...................................... Complete filename & cycle.
297
+ SHIFT-TAB ...................... ESC-TAB Complete filename & reverse cycle.
298
+ ctrl-L ................................... Complete filename, list all.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.214
4
+ version: 0.5.216
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-30 00:00:00.000000000 Z
11
+ date: 2024-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 7.2.1.2
19
+ version: 8.0.0.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 7.2.1.2
26
+ version: 8.0.0.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: anemone
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -114,28 +114,28 @@ dependencies:
114
114
  requirements:
115
115
  - - '='
116
116
  - !ruby/object:Gem::Version
117
- version: 5.0.1
117
+ version: 5.0.2
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - '='
123
123
  - !ruby/object:Gem::Version
124
- version: 5.0.1
124
+ version: 5.0.2
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: bundler
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - ">="
130
130
  - !ruby/object:Gem::Version
131
- version: 2.5.22
131
+ version: 2.5.23
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - ">="
137
137
  - !ruby/object:Gem::Version
138
- version: 2.5.22
138
+ version: 2.5.23
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: bundler-audit
141
141
  requirement: !ruby/object:Gem::Requirement
@@ -184,14 +184,14 @@ dependencies:
184
184
  requirements:
185
185
  - - '='
186
186
  - !ruby/object:Gem::Version
187
- version: 6.3.0
187
+ version: 7.0.0
188
188
  type: :runtime
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
192
  - - '='
193
193
  - !ruby/object:Gem::Version
194
- version: 6.3.0
194
+ version: 7.0.0
195
195
  - !ruby/object:Gem::Dependency
196
196
  name: eventmachine
197
197
  requirement: !ruby/object:Gem::Requirement
@@ -310,14 +310,14 @@ dependencies:
310
310
  requirements:
311
311
  - - '='
312
312
  - !ruby/object:Gem::Version
313
- version: 1.8.3
313
+ version: 1.8.4
314
314
  type: :runtime
315
315
  prerelease: false
316
316
  version_requirements: !ruby/object:Gem::Requirement
317
317
  requirements:
318
318
  - - '='
319
319
  - !ruby/object:Gem::Version
320
- version: 1.8.3
320
+ version: 1.8.4
321
321
  - !ruby/object:Gem::Dependency
322
322
  name: gist
323
323
  requirement: !ruby/object:Gem::Requirement
@@ -408,14 +408,14 @@ dependencies:
408
408
  requirements:
409
409
  - - '='
410
410
  - !ruby/object:Gem::Version
411
- version: 2.7.5
411
+ version: 2.9.0
412
412
  type: :runtime
413
413
  prerelease: false
414
414
  version_requirements: !ruby/object:Gem::Requirement
415
415
  requirements:
416
416
  - - '='
417
417
  - !ruby/object:Gem::Version
418
- version: 2.7.5
418
+ version: 2.9.0
419
419
  - !ruby/object:Gem::Dependency
420
420
  name: jsonpath
421
421
  requirement: !ruby/object:Gem::Requirement
@@ -492,14 +492,14 @@ dependencies:
492
492
  requirements:
493
493
  - - '='
494
494
  - !ruby/object:Gem::Version
495
- version: 0.0.77
495
+ version: 0.0.78
496
496
  type: :runtime
497
497
  prerelease: false
498
498
  version_requirements: !ruby/object:Gem::Requirement
499
499
  requirements:
500
500
  - - '='
501
501
  - !ruby/object:Gem::Version
502
- version: 0.0.77
502
+ version: 0.0.78
503
503
  - !ruby/object:Gem::Dependency
504
504
  name: metasm
505
505
  requirement: !ruby/object:Gem::Requirement
@@ -618,14 +618,14 @@ dependencies:
618
618
  requirements:
619
619
  - - '='
620
620
  - !ruby/object:Gem::Version
621
- version: 1.16.7
621
+ version: 1.17.1
622
622
  type: :runtime
623
623
  prerelease: false
624
624
  version_requirements: !ruby/object:Gem::Requirement
625
625
  requirements:
626
626
  - - '='
627
627
  - !ruby/object:Gem::Version
628
- version: 1.16.7
628
+ version: 1.17.1
629
629
  - !ruby/object:Gem::Dependency
630
630
  name: nokogiri-diff
631
631
  requirement: !ruby/object:Gem::Requirement
@@ -688,14 +688,14 @@ dependencies:
688
688
  requirements:
689
689
  - - '='
690
690
  - !ruby/object:Gem::Version
691
- version: 0.6.0
691
+ version: 0.6.1
692
692
  type: :runtime
693
693
  prerelease: false
694
694
  version_requirements: !ruby/object:Gem::Requirement
695
695
  requirements:
696
696
  - - '='
697
697
  - !ruby/object:Gem::Version
698
- version: 0.6.0
698
+ version: 0.6.1
699
699
  - !ruby/object:Gem::Dependency
700
700
  name: packetfu
701
701
  requirement: !ruby/object:Gem::Requirement
@@ -730,14 +730,14 @@ dependencies:
730
730
  requirements:
731
731
  - - '='
732
732
  - !ruby/object:Gem::Version
733
- version: 2.12.0
733
+ version: 2.13.0
734
734
  type: :runtime
735
735
  prerelease: false
736
736
  version_requirements: !ruby/object:Gem::Requirement
737
737
  requirements:
738
738
  - - '='
739
739
  - !ruby/object:Gem::Version
740
- version: 2.12.0
740
+ version: 2.13.0
741
741
  - !ruby/object:Gem::Dependency
742
742
  name: pg
743
743
  requirement: !ruby/object:Gem::Requirement
@@ -758,14 +758,14 @@ dependencies:
758
758
  requirements:
759
759
  - - '='
760
760
  - !ruby/object:Gem::Version
761
- version: 0.14.2
761
+ version: 0.15.0
762
762
  type: :runtime
763
763
  prerelease: false
764
764
  version_requirements: !ruby/object:Gem::Requirement
765
765
  requirements:
766
766
  - - '='
767
767
  - !ruby/object:Gem::Version
768
- version: 0.14.2
768
+ version: 0.15.0
769
769
  - !ruby/object:Gem::Dependency
770
770
  name: pry-doc
771
771
  requirement: !ruby/object:Gem::Requirement
@@ -828,14 +828,14 @@ dependencies:
828
828
  requirements:
829
829
  - - '='
830
830
  - !ruby/object:Gem::Version
831
- version: 6.7.0
831
+ version: 6.8.1
832
832
  type: :development
833
833
  prerelease: false
834
834
  version_requirements: !ruby/object:Gem::Requirement
835
835
  requirements:
836
836
  - - '='
837
837
  - !ruby/object:Gem::Version
838
- version: 6.7.0
838
+ version: 6.8.1
839
839
  - !ruby/object:Gem::Dependency
840
840
  name: rest-client
841
841
  requirement: !ruby/object:Gem::Requirement
@@ -926,14 +926,14 @@ dependencies:
926
926
  requirements:
927
927
  - - '='
928
928
  - !ruby/object:Gem::Version
929
- version: 1.67.0
929
+ version: 1.69.1
930
930
  type: :runtime
931
931
  prerelease: false
932
932
  version_requirements: !ruby/object:Gem::Requirement
933
933
  requirements:
934
934
  - - '='
935
935
  - !ruby/object:Gem::Version
936
- version: 1.67.0
936
+ version: 1.69.1
937
937
  - !ruby/object:Gem::Dependency
938
938
  name: rubocop-rake
939
939
  requirement: !ruby/object:Gem::Requirement
@@ -1038,14 +1038,14 @@ dependencies:
1038
1038
  requirements:
1039
1039
  - - '='
1040
1040
  - !ruby/object:Gem::Version
1041
- version: 0.130.0
1041
+ version: 0.131.0
1042
1042
  type: :runtime
1043
1043
  prerelease: false
1044
1044
  version_requirements: !ruby/object:Gem::Requirement
1045
1045
  requirements:
1046
1046
  - - '='
1047
1047
  - !ruby/object:Gem::Version
1048
- version: 0.130.0
1048
+ version: 0.131.0
1049
1049
  - !ruby/object:Gem::Dependency
1050
1050
  name: serialport
1051
1051
  requirement: !ruby/object:Gem::Requirement
@@ -1094,28 +1094,28 @@ dependencies:
1094
1094
  requirements:
1095
1095
  - - '='
1096
1096
  - !ruby/object:Gem::Version
1097
- version: 1.3.1
1097
+ version: 1.3.3
1098
1098
  type: :runtime
1099
1099
  prerelease: false
1100
1100
  version_requirements: !ruby/object:Gem::Requirement
1101
1101
  requirements:
1102
1102
  - - '='
1103
1103
  - !ruby/object:Gem::Version
1104
- version: 1.3.1
1104
+ version: 1.3.3
1105
1105
  - !ruby/object:Gem::Dependency
1106
1106
  name: sqlite3
1107
1107
  requirement: !ruby/object:Gem::Requirement
1108
1108
  requirements:
1109
1109
  - - '='
1110
1110
  - !ruby/object:Gem::Version
1111
- version: 2.2.0
1111
+ version: 2.4.1
1112
1112
  type: :runtime
1113
1113
  prerelease: false
1114
1114
  version_requirements: !ruby/object:Gem::Requirement
1115
1115
  requirements:
1116
1116
  - - '='
1117
1117
  - !ruby/object:Gem::Version
1118
- version: 2.2.0
1118
+ version: 2.4.1
1119
1119
  - !ruby/object:Gem::Dependency
1120
1120
  name: thin
1121
1121
  requirement: !ruby/object:Gem::Requirement
@@ -1192,28 +1192,28 @@ dependencies:
1192
1192
  requirements:
1193
1193
  - - '='
1194
1194
  - !ruby/object:Gem::Version
1195
- version: 1.8.2
1195
+ version: 1.9.1
1196
1196
  type: :runtime
1197
1197
  prerelease: false
1198
1198
  version_requirements: !ruby/object:Gem::Requirement
1199
1199
  requirements:
1200
1200
  - - '='
1201
1201
  - !ruby/object:Gem::Version
1202
- version: 1.8.2
1202
+ version: 1.9.1
1203
1203
  - !ruby/object:Gem::Dependency
1204
1204
  name: whois
1205
1205
  requirement: !ruby/object:Gem::Requirement
1206
1206
  requirements:
1207
1207
  - - '='
1208
1208
  - !ruby/object:Gem::Version
1209
- version: 6.0.0
1209
+ version: 6.0.1
1210
1210
  type: :runtime
1211
1211
  prerelease: false
1212
1212
  version_requirements: !ruby/object:Gem::Requirement
1213
1213
  requirements:
1214
1214
  - - '='
1215
1215
  - !ruby/object:Gem::Version
1216
- version: 6.0.0
1216
+ version: 6.0.1
1217
1217
  - !ruby/object:Gem::Dependency
1218
1218
  name: whois-parser
1219
1219
  requirement: !ruby/object:Gem::Requirement
@@ -1297,6 +1297,7 @@ executables:
1297
1297
  - pwn_owasp_zap_active_scan
1298
1298
  - pwn_pastebin_sample_filter
1299
1299
  - pwn_phone
1300
+ - pwn_rdoc_to_jsonl
1300
1301
  - pwn_sast
1301
1302
  - pwn_serial_check_voicemail
1302
1303
  - pwn_serial_msr206
@@ -1365,6 +1366,7 @@ files:
1365
1366
  - bin/pwn_owasp_zap_active_scan
1366
1367
  - bin/pwn_pastebin_sample_filter
1367
1368
  - bin/pwn_phone
1369
+ - bin/pwn_rdoc_to_jsonl
1368
1370
  - bin/pwn_sast
1369
1371
  - bin/pwn_serial_check_voicemail
1370
1372
  - bin/pwn_serial_msr206
@@ -1388,6 +1390,7 @@ files:
1388
1390
  - documentation/pwn_wallpaper.jpg
1389
1391
  - documentation/ringing-spectrogram.png
1390
1392
  - documentation/ringing-waveform.png
1393
+ - e(File.read(rdoc_html_file))
1391
1394
  - etc/pwn.decryptor.yaml.EXAMPLE
1392
1395
  - etc/pwn.yaml.EXAMPLE
1393
1396
  - etc/systemd/msfrpcd.service
@@ -1950,6 +1953,9 @@ files:
1950
1953
  - lib/pwn/www/uber.rb
1951
1954
  - lib/pwn/www/upwork.rb
1952
1955
  - lib/pwn/www/youtube.rb
1956
+ - on_obj = {
1957
+ - onl = []
1958
+ - onl.push("-{json_obj.to_json}n")
1953
1959
  - packer/daemons/msfrpcd.rb
1954
1960
  - packer/daemons/openvas.rb
1955
1961
  - packer/deploy_docker_containers.sh
@@ -2035,6 +2041,8 @@ files:
2035
2041
  - packer/provisioners/zzuf.sh
2036
2042
  - pwn.gemspec
2037
2043
  - reinstall_pwn_gemset.sh
2044
+ - s('div').each do |div|
2045
+ - s="method-name"]').text
2038
2046
  - spec/lib/pwn/aws/acm_spec.rb
2039
2047
  - spec/lib/pwn/aws/api_gateway_spec.rb
2040
2048
  - spec/lib/pwn/aws/app_stream_spec.rb
@@ -2341,7 +2349,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2341
2349
  - !ruby/object:Gem::Version
2342
2350
  version: '0'
2343
2351
  requirements: []
2344
- rubygems_version: 3.5.22
2352
+ rubygems_version: 3.5.23
2345
2353
  signing_key:
2346
2354
  specification_version: 4
2347
2355
  summary: Automated Security Testing for CI/CD Pipelines & Beyond