Skip to content

Commit a1f7bf1

Browse files
committed
PWN::Plugins::SerialPort module - fix missing method #wait_readable #bugfix
1 parent f4c91d6 commit a1f7bf1

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ gemspec
1111
# In some circumstances custom flags are passed to gems in order
1212
# to build appropriately. Defer to ./reinstall_pwn_gemset.sh
1313
# to review these custom flags (e.g. pg, serialport, etc).
14-
gem 'activesupport', '7.0.2.3'
14+
gem 'activesupport', '7.0.2.4'
1515
gem 'anemone', '0.7.2'
1616
gem 'authy', '3.0.0'
1717
gem 'aws-sdk', '3.1.0'

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ rvm use ruby-3.1.2@pwn
3737
$ rvm list gemsets
3838
$ gem install --verbose pwn
3939
$ pwn
40-
pwn[v0.4.418]:001 >>> PWN.help
40+
pwn[v0.4.419]: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.1.2@pwn
5252
$ gem uninstall --all --executables pwn
5353
$ gem install --verbose pwn
5454
$ pwn
55-
pwn[v0.4.418]:001 >>> PWN.help
55+
pwn[v0.4.419]:001 >>> PWN.help
5656
```
5757

5858

lib/pwn/plugins/serial.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# frozen_string_literal: true
22

33
require 'serialport'
4+
require 'io/wait'
45

56
module PWN
67
module Plugins

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.418'
4+
VERSION = '0.4.419'
55
end

0 commit comments

Comments
 (0)