GitBook: [#3259] No subject

This commit is contained in:
CPol 2022-06-19 14:00:50 +00:00 committed by gitbook-bot
parent ca7dc27024
commit d9fe1452c7
No known key found for this signature in database
GPG key ID: 07D2180C7B12D0FF

View file

@ -157,6 +157,14 @@ sudo python3 -m http.server 80
As Web Sockets are a mechanism to **send data to server side and client side**, depending on how the server and client handles the information, **Web Sockets can be used to exploit several other vulnerabilities like XSS, SQLi or any other common web vuln using input of s user from a websocket.**
## **WebSocket Smuggling**
This vulnerability could allow you to **bypass reverse proxies restrictions** by making them believe that a **websocket communication was stablished** (even if it isn't true). This could allow an attacker to **access hidden endpoints**. For more information check the following page:
{% content-ref url="h2c-smuggling.md" %}
[h2c-smuggling.md](h2c-smuggling.md)
{% endcontent-ref %}
## References
{% embed url="https://portswigger.net/web-security/websockets#intercepting-and-modifying-websocket-messages" %}