Skip to content

Commit d89fd9c

Browse files
authored
Merge pull request #336 from ninp0/master
pwn_bdba_groups Driver - #bugfix
2 parents ac6ce49 + 68a9342 commit d89fd9c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ gem 'nokogiri-diff', '0.2.0'
5353
gem 'oily_png', '1.2.1'
5454
gem 'open3', '0.1.2'
5555
gem 'os', '1.1.4'
56-
gem 'packetfu', '1.1.13'
56+
gem 'packetfu', '2.0.0'
5757
gem 'pdf-reader', '2.11.0'
5858
gem 'pg', '1.5.3'
5959
gem 'pry', '0.14.2'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ rvm use ruby-3.2.2@pwn
3737
$ rvm list gemsets
3838
$ gem install --verbose pwn
3939
$ pwn
40-
pwn[v0.4.769]:001 >>> PWN.help
40+
pwn[v0.4.770]:001 >>> PWN.help
4141
```
4242

4343
[![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
5252
$ gem uninstall --all --executables pwn
5353
$ gem install --verbose pwn
5454
$ pwn
55-
pwn[v0.4.769]:001 >>> PWN.help
55+
pwn[v0.4.770]:001 >>> PWN.help
5656
```
5757

5858

bin/pwn_bdba_groups

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ begin
6060
group_arr_sorted = group_arr.sort_by { |g| g[:id] }
6161
group = group_arr_sorted.last
6262

63-
if group.nil?
63+
if list_group_name && group.nil?
6464
puts 'BDBA Group Not Found.'
6565
exit 1
6666
end

lib/pwn/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module PWN
4-
VERSION = '0.4.769'
4+
VERSION = '0.4.770'
55
end

0 commit comments

Comments
 (0)