#Jellyfin/Swiftfin false positive bans

1 messages · Page 1 of 1 (latest)

sweet quarryBOT
#
Important Information

Thank you for getting in touch with your support request. To expedite a swift resolution, could you kindly provide the following information? Rest assured, we will respond promptly, and we greatly appreciate your patience. While you wait, please check the links below to see if this issue has been previously addressed. If you have managed to resolve it, please use run the command /resolve or press the green resolve button below.

Log Files

If you possess any log files that you believe could be beneficial, please include them at this time. By default, CrowdSec logs to /var/log/, where you will discover a corresponding log file for each component.

Guide Followed (CrowdSec Official)

If you have diligently followed one of our guides and hit a roadblock, please share the guide with us. This will help us assess if any adjustments are necessary to assist you further.

Screenshots

Please forward any screenshots depicting errors you encounter. Your visuals will provide us with a clear view of the issues you are facing.

upper jackal
#

Hey I'm back to work on Monday had 2 weeks off, I'll take a look then if I forget please @ me again

keen topaz
#

do you want to give this a shot? Hopefully I'm not using any advanced regex that CrowdSec is silently ignoring 😅
- evt.Meta.http_status == '404' && evt.Meta.http_verb == 'GET' && evt.Meta.http_path matches '^/Videos/.+?/Subtitles/[0-9]+/[0-9]+/Stream\\.?$' just add it to your existing whitelist

upper jackal
#

Seems the dollar may not work here as from the alert it has the api key so I tried these regexes

^/Videos/.+?/Subtitles/[0-9]+/[0-9]+/Stream\\.
^/Videos/[a-zA-Z0-9\\-]+/[0-9a-zA-Z]+/Subtitles/[0-9]+/[0-9]+/Stream\\.

keen topaz
upper jackal
keen topaz
#

this should work:
- evt.Meta.http_status == '404' && evt.Meta.http_verb == 'GET' && evt.Meta.http_request matches '^/Videos/.+?/Subtitles/[0-9]+/[0-9]+/Stream\\.?$'