pwn 0.4.625 → 0.4.626

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: 0da791e6c3f9a7c97a48fbe245c2bba5b6c556102270bb3647b4dc2dc0c1bc3e
4
- data.tar.gz: 627185dfe1d6aa46ee4752ddce5866fe955eecb70322ff4636209fb7e4996bc2
3
+ metadata.gz: cf7fa86f1fa5d0ebb2ed85f5647c60e05dcb6d86d591666c2b3edf67a97ffbc5
4
+ data.tar.gz: e5ef0175b120e83ba6f036d322ebf25eaec6de36b609c5c3e48a03193fb56706
5
5
  SHA512:
6
- metadata.gz: bfeb736cd7ff4a42a515a5473b5be930d378916b8c19efe8c53b07643dd20e958b71842823c7d45da140a210578db410e2467769fd09ac341b9fc23810b70546
7
- data.tar.gz: 0e6c51e4e2231b9bf1db1d22b182468a73105e520f54752245a1bd300b5149d32d7efee7f8990aa36d0167139f5ed6e42dca51b53a9a86f276ceaf2d13ee5a32
6
+ metadata.gz: 43f0f14faf88a2b1124363bce8b50e71dbc5a8ac0db23a3836fd46c5dd642d62c0c1ab062ce91516f07dba5b9df29d2d959b4fa57ac13bbc30dcb34b457356af
7
+ data.tar.gz: 5a6003272fc9d237d2777f7c74865a99aefa51538bcc91984142c5aa421544f1c2ecc482a0d3f7edd2656150daa37a27658adcc6ec268c5fc2ad6ad153af090b
data/README.md CHANGED
@@ -37,7 +37,7 @@ $ rvm use ruby-ruby-3.2.1@pwn
37
37
  $ rvm list gemsets
38
38
  $ gem install --verbose pwn
39
39
  $ pwn
40
- pwn[v0.4.625]:001 >>> PWN.help
40
+ pwn[v0.4.626]: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-ruby-3.2.1@pwn
52
52
  $ gem uninstall --all --executables pwn
53
53
  $ gem install --verbose pwn
54
54
  $ pwn
55
- pwn[v0.4.625]:001 >>> PWN.help
55
+ pwn[v0.4.626]:001 >>> PWN.help
56
56
  ```
57
57
 
58
58
 
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.4.625'
4
+ VERSION = '0.4.626'
5
5
  end
data/pwn.gemspec CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.license = 'MIT'
18
18
  spec.metadata['rubygems_mfa_required'] = 'true'
19
19
 
20
- spec.files = `git ls-files -z`.split("\x0")
20
+ spec.files = `git ls-files -z`.split("\x00")
21
21
  spec.executables = spec.files.grep(%r{^bin/}) do |f|
22
22
  File.basename(f)
23
23
  end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ describe PWN::SAST::OuterHTML do
6
+ it 'scan method should exist' do
7
+ scan_response = PWN::SAST::OuterHTML
8
+ expect(scan_response).to respond_to :scan
9
+ end
10
+
11
+ it 'should display information for security_references' do
12
+ security_references_response = PWN::SAST::OuterHTML
13
+ expect(security_references_response).to respond_to :security_references
14
+ end
15
+
16
+ it 'should display information for authors' do
17
+ authors_response = PWN::SAST::OuterHTML
18
+ expect(authors_response).to respond_to :authors
19
+ end
20
+
21
+ it 'should display information for existing help method' do
22
+ help_response = PWN::SAST::OuterHTML
23
+ expect(help_response).to respond_to :help
24
+ end
25
+ end
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.4.625
4
+ version: 0.4.626
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.
@@ -2006,6 +2006,7 @@ files:
2006
2006
  - spec/lib/pwn/sast/log4j_spec.rb
2007
2007
  - spec/lib/pwn/sast/logger_spec.rb
2008
2008
  - spec/lib/pwn/sast/md5_spec.rb
2009
+ - spec/lib/pwn/sast/outer_html_spec.rb
2009
2010
  - spec/lib/pwn/sast/password_spec.rb
2010
2011
  - spec/lib/pwn/sast/php_input_mechanisms_spec.rb
2011
2012
  - spec/lib/pwn/sast/php_type_juggling_spec.rb