nuclei-templates/http/exposures/configs/javascript-env.yaml

57 lines
1.2 KiB
YAML
Raw Normal View History

2021-06-30 10:17:58 +00:00
id: javascript-env
info:
name: JavaScript Environment Configuration - Detect
2022-03-20 22:06:28 +00:00
author: pdp,geeknik
2021-06-30 10:17:58 +00:00
severity: low
description: Multiple common JavaScript environment configuration files were detected.
2021-06-30 10:17:58 +00:00
tags: javascript,config,exposure
metadata:
max-request: 6
2021-06-30 10:17:58 +00:00
http:
2021-06-30 10:17:58 +00:00
- method: GET
path:
- "{{BaseURL}}/env.js"
- "{{BaseURL}}/env.development.js"
- "{{BaseURL}}/env.production.js"
- "{{BaseURL}}/env.test.js"
- "{{BaseURL}}/env.dev.js"
- "{{BaseURL}}/env.prod.js"
2021-06-30 12:23:27 +00:00
2021-06-30 10:17:58 +00:00
matchers-condition: and
matchers:
2021-06-30 10:37:25 +00:00
2021-06-30 10:17:58 +00:00
- type: status
status:
- 200
2021-06-30 12:23:27 +00:00
2021-06-30 13:59:26 +00:00
- type: dsl
dsl:
- "contains(tolower(all_headers), 'content-type: application/javascript')"
2021-06-30 12:23:27 +00:00
- type: word
part: body
words:
- "module.exports"
- "const audience"
- "const domain"
- "NODE_ENV"
- "LOG_LEVEL"
- "TOKEN"
- "KEY"
- "PASSWORD"
- "VERSION"
2022-03-20 22:06:28 +00:00
condition: or
2022-03-21 00:51:06 +00:00
2022-03-20 22:06:28 +00:00
- type: word
part: body
words:
- "Bootstrap"
- "jQuery"
- "CSS TRANSITION SUPPORT"
condition: or
negative: true
# Enhanced by md on 2023/02/09