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 +4 -4
- data/README.md +3 -3
- data/lib/pwn/version.rb +1 -1
- data/spec/lib/pwn/ai/agent/assembly_spec.rb +3 -3
- data/spec/lib/pwn/ai/agent/btc_spec.rb +3 -3
- data/spec/lib/pwn/ai/agent/burp_suite_spec.rb +3 -3
- data/spec/lib/pwn/ai/agent/gqrx_spec.rb +3 -3
- data/spec/lib/pwn/ai/agent/hacker_one_spec.rb +3 -3
- data/spec/lib/pwn/ai/agent/sast_spec.rb +3 -3
- data/spec/lib/pwn/ai/agent/transparent_browser_spec.rb +3 -3
- data/spec/lib/pwn/ai/agent_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a69023415c8ba919a4f605419ffee08d2b208cbace09147b7afa5a6af9525353
|
|
4
|
+
data.tar.gz: f8f3b7c0b5bd8f4faad841970f7b86ff82c11e206a7743a1fb5d32a54b77aabb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
40
|
+
pwn[v0.5.541]:001 >>> PWN.help
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
[](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.
|
|
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.
|
|
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
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
require 'spec_helper'
|
|
4
4
|
|
|
5
5
|
describe PWN::AI::Agent::Assembly do
|
|
6
|
-
it '
|
|
7
|
-
|
|
8
|
-
expect(
|
|
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 '
|
|
7
|
-
|
|
8
|
-
expect(
|
|
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 '
|
|
7
|
-
|
|
8
|
-
expect(
|
|
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 '
|
|
7
|
-
|
|
8
|
-
expect(
|
|
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 '
|
|
7
|
-
|
|
8
|
-
expect(
|
|
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 '
|
|
7
|
-
|
|
8
|
-
expect(
|
|
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 '
|
|
7
|
-
|
|
8
|
-
expect(
|
|
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
|