File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ $ rvm use ruby-3.2.2@pwn
37
37
$ rvm list gemsets
38
38
$ gem install --verbose pwn
39
39
$ pwn
40
- pwn[v0.4.791 ]:001 >>> PWN.help
40
+ pwn[v0.4.792 ]:001 >>> PWN.help
41
41
```
42
42
43
43
[ ![ Installing the pwn Security Automation Framework] ( https://raw.githubusercontent.com/0dayInc/pwn/master/documentation/pwn_install.png )] ( https://youtu.be/G7iLUY4FzsI )
@@ -52,7 +52,7 @@ $ rvm use ruby-3.2.2@pwn
52
52
$ gem uninstall --all --executables pwn
53
53
$ gem install --verbose pwn
54
54
$ pwn
55
- pwn[v0.4.791 ]:001 >>> PWN.help
55
+ pwn[v0.4.792 ]:001 >>> PWN.help
56
56
```
57
57
58
58
Original file line number Diff line number Diff line change @@ -94,12 +94,12 @@ begin
94
94
group_id : parent_id
95
95
)
96
96
97
- 30 . times do
97
+ break if scan_progress_resp [ :products ] . none? { |p | p [ :status ] == 'B' }
98
+
99
+ 10 . times do
98
100
print '.'
99
101
sleep 1
100
102
end
101
-
102
- break if scan_progress_resp [ :products ] . none? { |p | p [ :status ] == 'B' }
103
103
end
104
104
105
105
product_id = scan_progress_resp [ :products ] . find { |p | p [ :name ] == CGI . escape ( File . basename ( target_file ) ) } [ :product_id ]
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module PWN
4
- VERSION = '0.4.791 '
4
+ VERSION = '0.4.792 '
5
5
end
You can’t perform that action at this time.
0 commit comments