pwn 0.5.199 → 0.5.200
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/CHANGELOG_BETWEEN_TAGS.txt +190 -176
- data/Gemfile +4 -4
- data/README.md +3 -3
- data/bin/pwn_sast +2 -0
- data/etc/pwn.yaml.EXAMPLE +3 -0
- data/lib/pwn/plugins/hunter.rb +160 -0
- data/lib/pwn/plugins/repl.rb +3 -0
- data/lib/pwn/plugins/transparent_browser.rb +138 -20
- data/lib/pwn/plugins.rb +1 -0
- data/lib/pwn/sast/local_storage.rb +145 -0
- data/lib/pwn/sast/post_message.rb +144 -0
- data/lib/pwn/sast.rb +2 -0
- data/lib/pwn/version.rb +1 -1
- data/lib/pwn.rb +3 -0
- data/spec/lib/pwn/plugins/hunter_spec.rb +15 -0
- data/spec/lib/pwn/sast/local_storage_spec.rb +25 -0
- data/spec/lib/pwn/sast/post_message_spec.rb +25 -0
- metadata +16 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 51f3b5b71d496230219cb56e7a7dec304144864ffd56d2e4c40d3d7c54356aa9
|
4
|
+
data.tar.gz: 89c7c4f5468c9e0a3b57661cc3f3a7a188ac1695e439495a35738a07bf448d95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8354c3e5cba604a51dc3232e2c200e715ce7b1037cadf69334ad59871f85f180dc557ed4a994d475b1f44a94e2bbe4130ff77e13d179ab6c1b882a6cd8691db1
|
7
|
+
data.tar.gz: 02bb76e9802d4e8331f1c3698732ec80ab12a9997cb45f0591fc05c4639b0f8dbb13fb234eddd3b78134801997487b66bc395c0f78a44e631ace6b719c8eb9b8
|
data/CHANGELOG_BETWEEN_TAGS.txt
CHANGED
@@ -1,176 +1,190 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
1
|
+
110e615 Merge pull request #658 from ninp0/master
|
2
|
+
6258d66 PWN::Plugins::TransparentBrowser module - update #open method to default to debugger view when devtools: true and browser_type: :firefox. Implement #udpate_about_config method for Firefox as well
|
3
|
+
ad70268 Merge pull request #657 from ninp0/master
|
4
|
+
7c25f44 PWN::Plugins::TransparentBrowser module - incognito sessions by default in #open method #no_persistent_cookies?
|
5
|
+
418029b Merge pull request #656 from ninp0/master
|
6
|
+
fc484c1 PWN::Plugins::TransparentBrowser module - #bugfix in #open method to always start browsers maximized (when supported of course)
|
7
|
+
e1cb5b8 Merge pull request #655 from ninp0/master
|
8
|
+
48e4735 PWN::Plugins::TransparentBrowser module - #bugfix in #toggle_devtools method
|
9
|
+
e5209a6 PWN::Plugins::TransparentBrowser module - update to #new_tab method which reduces complexity when opening tabs
|
10
|
+
6849c76 Merge pull request #654 from ninp0/master
|
11
|
+
49ed078 PWN::Plugins::TransparentBrowser module - #bugfixes centered around opening devtools with console drawer, switching devtools panels, toggling devtools, etc.
|
12
|
+
ba54d2f PWN::Plugins::TransparentBrowser module - #bugfixes centered around opening devtools with console drawer, switching devtools panels, toggling devtools, etc.
|
13
|
+
30d02ff PWN::Plugins::TransparentBrowser module - #bugfixes in #open method when devtools parameter == true
|
14
|
+
b8f6d02 Merge pull request #653 from ninp0/master
|
15
|
+
421b19d PWN::Plugins::TransparentBrowser module - #bugfixes in #close_tab method
|
16
|
+
e2aadd0 PWN::Plugins::TransparentBrowser module - #bugfix in #close_tab method
|
17
|
+
8435896 Merge pull request #652 from ninp0/master
|
18
|
+
ac8e9b9 PWN::Plugins::TransparentBrowser module - #bugfix in #close_tab method
|
19
|
+
7d2eaa8 Merge pull request #651 from ninp0/master
|
20
|
+
a5f79ce PWN::Plugins::TransparentBrowser module - more bugfixes
|
21
|
+
0e4c6b3 Merge pull request #650 from ninp0/master
|
22
|
+
b5f4636 PWN::Plugins::TransparentBrowser module - if with_devtools, open console drawer by default in #open && #new_tab methods. Also switch to an inactive tab if closing a tag thats currently active.
|
23
|
+
ec1f6be Merge pull request #649 from ninp0/master
|
24
|
+
bf79a6b PWN::Plugins::TransparentBrowser module - if with_devtools, open console drawer by default in #open && #new_tab methods
|
25
|
+
d475c03 PWN::Plugins::TransparentBrowser module - add #jmp_devtools_panel && #toogle_devtools. Also rename #switch_tab method to #jmp_tab
|
26
|
+
4468437 Merge pull request #648 from ninp0/master
|
27
|
+
3bcbb26 PWN::Plugins::TransparentBrowser module - #bugfix in #new_tab method
|
28
|
+
57bb78f Merge pull request #647 from ninp0/master
|
29
|
+
6436eb1 PWN::Plugins::TransparentBrowser module - #bugfix in #new_tab method
|
30
|
+
eda3c5d PWN::Plugins::TransparentBrowser module - #bugfix in #new_tab method
|
31
|
+
fc0acd2 Merge pull request #646 from ninp0/master
|
32
|
+
0647c7f PWN::Plugins::TransparentBrowser module - update default url in #new_tab method from "about:blank" to "about:about"
|
33
|
+
37c4252 Merge pull request #645 from ninp0/master
|
34
|
+
d5f443c PWN::Plugins::TransparentBrowser module - re-enable bidi as the tested chrome browser was running incompat chromedriver version + with_devtools #bugfix
|
35
|
+
ca98e91 Merge pull request #644 from ninp0/master
|
36
|
+
243102f PWN::Plugins::TransparentBrowser module - comment out browser_obj[:bidi] until this error is addressed: `Failed to initialize BiDi Mapper: TypeError: Failed to set the innerHTML property on Element: This document requires TrustedHTML assignment.`
|
37
|
+
8cee663 Merge pull request #643 from ninp0/master
|
38
|
+
2579702 PWN::Plugins::TransparentBrowser module - change active key in all tab methods return objects to state and return same object format as other tab methods in #close_tab method
|
39
|
+
1f6667c Merge pull request #642 from ninp0/master
|
40
|
+
b983acb PWN::Plugins::TransparentBrowser module - return hash object when calling #new_tab && #switch_tab methods + #bugfix
|
41
|
+
75fbbcf PWN::Plugins::TransparentBrowser module - return hash object when calling #new_tab && #switch_tab methods + #bugfix
|
42
|
+
70a452b Merge pull request #641 from ninp0/master
|
43
|
+
a8a1c56 PWN::Plugins::TransparentBrowser module - return hash object when calling #new_tab method
|
44
|
+
fba67cd Merge pull request #640 from ninp0/master
|
45
|
+
d4fcaa2 PWN::Plugins::TransparentBrowser module - include headless as a browser_type for with_devtools
|
46
|
+
185db0d Merge pull request #639 from ninp0/master
|
47
|
+
47f3713 PWN::Plugins::TransparentBrowser module - return a bidi object in browser_obj when with_devtools option = true
|
48
|
+
5124563 Merge pull request #638 from ninp0/master
|
49
|
+
464319c PWN::Plugins::TransparentBrowser module - a lot of devtools enhancements
|
50
|
+
e6c077d Merge pull request #637 from ninp0/master
|
51
|
+
e3fcb45 PWN::Plugins::TransparentBrowser module - implement #devtools_console method for browser_type == :chrome && :firefox (including headless). Overhaul #find_elements_by_text and #dump_links methods
|
52
|
+
c563239 Merge pull request #636 from ninp0/master
|
53
|
+
4cf676c PWN::Plugins::TransparentBrowser module - implement #devtools_console method for browser_type == :chrome
|
54
|
+
88cf250 Merge pull request #635 from ninp0/master
|
55
|
+
4ef3e2d .ruby-version - bump to 3.3.3
|
56
|
+
42ead41 Merge pull request #634 from ninp0/master
|
57
|
+
d584b49 PWN::AWS::IAM module - implement #decode_key method. Useful for extracting account_id from access key ids
|
58
|
+
a40a8a6 PWN::AWS::IAM module - implement #decode_key method. Useful for extracting account_id from access key ids
|
59
|
+
ead2b64 Merge pull request #633 from ninp0/master
|
60
|
+
eb4ae6f pwn_crt_sh Driver - report_path #bugfix
|
61
|
+
05c27ae Merge pull request #632 from ninp0/master
|
62
|
+
d0251f6 pwn_crt_sh Driver - display result to STDOUT in addition to writing to JSON file
|
63
|
+
be32d05 pwn_crt_sh Driver - Initial commit w/ basic list of subdomains
|
64
|
+
f09efb9 pwn_crt_sh Driver - Initial commit w/ basic list of subdomains
|
65
|
+
2a8ea88 Merge pull request #631 from ninp0/master
|
66
|
+
6c74d5e PWN::Plugins::TransparentBrowser module - #bugfixes in #close method
|
67
|
+
f18f61d Merge pull request #630 from ninp0/master
|
68
|
+
a956e46 PWN::Plugins::TransparentBrowser module - #bugfixes in #close method
|
69
|
+
4d3fe84 Merge pull request #629 from ninp0/master
|
70
|
+
4e8a680 pwn_www_uri_buster Driver - implement --include-response-codes and --exclude-response-codes #rubocop
|
71
|
+
c9ddb07 Merge pull request #628 from ninp0/master
|
72
|
+
8835abe pwn_www_uri_buster Driver - implement --include-response-codes and --exclude-response-codes
|
73
|
+
b6f6ce2 Merge pull request #627 from ninp0/master
|
74
|
+
6052c71 PWN::Plugins::TransparentBrowser module - configure logger to display to STDOUT w/ log level of error
|
75
|
+
dd57a5d Merge pull request #626 from ninp0/master
|
76
|
+
dd197af PWN::Plugins::ThreadPool module - regress to previous method #faster
|
77
|
+
1a4db55 Merge pull request #625 from ninp0/master
|
78
|
+
4bb4dd9 PWN::Plugins::IPInfo module - #bugfixes in #bruteforce_subdomain method
|
79
|
+
dfc3e9a Merge pull request #624 from ninp0/master
|
80
|
+
5da2e6f PWN::Plugins::IPInfo module - handle multiple ip addresses if hostname returns more than one.
|
81
|
+
f0f5d99 Merge pull request #623 from ninp0/master
|
82
|
+
6b82bd8 PWN::Plugins::IPInfo module - #bugfixes && implement new method #check_rfc1918
|
83
|
+
e25d821 Merge pull request #622 from ninp0/master
|
84
|
+
c9a05d7 PWN::Plugins::ThreadPool module - overhaul #fill method
|
85
|
+
d2cd876 Merge pull request #621 from ninp0/master
|
86
|
+
8a28b6b PWN::Plugins::IPInfo module - proper JSON output to results_file within #bruteforce_subdomains method
|
87
|
+
b1c7c0b Merge pull request #620 from ninp0/master
|
88
|
+
d413c23 PWN::Plugins::IPInfo module - update usage in #help method
|
89
|
+
05603df Merge pull request #619 from ninp0/master
|
90
|
+
5a19084 PWN::Plugins::IPInfo module - implement #bruteforce_subdomains method
|
91
|
+
9b085a9 PWN::Plugins::IPInfo module - implement #bruteforce_subdomains method
|
92
|
+
9449de4 Merge pull request #618 from ninp0/master
|
93
|
+
ac53e4f PWN::Plugins::OpenAI && PWN::Plugins::Ollama modules - implement spinner parameter for #chat methods when using pwn-irc command in pwn REPL
|
94
|
+
94c5696 Merge pull request #617 from ninp0/master
|
95
|
+
87f0763 pwn REPL - implement multiple LLM support for pwn-irc (e.g. OpenAI, Ollama via Open WebUI w/ its respective models, etc). Update PWN::Plugins::Ollama module to get working #chat method that works identically to #PWN::Plugins::OpenAI.chat method. This is to support AI agent collaboration / context switching / reduce cost of usage via pwn-irc command
|
96
|
+
3be8b75 Merge pull request #616 from ninp0/master
|
97
|
+
aac1bee etc/pwn.yaml.EXAMPLE - share ninja w/ the tubes.
|
98
|
+
9be17b8 Merge pull request #615 from ninp0/master
|
99
|
+
8efad4f pwn REPL driver - prefer weechat IRC client over irssi to reduce complexity
|
100
|
+
33900ee Merge pull request #614 from ninp0/master
|
101
|
+
b113f88 Merge branch 'master' of ssh://github.com/ninp0/pwn
|
102
|
+
6cad32a pwn REPL driver - prefer weechat IRC client over irssi #tweaks
|
103
|
+
867cf40 Merge pull request #613 from ninp0/master
|
104
|
+
de679e6 pwn REPL driver - prefer weechat IRC client over irssi
|
105
|
+
c01600c pwn REPL driver - prefer weechat IRC client over irssi
|
106
|
+
e6ae14a Merge pull request #612 from ninp0/master
|
107
|
+
64ee00f pwn REPL driver - initial implementation of pwn-irc REPL command for AI agent orchestration #agi
|
108
|
+
6e350c5 Merge pull request #611 from ninp0/master
|
109
|
+
01081c9 pwn REPL - implement pwn-irc commmand to begin implementing AI agents #rubocop
|
110
|
+
9c99126 Merge branch 'master' of ssh://github.com/ninp0/pwn
|
111
|
+
f23e9e5 pwn REPL - implement pwn-irc commmand to begin implementing AI agents #rubocop
|
112
|
+
eef3e5d Merge pull request #610 from ninp0/master
|
113
|
+
a93d908 pwn REPL - implement pwn-irc commmand to begin implementing AI agents
|
114
|
+
3e42dd8 Merge pull request #609 from ninp0/master
|
115
|
+
abc0fcf PWN::Plugins::IRC module - #bugfix in #privmsg method
|
116
|
+
26db157 Merge pull request #608 from ninp0/master
|
117
|
+
ccdcd17 PWN::Plugins::IRC module - change #send method to be privately scoped within the module.
|
118
|
+
c25b6ff Merge pull request #607 from ninp0/master
|
119
|
+
5e452a1 PWN::Plugins::IRC module - add #ping, #pong, and #privmsg methods
|
120
|
+
4dce789 PWN::Plugins::IRC module - decouple join command from #connect method. Implement #join, #part, and #quits methods
|
121
|
+
61ca618 Merge pull request #606 from ninp0/master
|
122
|
+
e5bac30 PWN::Plugins::IRC module - #bugfix in #listen mehthod
|
123
|
+
e4f0961 Merge pull request #605 from ninp0/master
|
124
|
+
9d68d14 PWN::Plugins::IRC module - simplify #send mehthod
|
125
|
+
e0cf1be Merge pull request #604 from ninp0/master
|
126
|
+
1acc118 PWN::Plugins::IRC module - #chomp message when logging to STDOUT in #listen method.
|
127
|
+
1e162e3 PWN::Plugins::IRC module - #chomp message when logging to STDOUT in #listen method.
|
128
|
+
83843be Merge pull request #603 from ninp0/master
|
129
|
+
7e440cd PWN::Plugins::IRC module - yield entire message when passing block to #listen method and replace #gets with #wait_readable method in #send method to ensure we can process a socket response in its entirety.
|
130
|
+
46c2e49 PWN::Plugins::IRC module - yeild entire message when passing block to #listen method and replace #gets with #wait_readable method in #send method to ensure we can process a socket response in its entirety.
|
131
|
+
d2ed62e Merge pull request #602 from ninp0/master
|
132
|
+
6dfbf89 PWN::Plugins::IRC module - #bugfix in #listen method
|
133
|
+
4da3cb6 Merge pull request #601 from ninp0/master
|
134
|
+
332bbcb PWN::Plugins::IRC module - #rubocop_fix
|
135
|
+
3125829 Merge pull request #600 from ninp0/master
|
136
|
+
e70fbeb Gemfile - remove cinch gem in favor of native PWN::Plugins::IRC client module to support AI agents
|
137
|
+
9fd5240 Merge pull request #599 from ninp0/master
|
138
|
+
0f145f0 Gemfile - add cinch for AI agent rollout
|
139
|
+
038de06 Merge pull request #598 from ninp0/master
|
140
|
+
9fabf07 PWN::Plugins::REPL module - start in Pry.main instead of self (i.e. PWN::Plugins::REPL) to enable proper autocompletion, session method definitions, etc.
|
141
|
+
8a6c57b Merge pull request #597 from ninp0/master
|
142
|
+
f5e2343 PWN::Plugins::OpenAI module - change default model to gpt-4o for #chat method
|
143
|
+
aedd2d0 Gemfile - bump altcomms
|
144
|
+
2f171a8 Merge pull request #596 from ninp0/master
|
145
|
+
50e8835 Gemfile - bump altcomms
|
146
|
+
1f50cec Merge pull request #595 from ninp0/master
|
147
|
+
7fc05e9 Gemfile - bump altcomms
|
148
|
+
0fe7b33 Merge pull request #594 from ninp0/master
|
149
|
+
0eca73f Gemfile - bump altcomms
|
150
|
+
9e7fb26 Merge pull request #593 from ninp0/master
|
151
|
+
a85391b Gemfile - mqtt tx / rx support
|
152
|
+
c5e18c2 Merge pull request #592 from ninp0/master
|
153
|
+
497c0b4 Gemfile - Bump alt comms to latest
|
154
|
+
44e56f3 Merge pull request #591 from ninp0/master
|
155
|
+
95a841f Gemfile - Bump alt comms to latest
|
156
|
+
0d5a609 Merge pull request #590 from ninp0/master
|
157
|
+
0992275 Gemfile - Bump alt comms to latest
|
158
|
+
5a74e71 Gemfile - Bump alt comms to latest
|
159
|
+
3b76005 Merge pull request #589 from ninp0/master
|
160
|
+
8b7f2a5 Gemfile - Bump alt comms to latest
|
161
|
+
26c0ca2 Merge pull request #588 from ninp0/master
|
162
|
+
79ad44c Gemfile - Bump alt comms to latest
|
163
|
+
a8d7425 Merge pull request #587 from ninp0/master
|
164
|
+
97a5e0e Gemfile - Bump alt comms to latest
|
165
|
+
25980d4 Merge pull request #586 from ninp0/master
|
166
|
+
35679cc Gemfile - Bump alt comms to latest
|
167
|
+
ab25b41 Merge pull request #585 from ninp0/master
|
168
|
+
d6c8ec9 Gemfile - Bump alt comms to latest
|
169
|
+
72a02ca Merge pull request #584 from ninp0/master
|
170
|
+
5ad2a4b Gemfile - Bump alt comms to latest
|
171
|
+
79950a3 Merge pull request #583 from ninp0/master
|
172
|
+
087ab5b Gemfile - Bump alt comms to latest
|
173
|
+
fd0be6d Merge pull request #582 from ninp0/master
|
174
|
+
1a798d8 Gemfile - Bump alt comms to latest
|
175
|
+
082aaf8 Merge pull request #581 from ninp0/master
|
176
|
+
ae5c290 Gemfile - Bump alt comms to latest
|
177
|
+
cdf7b22 Merge pull request #580 from ninp0/master
|
178
|
+
0897768 Gemfile - Bump alt comms to latest
|
179
|
+
295a0d0 Merge pull request #579 from ninp0/master
|
180
|
+
da8e763 Replace request.pentest@0dayinc.com w/ support@0dayinc.com for all #authors methods and #rubocop tweaks
|
181
|
+
f7de536 Merge pull request #578 from ninp0/master
|
182
|
+
d412c52 Gemfile - Bump alt comms to latest
|
183
|
+
c6c15f0 Merge pull request #577 from ninp0/master
|
184
|
+
892937f Gemfile - Bump alt comms to latest
|
185
|
+
4205355 Merge pull request #576 from ninp0/master
|
186
|
+
0b9db19 Gemfile - Bump alt comms to latest
|
187
|
+
fdf4546 Merge pull request #575 from ninp0/master
|
188
|
+
66268ac Gemfile - Bump alt comms to latest
|
189
|
+
43fa953 Merge pull request #574 from ninp0/master
|
190
|
+
3575846 Merge pull request #573 from ninp0/master
|
data/Gemfile
CHANGED
@@ -22,7 +22,7 @@ gem 'brakeman', '6.1.2'
|
|
22
22
|
gem 'bson', '5.0.0'
|
23
23
|
gem 'bundler', '>=2.5.14'
|
24
24
|
gem 'bundler-audit', '0.9.1'
|
25
|
-
gem 'bunny', '2.
|
25
|
+
gem 'bunny', '2.23.0'
|
26
26
|
gem 'colorize', '1.1.0'
|
27
27
|
gem 'credit_card_validations', '6.2.0'
|
28
28
|
gem 'eventmachine', '1.2.7'
|
@@ -47,7 +47,7 @@ gem 'jwt', '2.8.2'
|
|
47
47
|
gem 'libusb', '0.7.1'
|
48
48
|
gem 'luhn', '1.0.2'
|
49
49
|
gem 'mail', '2.8.1'
|
50
|
-
gem 'meshtastic', '0.0.
|
50
|
+
gem 'meshtastic', '0.0.71'
|
51
51
|
gem 'metasm', '1.0.5'
|
52
52
|
gem 'mongo', '2.20.0'
|
53
53
|
gem 'msfrpc-client', '1.1.2'
|
@@ -69,7 +69,7 @@ gem 'pry', '0.14.2'
|
|
69
69
|
gem 'pry-doc', '1.5.0'
|
70
70
|
gem 'rake', '13.2.1'
|
71
71
|
gem 'rb-readline', '0.5.5'
|
72
|
-
gem 'rbvmomi2', '3.
|
72
|
+
gem 'rbvmomi2', '3.8.0'
|
73
73
|
gem 'rdoc', '6.7.0'
|
74
74
|
gem 'rest-client', '2.1.0'
|
75
75
|
gem 'rex', '2.0.13'
|
@@ -79,7 +79,7 @@ gem 'rspec', '3.13.0'
|
|
79
79
|
gem 'rtesseract', '3.1.3'
|
80
80
|
gem 'rubocop', '1.64.1'
|
81
81
|
gem 'rubocop-rake', '0.6.0'
|
82
|
-
gem 'rubocop-rspec', '3.0.
|
82
|
+
gem 'rubocop-rspec', '3.0.2'
|
83
83
|
gem 'ruby-audio', '1.6.1'
|
84
84
|
gem 'ruby-nmap', '1.0.3'
|
85
85
|
gem 'ruby-saml', '1.16.0'
|
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.200]:001 >>> PWN.help
|
41
41
|
```
|
42
42
|
|
43
43
|
[](https://youtu.be/G7iLUY4FzsI)
|
@@ -52,7 +52,7 @@ $ rvm use ruby-3.3.3@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.200]:001 >>> PWN.help
|
56
56
|
```
|
57
57
|
|
58
58
|
If you're using a multi-user install of RVM do:
|
@@ -62,7 +62,7 @@ $ rvm use ruby-3.3.3@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.200]: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:
|
data/bin/pwn_sast
CHANGED