Skip to content

Commit 65d2b63

Browse files
committed
Update vulnerable version
1 parent 77c3ce5 commit 65d2b63

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

documentation/modules/exploit/linux/http/dtale_rce_cve_2025_0655.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,16 @@ Once enabled, the /test-filter endpoint of the Custom Filters functionality can
88

99
The vulnerability affects:
1010

11-
* 3.10.0 <= D-Tale <= 3.15.1
11+
* D-Tale <= 3.15.1
1212

1313
This module was successfully tested on:
1414

1515
* D-Tale 3.15.1 installed on Ubuntu 24.04
1616
* D-Tale 3.12.0 installed on Ubuntu 22.04
1717
* D-Tale 3.10.0 installed on Ubuntu 22.04
18+
* D-Tale 3.0.0 installed on Ubuntu 22.04
19+
* D-Tale 2.5.1 installed on Ubuntu 22.04
20+
* D-Tale 2.4.0 installed on Ubuntu 22.04
1821

1922

2023
### Installation

modules/exploits/linux/http/dtale_rce_cve_2025_0655.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def check
8989
return Exploit::CheckCode::Unknown('Failed to get version element.') if version_element.blank?
9090

9191
version = Rex::Version.new(version_element&.text)
92-
return Exploit::CheckCode::Safe("Version #{version} detected, which is not vulnerable.") unless version.between?(Rex::Version.new('3.10.0'), Rex::Version.new('3.15.1'))
92+
return Exploit::CheckCode::Safe("Version #{version} detected, which is not vulnerable.") unless version <= Rex::Version.new('3.15.1')
9393

9494
Exploit::CheckCode::Appears("Version #{version} detected.")
9595
end

0 commit comments

Comments
 (0)