pwn 0.4.551 → 0.4.552

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37c116ff3072536f637e3b85299339fcff43cfae08fa907f51ef6db8f74bfeed
4
- data.tar.gz: bf01ca52b18146da07b3aa882981be1484fc56a5fc72845415056a0d61438245
3
+ metadata.gz: d1e99d054c32a3080283ed394aa8711220266af5e2ca115e59e99ff55101b87e
4
+ data.tar.gz: 892cf61a00ea0d0e090f0cb458635c0188fce92735a41f5b00ad7831776bf52a
5
5
  SHA512:
6
- metadata.gz: 4c4d7a6f950288b53d8850222c6a7f0ff22c54bf87de32cd7d842fde7ecef121374f1c1c6412f76fb26fb3fefc93b711b7b18e270d9b674c713e630f2174e381
7
- data.tar.gz: 18553d6f48fe65b9a4885f17a912c58953539fa044da6e1f8d70a1d81bf860789cf8b8626f75b612ade3962dc7692714b1d15d857f657cf5f5770983d55cb3f8
6
+ metadata.gz: ffca232d03cd3f35338e22c4f58957db41f45b247097aa57c5338720c51187b87fe4f1d416426326a652a99ca608b05fed522b1844eff15ebc72eaaf09e96063
7
+ data.tar.gz: 2cad3d29f583cf0307e26bc6077d86d96dc75fd7ecb4c8f4ef9053064da847ec9c91d667f2fdd9e7b099373bf843468f95c609755b21e9f074fbd127a49467c5
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.551]:001 >>> PWN.help
40
+ pwn[v0.4.552]: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.551]:001 >>> PWN.help
55
+ pwn[v0.4.552]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -187,8 +187,8 @@ module PWN
187
187
  next unless File.exist?(screenlog_path)
188
188
 
189
189
  # Continuously consume contents of screenlog_path
190
- session_data = File.readlines(screenlog_path)
191
- session_data.delete_if do |line|
190
+ @session_data = File.readlines(screenlog_path)
191
+ @session_data.delete_if do |line|
192
192
  line.include?('ua: using best effort AF: af=AF_INET')
193
193
  end
194
194
  end
@@ -203,7 +203,7 @@ module PWN
203
203
  # session_data = PWN::Plugins::BareSIP.dump_session_data
204
204
 
205
205
  public_class_method def self.dump_session_data
206
- session_data
206
+ @session_data
207
207
  rescue StandardError => e
208
208
  raise e
209
209
  end
data/lib/pwn/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PWN
4
- VERSION = '0.4.551'
4
+ VERSION = '0.4.552'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pwn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.551
4
+ version: 0.4.552
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.