Skip to content

Cleo Technology - Detect

ID: cleo-detect

Severity: info

Author: rxerium

Tags: tech,detect,cleo

This template detects Cleo technologies, including VLTrader, Harmony, and LexiCom, by inspecting response headers.It also extracts version information for each identified technology.

id: cleo-detect
info:
name: Cleo Technology - Detect
author: rxerium
severity: info
description: |
This template detects Cleo technologies, including VLTrader, Harmony, and LexiCom, by inspecting response headers.It also extracts version information for each identified technology.
reference:
- https://www.cleo.com
metadata:
max-request: 1
verified: true
shodan-query: 'Server: Cleo'
tags: tech,detect,cleo
http:
- method: GET
path:
- '{{BaseURL}}'
host-redirects: true
max-redirects: 2
matchers:
- type: word
part: server
words:
- "Cleo VLTrader"
- "Cleo Harmony"
- "Cleo LexiCom"
condition: or
extractors:
- type: regex
part: server
regex:
- "Cleo VLTrader/([0-9.]+)"
- "Cleo Harmony/([0-9.]+)"
- "Cleo LexiCom/([0-9.]+)"
# digest: 480a00453043022075b8018041b16c9a20903b02bdf0602b646d057b837fda0a3dee25ac94e3fe11021f29bdab636b7a4c4be19168e5709d959efe6ac890aadf60fe08dba30cad7c43:922c64590222798bb761d5b6d8e72950

This template is used to detect vulnerabilities in web applications. It can be used with the Nuclei tool to scan for specific patterns or behaviors.

Terminal window
$ nuclei -u "URL" -t "http/technologies/cleo-detect.yaml"

View on Github