How to detect what connections a software / application is trying to make #3276
Answered
by
ameshkov
itsnotsaved
asked this question in
Q&A
-
I have AdGuardHome installed and multiple devices connected to it. One device try to keep connect to specific domain continuously that already blocked but i dont know how to detect which application is trying for connect to that domain. Basically i tried to detect by closing applications and |
Beta Was this translation helpful? Give feedback.
Answered by
ameshkov
Jun 21, 2021
Replies: 1 comment
-
Not an easy thing to do considering that the app probably uses You probably need to:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
itsnotsaved
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not an easy thing to do considering that the app probably uses
getaddrinfo
and the DNS query is sent by the system.You probably need to:
$dnsrewrite
to point it to some real IP addressnetstat
and look for connections that that IP address to find the process