![]() |
Privacy check - Printable Version +- Logic Machine 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') You'll get something similar to this: Code: Active Internet connections (w/o servers) This will show all active internal and external connections. localhost entries are internal, others are external. |