mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-21 22:53:43 -05:00
[GH-ISSUE #145] SSE mecanism is a hack, not secure at all #1776
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dextmorgn on GitHub (May 10, 2026).
Original GitHub issue: https://github.com/reconurge/flowsint/issues/145
Flowsint uses SSE (Server Sent Events) to receive logs in the terminal in real time.
The EventSource JS api doesn't provide mechanisms to insert regular auth headers in the request (+ some more limitations).
Currently, we are passing the Auth token in the url directly. This is an assumed terrible practice, that needs to be addressed.
Considering fetch-event-source from Azure.