diff --git a/technologies/livehelperchat-detect.yaml b/technologies/livehelperchat-detect.yaml index c943357907..06d5d5c06a 100644 --- a/technologies/livehelperchat-detect.yaml +++ b/technologies/livehelperchat-detect.yaml @@ -2,9 +2,10 @@ id: livehelperchat-detect info: name: Live Helper Chat Detect - author: pikpikcu + author: pikpikcu,ricardomaia severity: info metadata: + verified: true fofa-query: title="Live Helper Chat" tags: livehelperchat,tech @@ -12,16 +13,28 @@ requests: - method: GET path: - "{{BaseURL}}" + - "{{BaseURL}}/doc/CHANGELOG.txt" + - "{{BaseURL}}/doc/README.txt" - matchers-condition: and + stop-at-first-match: true + redirects: true + max-redirects: 2 + matchers-condition: or matchers: - - type: word - part: body - words: - - 'href="http://livehelperchat.com"' - - 'Live Helper Chat' - condition: and - - type: status - status: - - 200 + - type: regex + part: body + regex: + - "(?i)Live.Helper.Chat" + + - type: regex + regex: + - '(?i)Copyright.\(c\).2019.Remigijus.Kiminas' + + extractors: + - type: regex + name: version + part: body + group: 1 + regex: + - '^(?i)((\d+\.)?(\d+\.)?(\*|\d+))v'