Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMHSanaei <ho3ein.sanaei@gmail.com>2026-05-04 17:36:33 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2026-05-04 17:39:29 +0300
commitc90f8a05bf792e61db250f210834cdabcc0b7906 (patch)
treed2d610e9dc3e1a856a6f9be2510f4a323ee0126c /web/html/form/stream/stream_settings.html
parent9f96ef83ece25934dfadec69aff3fe91e14301cd (diff)
fix(security): sanitize remote IP headers and escape log viewer output
#4135
Diffstat (limited to 'web/html/form/stream/stream_settings.html')
-rw-r--r--web/html/form/stream/stream_settings.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/web/html/form/stream/stream_settings.html b/web/html/form/stream/stream_settings.html
index a3df1a22..2a918305 100644
--- a/web/html/form/stream/stream_settings.html
+++ b/web/html/form/stream/stream_settings.html
@@ -17,42 +17,42 @@
<!-- tcp -->
<template v-if="inbound.stream.network === 'tcp'">
- {{template "form/streamTCP"}}
+ {{template "form/streamTCP" .}}
</template>
<!-- kcp -->
<template v-if="inbound.stream.network === 'kcp'">
- {{template "form/streamKCP"}}
+ {{template "form/streamKCP" .}}
</template>
<!-- ws -->
<template v-if="inbound.stream.network === 'ws'">
- {{template "form/streamWS"}}
+ {{template "form/streamWS" .}}
</template>
<!-- grpc -->
<template v-if="inbound.stream.network === 'grpc'">
- {{template "form/streamGRPC"}}
+ {{template "form/streamGRPC" .}}
</template>
<!-- hysteria -->
<template v-if="inbound.stream.network === 'hysteria'">
- {{template "form/streamHysteria"}}
+ {{template "form/streamHysteria" .}}
</template>
<!-- httpupgrade -->
<template v-if="inbound.stream.network === 'httpupgrade'">
- {{template "form/streamHTTPUpgrade"}}
+ {{template "form/streamHTTPUpgrade" .}}
</template>
<!-- xhttp -->
<template v-if="inbound.stream.network === 'xhttp'">
- {{template "form/streamXHTTP"}}
+ {{template "form/streamXHTTP" .}}
</template>
<!-- sockopt -->
-<template> {{template "form/streamSockopt"}} </template>
+<template> {{template "form/streamSockopt" .}} </template>
<!-- finalmask -->
-<template> {{template "form/streamFinalMask"}} </template>
+<template> {{template "form/streamFinalMask" .}} </template>
{{end}} \ No newline at end of file