40 lines
715 B
YAML
40 lines
715 B
YAML
|
id: chatgpt-web-unauth
|
||
|
|
||
|
info:
|
||
|
name: ChatGPT Web - Unauthorized Access
|
||
|
author: SleepingBag945
|
||
|
severity: high
|
||
|
metadata:
|
||
|
max-request: 1
|
||
|
verified: true
|
||
|
fofa-query: app="Chatgpt-web"
|
||
|
tags: chatgpt,unauth,misconfig
|
||
|
|
||
|
http:
|
||
|
- raw:
|
||
|
- |
|
||
|
POST /api/session HTTP/1.1
|
||
|
Host: {{Hostname}}
|
||
|
Content-Type: application/json
|
||
|
|
||
|
{}
|
||
|
|
||
|
matchers-condition: and
|
||
|
matchers:
|
||
|
- type: word
|
||
|
part: body
|
||
|
words:
|
||
|
- '"status":"Success"'
|
||
|
- '"auth":false'
|
||
|
- 'ChatGPTAPI'
|
||
|
condition: and
|
||
|
|
||
|
- type: word
|
||
|
part: header
|
||
|
words:
|
||
|
- "application/json"
|
||
|
|
||
|
- type: status
|
||
|
status:
|
||
|
- 200
|