pwn 0.4.552 → 0.4.553

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: d1e99d054c32a3080283ed394aa8711220266af5e2ca115e59e99ff55101b87e
4
- data.tar.gz: 892cf61a00ea0d0e090f0cb458635c0188fce92735a41f5b00ad7831776bf52a
3
+ metadata.gz: f6a9cf9077f04af8d1f05263ebf389014fc8d61847a2cc20d9e6f047c6c01c46
4
+ data.tar.gz: a70a0943345f3a5b4b1ee18f12d4fda080e1580dbf45af8a3dde677661d9fad7
5
5
  SHA512:
6
- metadata.gz: ffca232d03cd3f35338e22c4f58957db41f45b247097aa57c5338720c51187b87fe4f1d416426326a652a99ca608b05fed522b1844eff15ebc72eaaf09e96063
7
- data.tar.gz: 2cad3d29f583cf0307e26bc6077d86d96dc75fd7ecb4c8f4ef9053064da847ec9c91d667f2fdd9e7b099373bf843468f95c609755b21e9f074fbd127a49467c5
6
+ metadata.gz: 2fdd15710865e4d378a779ba5800f4483723b8b5a512abfb9d98a888a4d2ccc06a1bf9bffe279b84dd6e186df83ea7eec92f1f0200f28a042eef16b63d009511
7
+ data.tar.gz: b9bdf91a136054cd20b8f5aa6b12e49a8302c6812656a3bc031f157459522e5c49a395c141e4f16974472b0a45e3b9460bbba0644f7c26b45e668545a7296a28
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.552]:001 >>> PWN.help
40
+ pwn[v0.4.553]: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.552]:001 >>> PWN.help
55
+ pwn[v0.4.553]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
@@ -511,18 +511,22 @@ module PWN
511
511
 
512
512
  # TODO: Fix known issue - if remote terminates call early
513
513
  # all calls in thread pool will be stopped prematurely :-/
514
+ # This likely has something to do w/ data scoping issues in dump_session_data
514
515
  if dump_session_data.select { |s| s.include?(terminated) }.length.positive?
515
516
  reason = 'call terminated by other party'
517
+ flush_session_data
516
518
  break
517
519
  end
518
520
 
519
521
  if dump_session_data.select { |s| s.include?(unavail) }.length.positive?
520
522
  reason = 'SIP 503 (service unavailable)'
523
+ flush_session_data
521
524
  break
522
525
  end
523
526
 
524
527
  if dump_session_data.select { |s| s.include?(not_found) }.length.positive?
525
528
  reason = 'SIP 404 (not found)'
529
+ flush_session_data
526
530
  break
527
531
  end
528
532
 
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.552'
4
+ VERSION = '0.4.553'
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.552
4
+ version: 0.4.553
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.