pwn 0.4.495 → 0.4.496
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/README.md +2 -2
- data/bin/pwn_nessus_cloud_scan_crud +6 -6
- data/lib/pwn/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9a616acd502b984f546b0ab44705a102f9c6f54e4db9947e660351f47e310f77
|
|
4
|
+
data.tar.gz: 66cfa98e19408bbd09c81c99042006ea9b4ee63bbb2027ea9cffdbf54094ebdf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a902740bc9f716635eb82eaa32fcddae58be0ad6478c72e7c60be8c9fffc85e2450b7e0987fe107ff24b17d65331632a545e75624ef98b3f0aa62f30e729b863
|
|
7
|
+
data.tar.gz: 12abb33a42e8681e6e45b279633e490302391e5a32c6a53eff27a8901786beab5835251b37e22975e55a0b0c26bf23bb8737516c8a3858483c729258c8eb724b
|
data/README.md
CHANGED
|
@@ -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.
|
|
40
|
+
pwn[v0.4.496]:001 >>> PWN.help
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
[](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.
|
|
55
|
+
pwn[v0.4.496]:001 >>> PWN.help
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
|
|
@@ -283,14 +283,14 @@ begin
|
|
|
283
283
|
)
|
|
284
284
|
tag_uuid = new_tag[:uuid]
|
|
285
285
|
tag_uuids_arr.push(tag_uuid)
|
|
286
|
-
|
|
287
|
-
tag_assets = PWN::Plugins::NessusCloud.add_tag_to_assets(
|
|
288
|
-
nessus_obj: nessus_obj,
|
|
289
|
-
targets: text_targets,
|
|
290
|
-
tag_uuids: tag_uuids_arr
|
|
291
|
-
)
|
|
292
286
|
end
|
|
293
287
|
|
|
288
|
+
tag_assets = PWN::Plugins::NessusCloud.add_tag_to_assets(
|
|
289
|
+
nessus_obj: nessus_obj,
|
|
290
|
+
targets: text_targets,
|
|
291
|
+
tag_uuids: tag_uuids_arr
|
|
292
|
+
)
|
|
293
|
+
|
|
294
294
|
settings[:tag_targets] = tag_uuids_arr
|
|
295
295
|
end
|
|
296
296
|
|
data/lib/pwn/version.rb
CHANGED