Skip to content

Commit b7b1dc1

Browse files
authored
Merge pull request #279 from ninp0/master
pwn_diff_xml_files Driver - Github Copilot attempt #3
2 parents cf194d7 + 6f36641 commit b7b1dc1

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ gem 'net-openvpn', '0.8.7'
4949
gem 'net-smtp', '0.3.3'
5050
gem 'nexpose', '7.3.0'
5151
gem 'nokogiri', '1.15.0'
52+
gem 'nokogiri-diff', '0.2.0'
5253
gem 'oily_png', '1.2.1'
5354
gem 'os', '1.1.4'
5455
gem 'packetfu', '1.1.13'

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.696]:001 >>> PWN.help
40+
pwn[v0.4.697]: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.696]:001 >>> PWN.help
55+
pwn[v0.4.697]:001 >>> PWN.help
5656
```
5757

5858

bin/pwn_diff_xml_files

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env ruby
22
# frozen_string_literal: true
33

4-
require 'nokogiri'
4+
require 'nokogiri/diff'
55
require 'optparse'
66

77
opts = {}

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

0 commit comments

Comments
 (0)