mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-10 04:33:31 +08:00
Fingerprinting Gitlab can help the hacker in multiple ways, Sometimes hackers can find the signup or explore option open and using these he can escalate the access further.
20 lines
352 B
YAML
20 lines
352 B
YAML
id: Gitlab-Detect
|
|
|
|
info:
|
|
name: Detect Gitlab
|
|
author: ehsahil
|
|
severity: low
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}/users/sign_in"
|
|
- "{{BaseURL}}/users/sign_up"
|
|
- "{{BaseURL}}/explore"
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "GitLab"
|
|
- "Register for GitLab"
|
|
- "Explore GitLab"
|