nuclei-templates/http/exposures/files/yarn-lock.yaml

38 lines
786 B
YAML

id: yarn-lock
info:
name: Yarn Lock File Disclosure
author: oppsec,noraj
severity: info
description: |
The yarn.lock file stores the versions of each Yarn dependency installed. It's a lock file for package.json.
reference:
- https://classic.yarnpkg.com/lang/en/docs/yarn-lock/
metadata:
max-request: 1
tags: exposure,files,yarn
http:
- method: GET
path:
- "{{BaseURL}}/yarn.lock"
matchers-condition: and
matchers:
- type: word
part: body
words:
- "# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY."
- "# yarn lockfile v1"
condition: and
- type: word
part: header
words:
- "text/html"
- type: status
status:
- 200