![]() |
|
Privacy check - Printable Version +- LogicMachine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: General (https://forum.logicmachine.net/forumdisplay.php?fid=2) +--- Thread: Privacy check (/showthread.php?tid=1938) |
Privacy check - puntukas - 03.03.2019 Hi, is there any way to check all cloud based or external services that are connected to my LogicMachine system? Thanks RE: Privacy check - admin - 04.03.2019 You can run netstat from a script and log the results: Code: res = io.readproc('netstat -tup')
log(res)You'll get something similar to this: Code: Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 localhost:46306 localhost:6379 ESTABLISHED 1075/lua
tcp 0 52 192.168.1.10:ssh 192.168.1.204:51579 ESTABLISHED 1213/dropbear
tcp 0 0 192.168.1.10:www 192.168.1.204:51785 ESTABLISHED 1090/nginx: worker
tcp 0 0 localhost:6379 localhost:46306 ESTABLISHED 999/redis-server
tcp 0 0 localhost:46308 localhost:6379 TIME_WAIT -
tcp 0 0 192.168.1.10:www 192.168.1.204:51787 ESTABLISHED 1090/nginx: worker
udp 0 0 localhost:51645 127.255.255.255:6720 ESTABLISHED 993/eibd
udp 0 0 localhost:33733 127.255.255.255:1200 ESTABLISHED 1055/luaThis will show all active internal and external connections. localhost entries are internal, others are external. |