pwn 0.5.540 → 0.5.541

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: 4b2d2483fa867836d572d647e492b87e2f416dd89ead314312e25752c3cfe8e7
4
- data.tar.gz: 9b207c60754610b4beda51a0cfd6d1f3ae7bdf1b4c26005af4f13bc408b32c75
3
+ metadata.gz: a69023415c8ba919a4f605419ffee08d2b208cbace09147b7afa5a6af9525353
4
+ data.tar.gz: f8f3b7c0b5bd8f4faad841970f7b86ff82c11e206a7743a1fb5d32a54b77aabb
5
5
  SHA512:
6
- metadata.gz: 543897559c8511d19a5509610a91a64c4f457521b22ba74b2924052d88404dea754904b16e7731b07c64b8afdf82d6a339041b5086686f9ee1df63e28911adfc
7
- data.tar.gz: 0dd49afd240c38f3b7418cdec36b6ca33d16ff0f7bbb2fb4b00485767bd5db9af3075ab1c98dca459b6aed51088367e7212d3d25493ea243a1695506b12e6f72
6
+ metadata.gz: 9ef44c91c71e5cb273f4f39bcddc90f044fdbf27ff166a64228a66990641ef3750e888da32dd24b60918c9287465c02ee914dee4808efacac272b275db5aa3f2
7
+ data.tar.gz: dbfad38b57e765ab30ecfefe3ec0122f348991110af0aab1bc156ccfd43c769cf0f0b5d41cf5bbe062b6d537fece3bce2afb7134c4e1d3f065c621f44de4612b
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ cd /opt/pwn
37
37
  $ ./install.sh
38
38
  $ ./install.sh ruby-gem
39
39
  $ pwn
40
- pwn[v0.5.540]:001 >>> PWN.help
40
+ pwn[v0.5.541]: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-4.0.1@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.5.540]:001 >>> PWN.help
55
+ pwn[v0.5.541]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
  If you're using a multi-user install of RVM do:
@@ -62,7 +62,7 @@ $ rvm use ruby-4.0.1@pwn
62
62
  $ rvmsudo gem uninstall --all --executables pwn
63
63
  $ rvmsudo gem install --verbose pwn
64
64
  $ pwn
65
- pwn[v0.5.540]:001 >>> PWN.help
65
+ pwn[v0.5.541]:001 >>> PWN.help
66
66
  ```
67
67
 
68
68
  PWN periodically upgrades to the latest version of Ruby which is reflected in `/opt/pwn/.ruby-version`. The easiest way to upgrade to the latest version of Ruby from a previous PWN installation is to run the following script:
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.5.540'
4
+ VERSION = '0.5.541'
5
5
  end
@@ -3,9 +3,9 @@
3
3
  require 'spec_helper'
4
4
 
5
5
  describe PWN::AI::Agent::Assembly do
6
- it 'scan method should exist' do
7
- scan_response = PWN::AI::Agent::Assembly
8
- expect(scan_response).to respond_to :scan
6
+ it 'analyze method should exist' do
7
+ analyze_response = PWN::AI::Agent::Assembly
8
+ expect(analyze_response).to respond_to :analyze
9
9
  end
10
10
 
11
11
  it 'should display information for authors' do
@@ -3,9 +3,9 @@
3
3
  require 'spec_helper'
4
4
 
5
5
  describe PWN::AI::Agent::BTC do
6
- it 'scan method should exist' do
7
- scan_response = PWN::AI::Agent::BTC
8
- expect(scan_response).to respond_to :scan
6
+ it 'analyze method should exist' do
7
+ analyze_response = PWN::AI::Agent::BTC
8
+ expect(analyze_response).to respond_to :analyze
9
9
  end
10
10
 
11
11
  it 'should display information for authors' do
@@ -3,9 +3,9 @@
3
3
  require 'spec_helper'
4
4
 
5
5
  describe PWN::AI::Agent::BurpSuite do
6
- it 'scan method should exist' do
7
- scan_response = PWN::AI::Agent::BurpSuite
8
- expect(scan_response).to respond_to :scan
6
+ it 'analyze method should exist' do
7
+ analyze_response = PWN::AI::Agent::BurpSuite
8
+ expect(analyze_response).to respond_to :analyze
9
9
  end
10
10
 
11
11
  it 'should display information for authors' do
@@ -3,9 +3,9 @@
3
3
  require 'spec_helper'
4
4
 
5
5
  describe PWN::AI::Agent::GQRX do
6
- it 'scan method should exist' do
7
- scan_response = PWN::AI::Agent::GQRX
8
- expect(scan_response).to respond_to :scan
6
+ it 'analyze method should exist' do
7
+ analyze_response = PWN::AI::Agent::GQRX
8
+ expect(analyze_response).to respond_to :analyze
9
9
  end
10
10
 
11
11
  it 'should display information for authors' do
@@ -3,9 +3,9 @@
3
3
  require 'spec_helper'
4
4
 
5
5
  describe PWN::AI::Agent::HackerOne do
6
- it 'scan method should exist' do
7
- scan_response = PWN::AI::Agent::HackerOne
8
- expect(scan_response).to respond_to :scan
6
+ it 'analyze method should exist' do
7
+ analyze_response = PWN::AI::Agent::HackerOne
8
+ expect(analyze_response).to respond_to :analyze
9
9
  end
10
10
 
11
11
  it 'should display information for authors' do
@@ -3,9 +3,9 @@
3
3
  require 'spec_helper'
4
4
 
5
5
  describe PWN::AI::Agent::SAST do
6
- it 'scan method should exist' do
7
- scan_response = PWN::AI::Agent::SAST
8
- expect(scan_response).to respond_to :scan
6
+ it 'analyze method should exist' do
7
+ analyze_response = PWN::AI::Agent::SAST
8
+ expect(analyze_response).to respond_to :analyze
9
9
  end
10
10
 
11
11
  it 'should display information for authors' do
@@ -3,9 +3,9 @@
3
3
  require 'spec_helper'
4
4
 
5
5
  describe PWN::AI::Agent::TransparentBrowser do
6
- it 'scan method should exist' do
7
- scan_response = PWN::AI::Agent::TransparentBrowser
8
- expect(scan_response).to respond_to :scan
6
+ it 'analyze method should exist' do
7
+ analyze_response = PWN::AI::Agent::TransparentBrowser
8
+ expect(analyze_response).to respond_to :analyze
9
9
  end
10
10
 
11
11
  it 'should display information for authors' do
@@ -2,7 +2,7 @@
2
2
 
3
3
  require 'spec_helper'
4
4
 
5
- describe Pwn::AI::Agent do
5
+ describe PWN::AI::Agent do
6
6
  it 'should return data for help method' do
7
7
  help_response = Pwn::AI::Agent.help
8
8
  expect(help_response).not_to be_nil
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.5.540
4
+ version: 0.5.541
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.