wpscan 3.8.4 → 3.8.5
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/app/models/interesting_finding.rb +22 -3
- data/lib/wpscan/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 374d883728b24244fefce17ac5dc35d2fb8ae1d34b161e46cfbe4019d6bcb93e
|
|
4
|
+
data.tar.gz: e38d72546d42547c7bfe79d1883db8e7d12dc04ccfc181c572c8b395661d6b65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b44e8757063dfc2e9aef1a0144c07fb8e5bb4f102e7681442fbdf1b86883bc2677030564b193388f174ddb743fc4dd6ed94e7d40827e8fe28883787a7cf2ca0
|
|
7
|
+
data.tar.gz: e8149cb867feb810b996bf3df2ce1df85b7ab8e329c5b8577eb7cf9d516887935f6f6802411adbca4552ba9ac1999dcd1f32ecd4489076123dab75171865c91c
|
|
@@ -7,10 +7,11 @@ module WPScan
|
|
|
7
7
|
include References
|
|
8
8
|
end
|
|
9
9
|
|
|
10
|
-
#
|
|
11
|
-
# Some classes are empty for the #type to be correctly displayed (as taken from the self.class from the parent)
|
|
12
|
-
#
|
|
13
10
|
class BackupDB < InterestingFinding
|
|
11
|
+
def to_s
|
|
12
|
+
@to_s ||= "A backup directory has been found: #{url}"
|
|
13
|
+
end
|
|
14
|
+
|
|
14
15
|
# @return [ Hash ]
|
|
15
16
|
def references
|
|
16
17
|
@references ||= { url: ['https://github.com/wpscanteam/wpscan/issues/422'] }
|
|
@@ -18,6 +19,10 @@ module WPScan
|
|
|
18
19
|
end
|
|
19
20
|
|
|
20
21
|
class DebugLog < InterestingFinding
|
|
22
|
+
def to_s
|
|
23
|
+
@to_s ||= "Debug Log found: #{url}"
|
|
24
|
+
end
|
|
25
|
+
|
|
21
26
|
# @ return [ Hash ]
|
|
22
27
|
def references
|
|
23
28
|
@references ||= { url: ['https://codex.wordpress.org/Debugging_in_WordPress'] }
|
|
@@ -40,6 +45,10 @@ module WPScan
|
|
|
40
45
|
end
|
|
41
46
|
|
|
42
47
|
class FullPathDisclosure < InterestingFinding
|
|
48
|
+
def to_s
|
|
49
|
+
@to_s ||= "Full Path Disclosure found: #{url}"
|
|
50
|
+
end
|
|
51
|
+
|
|
43
52
|
# @return [ Hash ]
|
|
44
53
|
def references
|
|
45
54
|
@references ||= { url: ['https://www.owasp.org/index.php/Full_Path_Disclosure'] }
|
|
@@ -71,6 +80,9 @@ module WPScan
|
|
|
71
80
|
end
|
|
72
81
|
|
|
73
82
|
class Readme < InterestingFinding
|
|
83
|
+
def to_s
|
|
84
|
+
@to_s ||= "WordPress readme found: #{url}"
|
|
85
|
+
end
|
|
74
86
|
end
|
|
75
87
|
|
|
76
88
|
class Registration < InterestingFinding
|
|
@@ -81,6 +93,10 @@ module WPScan
|
|
|
81
93
|
end
|
|
82
94
|
|
|
83
95
|
class TmmDbMigrate < InterestingFinding
|
|
96
|
+
def to_s
|
|
97
|
+
@to_s ||= "ThemeMakers migration file found: #{url}"
|
|
98
|
+
end
|
|
99
|
+
|
|
84
100
|
# @return [ Hash ]
|
|
85
101
|
def references
|
|
86
102
|
@references ||= { packetstorm: [131_957] }
|
|
@@ -95,6 +111,9 @@ module WPScan
|
|
|
95
111
|
end
|
|
96
112
|
|
|
97
113
|
class UploadSQLDump < InterestingFinding
|
|
114
|
+
def to_s
|
|
115
|
+
@to_s ||= "SQL Dump found: #{url}"
|
|
116
|
+
end
|
|
98
117
|
end
|
|
99
118
|
|
|
100
119
|
class WPCron < InterestingFinding
|
data/lib/wpscan/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wpscan
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.8.
|
|
4
|
+
version: 3.8.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- WPScanTeam
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-07-
|
|
11
|
+
date: 2020-07-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cms_scanner
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.12.
|
|
19
|
+
version: 0.12.1
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.12.
|
|
26
|
+
version: 0.12.1
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: bundler
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|