Digging experience | account hijacking using cross site WebSocket hijacking (CSWH)

*The relevant vulnerabilities involved in this paper have been submitted to the manufacturer and repaired. This paper is only limited to technical research and discussion. It is strictly prohibited to use it for illegal purposes, otherwise all the consequences will be borne by itself. What this article shares is that in a vulnerability test, ...

Posted by FastLaneHosting on Mon, 17 Jan 2022 21:08:46 +0100

Two practices on Websocket (Vue project realizes online chat & Angular project pushes chart data in real time on the home page)

Abstract: This article records my two practical experiences in using websocket. In the first practice, I stepped on a lot of holes. The second practice is handy, but many theories are still lacking. Through this article, from theory to practice, we won it all in one fell swoop. catalogue 1, Websocket theory (1) What is Websocket? (2) What i ...

Posted by SithLordKyle on Mon, 17 Jan 2022 02:36:14 +0100

Memo on pushing abnormal messages of nailing robot

The developed quick selling link connects with Qimen's user-defined interface and data security out of the tower project. Because the project needs to be deployed to the stone gathering tower, but it is troublesome to view the abnormal information, which is not conducive to troubleshooting the error information, so it is considered to use t ...

Posted by php-coder on Sun, 16 Jan 2022 09:12:47 +0100

WebSocket (5 minutes to get you started)

WebSocket Background: The HTTP protocol has a flaw: communication can only be initiated by the client. This one-way request is doomed to be very troublesome for the client to know if the server has continuous state changes. We can only use "Polling" : every once in a while, send a query to see if the server has any new information. ...

Posted by LordTyphon on Wed, 12 Jan 2022 11:31:45 +0100

SpringBoot simply integrates WebSocket

WebSocket overview websocket protocol is an application layer protocol based on TCP/IP, which is used to realize full duplex communication between server and client. The difference between WebSocket and http The http protocol we usually use is that the client requests the server's data, and then the server responds to the client after recei ...

Posted by UnknownPlayer on Wed, 05 Jan 2022 22:46:15 +0100

web project polling practice

Recently, two different methods have been used to realize instant messaging: one is polling based on timer (cooperating with the back-end within the project), and the other is two-way communication based on websocket (integrating and cooperating with the third party). Next, the basic use, advantages and disadvantages of these two different inst ...

Posted by kyoru on Mon, 27 Dec 2021 03:22:05 +0100

Drink, talk and chat, based on vue3 0+Tornado6. 1 + redis PubSub mode non blocking real-time communication chat system

The original text is reproduced from "Liu Yue's technology blog" https://v3u.cn/a_id_202"Desire for expression" is a powerful "source power" in the history of human growth. Engels pointed out bluntly that human beings in the ignorant era, that is, the low-level stage, "take fruits, nuts and roots as food; the ...

Posted by frankienrg on Tue, 21 Dec 2021 23:21:53 +0100

Development of chat device under network communication (TCP actual combat Development) application development technology of connecting two computers -- socket module

TCP server (server) If you want to perform the functions of the tcp server, you need to perform the following process Socket create a socketThe bind method binds IP and portlisten makes the socket passiveaccept waits for unprovoked links (you must create a new listening socket and redefine a new receiver)recv/send receive send data For accep ...

Posted by abitlikehomer on Tue, 21 Dec 2021 08:50:11 +0100

Parsing WeNet cloud reasoning deployment code

Abstract: WeNet is an open source end-to-end ASR toolkit. Compared with open source voice projects such as ESPnet, its biggest advantage is that it provides a complete set of tool chain from training to deployment, making the industrial implementation of ASR services easier. This article is shared from Huawei cloud community< WeNet cloud ...

Posted by MarkR on Tue, 14 Dec 2021 10:52:06 +0100

SpringBoot2+WebSocket chat application practice

What is WebSocket?     WebSocket protocol is a new network protocol based on TCP. It implements full duplex communication between the browser and the server -- allowing the server to actively send information to the client Why do I need WebSocket? People who come into contact with WebSocket for the first time will ask the same question: we alr ...

Posted by ikelove on Fri, 03 Dec 2021 16:38:30 +0100