mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-08 19:53:15 +08:00
58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
id: generic-env
|
|
|
|
info:
|
|
name: Generic Env File Disclosure
|
|
author: kazet
|
|
severity: high
|
|
description: |
|
|
A .env file was discovered containing sensitive information like database credentials and tokens. It should not be publicly accessible.
|
|
classification:
|
|
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:L
|
|
cvss-score: 8.3
|
|
cwe-id: CWE-522
|
|
metadata:
|
|
max-request: 22
|
|
tags: config,exposure,env,vuln
|
|
|
|
http:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}{{paths}}"
|
|
payloads:
|
|
paths:
|
|
- "/.env"
|
|
- "/.env.bak"
|
|
- "/.env.dev"
|
|
- "/.env.dev.local"
|
|
- "/.env.development.local"
|
|
- "/.env.prod"
|
|
- "/.env.prod.local"
|
|
- "/.env.production"
|
|
- "/.env.production.local"
|
|
- "/.env.local"
|
|
- "/.env.example"
|
|
- "/.env.stage"
|
|
- "/.env.live"
|
|
- "/.env.backup"
|
|
- "/.env.save"
|
|
- "/.env.old"
|
|
- "/.env.www"
|
|
- "/.env_1"
|
|
- "/.env_sample"
|
|
- "/.env.{{DN}}"
|
|
- "/.env.{{SD}}"
|
|
- "/api/.env"
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: regex
|
|
part: body
|
|
regex:
|
|
- "(?mi)^[a-z_]*(KEY|TOKEN|PASS|SECRET|DB_URL|DATABASE_URL|MAILER_URL)[a-z_]*="
|
|
|
|
- type: word
|
|
part: body
|
|
negative: true
|
|
words:
|
|
- "<html"
|
|
# digest: 4a0a00473045022019afe5f7c7ca0f3f0223b4371a0455e663f66abdc3f2389ea46df360aa9990e1022100b72f0ff3d56a9384d23398dd059a601d33c038193739a9176d4e14d6755c2921:922c64590222798bb761d5b6d8e72950 |