nuclei-templates/http/exposures/files/github-gemfile-files.yaml

34 lines
785 B
YAML
Raw Normal View History

2021-07-30 12:31:05 +00:00
id: github-gemfile-files
info:
name: Github Gemfiles
author: hahwul
severity: info
description: Find github page files(Gemfile / Gemfile.lock)
2022-10-13 10:12:07 +00:00
tags: github,exposure,files
metadata:
max-request: 2
2021-07-30 12:31:05 +00:00
http:
2021-07-30 12:31:05 +00:00
- method: GET
path:
- "{{BaseURL}}/Gemfile"
- "{{BaseURL}}/Gemfile.lock"
matchers-condition: or
matchers:
- type: dsl
dsl:
- 'contains(body, "https://rubygems.org")'
- 'contains(body, "source")'
- 'contains(body, "gem")'
- 'status_code == 200'
condition: and
- type: dsl
dsl:
- 'contains(body, "https://rubygems.org")'
- 'contains(body, "remote")'
- 'contains(body, "specs")'
- 'status_code == 200'
condition: and