Merge branch 'skar4444' of github.com:skar4444/nuclei-templates into skar4444
commit
3115ed4407
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,34 @@
|
||||||
|
id: gitlab-user-enumeration
|
||||||
|
|
||||||
|
info:
|
||||||
|
author: Suman_Kar
|
||||||
|
name: GitLab - User Enumeration
|
||||||
|
severity: info
|
||||||
|
tags: gitlab,enumeration,fuzz
|
||||||
|
|
||||||
|
|
||||||
|
requests:
|
||||||
|
- payloads:
|
||||||
|
dlist: helpers/wordlists/user-list.txt
|
||||||
|
attack: sniper
|
||||||
|
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
|
||||||
|
part: body
|
||||||
|
regex:
|
||||||
|
- "exists.*:true"
|
||||||
|
|
||||||
|
- type: status
|
||||||
|
status:
|
||||||
|
- 200
|
Loading…
Reference in New Issue