G
G
Ginza2020-09-05 03:08:54
Wireshark
Ginza, 2020-09-05 03:08:54

How to organize traffic interception?

Good afternoon, there is a server (1) that transmits data to several other servers (2,3). When running wireshark on the server (1), some of the packets are not captured (in fact, the exchange is going on). All servers are strictly registered static IP. Is it possible between servers (1) and (2) to install a computer with two network interfaces (preferably raspberry pi + usb LAN, due to its small size) to capture all packets? How are Rpi network interfaces configured in this case? In my understanding, something like a passive mitm should turn out.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
C
CityCat4, 2020-09-05
@CityCat4

wireshark cannot fail to intercept traffic passing through the interface.

A
Alexey Ukolov, 2015-08-17
@alexey-m-ukolov

document.querySelector("#nav-toggle")
There is no such element on the page, so querySelector returns null .
This is what the error says - null does not have an addEventListener method .
addEventListener is called only in one place - however, it is not difficult to figure it out at all.
In general, if you already use jquery, use it to its fullest:

if ($(window).width() > 991) {
    $("#nav-toggle").on("click", function() {
        $(this).toggleClass("active");
    });
}

D
Dima nahkar, 2015-08-18
@nahkar

Here is the solution

if (window.innerWidth > 991) {
    document.querySelector("#nav-toggle").addEventListener("click", function(e) {
         e.target.classList.toggle("active");
    },false);
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question