Skip to content

Commit 3ff685b

Browse files
committed
fix three typos
1 parent 7fd59b9 commit 3ff685b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

documentation/modules/exploit/multi/http/cleo_rce_cve_2024_55956.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ can be found [here](https://cleo-infoeng.s3.us-east-2.amazonaws.com/PDF/LexiCom/
1111
During testing of this module Cleo LexiCom was used. On Windows you will download the `install.exe` file and on Linux
1212
you will download the `install.bin` file. Running the installer to complete the installation.
1313

14-
By default, the HTTP service will listen on TCP port 5080, so you will need to allow inbound connection to this port
15-
in your firewall.
14+
By default, the HTTP service will listen on TCP port 5080, so you will need to allow inbound connections to this port
15+
from your firewall.
1616

1717
If testing the default Windows payloads, you should disable Defender.
1818

modules/exploits/multi/http/cleo_rce_cve_2024_55956.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def initialize(info = {})
3535
'DisclosureDate' => '2024-12-09',
3636
'Platform' => %w[java win linux unix],
3737
'Arch' => [ARCH_JAVA, ARCH_CMD],
38-
'Privileged' => true, # 'NT AUTHORITY\SYSTEM' on Windows. On Linux it depends how the product was installed.
38+
'Privileged' => true, # 'NT AUTHORITY\SYSTEM' on Windows. On Linux it depends on how the product was installed.
3939
'Targets' => [
4040
[
4141
# Tested against Cleo LexiCom/5.8.0.21 on Windows Server 2022, with payloads:
@@ -94,7 +94,7 @@ def check
9494

9595
return CheckCode::Unknown('Connection failed') unless res
9696

97-
# We expect the server to respond with a HTTP Server header like "Cleo LexiCom/5.8.0.0 (Windows Server 2022)".
97+
# We expect the server to respond with an HTTP Server header like "Cleo LexiCom/5.8.0.0 (Windows Server 2022)".
9898
# Note, the target product may be either LexiCom, VLTrader, or Harmony.
9999
if res.headers.key?('Server') && (res.headers['Server'] =~ %r{cleo\s+(\blexicom\b|\bvltrader\b|\bharmony\b)/(\d+\.\d+\.\d+\.\d+)}i)
100100

0 commit comments

Comments
 (0)