30 lines
652 B
YAML
30 lines
652 B
YAML
|
id: package-json
|
||
|
|
||
|
info:
|
||
|
name: npm package.json disclosure
|
||
|
author: geeknik & afaq
|
||
|
severity: info
|
||
|
description: All npm packages contain a file, usually in the project root, called package.json - this file holds various metadata relevant to the project.
|
||
|
|
||
|
requests:
|
||
|
- method: GET
|
||
|
path:
|
||
|
- "{{BaseURL}}/package.json"
|
||
|
- "{{BaseURL}}/package-lock.json"
|
||
|
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: word
|
||
|
words:
|
||
|
- "name"
|
||
|
- "version"
|
||
|
condition: and
|
||
|
|
||
|
- type: word
|
||
|
words:
|
||
|
- "application/json"
|
||
|
part: header
|
||
|
|
||
|
- type: status
|
||
|
status:
|
||
|
- 200
|