Forum Discussion
duckjibe
Sep 25, 2020Copper Contributor
Azure ATP sensor proxy setting location
Hi I'm looking for a way to inventory proxy setting on all deployed ATP sensor. I tried unsuccessfully to find proxy setting location on a DC using proxy. (Used Resource monitor/network to confirm...
duckjibe
Oct 12, 2020Copper Contributor
Hi , sorry for my late answer
I need this information to document all Tier 0 components and network flows to improve firewall filtering. Also need to debug sensor issue and improve network connection disponibilty to AATP.
It will nice to be able to display it on the DC like the WDATP control panel ou any other way.
Another place is to add a column in the Configuration/sensors web page status and in the "Domain Controller Coverage" excel report.
In the mean time, I use this script:
$proxyPort = 8080
$procID = (get-process -name "Microsoft.Tri.Sensor").id
$tcpconnection = Get-NetTCPConnection -OwningProcess $procID -RemotePort $proxyPort
$tcpconnection | select-object remoteAddress -unique
Regards