mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-13 19:02:15 +01:00
16 lines
407 B
HTML
16 lines
407 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>WSS SSRF</title>
|
|
</head>
|
|
<body>
|
|
<h1>WSS SSRF</h1>
|
|
<script type="application/javascript">
|
|
// wss:// (TLS) handshakes tunnel through the proxy via CONNECT, the same
|
|
// path as ws://, and must be filtered identically.
|
|
new WebSocket("wss://127.0.0.1:9999/wss-test");
|
|
</script>
|
|
</body>
|
|
</html>
|