You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a prominent "Development Use Only" warning admonition to the top of
Server.md, covering the risks of exposing the dev server to untrusted
parties, custom middleware, proxy credential leakage, and the
`--accept-remote-connections` flag.
The UI5 Server is intended for **local development purposes only**. It must not be exposed to untrusted parties or used as a public-facing web server.
9
+
10
+
The server does **not** implement safeguards against various network-based attacks — this is by design, as it is not meant to serve production traffic.
11
+
12
+
Please be aware of the following risks when using the server:
13
+
14
+
- **Custom middleware** from third parties can execute arbitrary code on your system and may introduce additional security vulnerabilities when the server is exposed to a network.
15
+
- **Proxy middleware** configured with credentials may enable unauthorized access to the target system for other parties on the same network.
16
+
- Using `--accept-remote-connections` makes the server reachable from all hosts on your network, which significantly increases the attack surface.
17
+
7
18
## Standard Middleware
8
19
9
20
All available standard middleware are listed below in the order of their execution.
0 commit comments