I have a problem. I developed a web application using WebRtc for individual video calls through a browser using WebRtc with a signaling server on node js (listening, for example, on port 8181).
Now I would do a MITM attack. I thought wheer Peer_1 should call two rtc peers, one for the second peer (Peer_2), one for MITM. The same goes for the second partner.
Now I thought that the signaling server should listen on a different port, for each rtc peer connection received from two peers (for example, 8282 for Peer_1 and 8383 for Peer_2).
I'm right? I think that since the signaling server implementation is an individual message.
Thus, the signaling server on port 8181 provides end-to-end communication for Peer_1 and Peer_2, and on 8282, the signaling path for Peer_1 and MITM, and 8383 for MITM and Peer_2.
Am I right or not? Thanks for the support.
source
share