File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ $ rvm use ruby-3.1.2@pwn
37
37
$ rvm list gemsets
38
38
$ gem install --verbose pwn
39
39
$ pwn
40
- pwn[v0.4.450 ]:001 >>> PWN.help
40
+ pwn[v0.4.451 ]: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.1.2@pwn
52
52
$ gem uninstall --all --executables pwn
53
53
$ gem install --verbose pwn
54
54
$ pwn
55
- pwn[v0.4.450 ]:001 >>> PWN.help
55
+ pwn[v0.4.451 ]:001 >>> PWN.help
56
56
```
57
57
58
58
Original file line number Diff line number Diff line change @@ -275,15 +275,17 @@ begin
275
275
nessus_obj : nessus_obj ,
276
276
name : tag_name
277
277
)
278
+ tag_uuid = tag [ :uuid ] if tag . any?
279
+ tag_uuids_arr . push ( tag_uuid ) if tag . any?
278
280
next if tag . any?
279
281
280
- tag_uuid = tag [ :uuid ]
281
- tag_uuids_arr . push ( tag_uuid )
282
- PWN ::Plugins ::NessusCloud . create_tag (
282
+ new_tag = PWN ::Plugins ::NessusCloud . create_tag (
283
283
nessus_obj : nessus_obj ,
284
284
category : tag_category_name ,
285
285
value : tag_name
286
286
)
287
+ tag_uuid = new_tag [ :uuid ]
288
+ tag_uuids_arr . push ( tag_uuid )
287
289
end
288
290
289
291
settings [ :tag_targets ] = tag_uuids_arr
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.450 '
4
+ VERSION = '0.4.451 '
5
5
end
You can’t perform that action at this time.
0 commit comments