4

我的路由器显示一个 TCP 端口 (6183) 已被我运行的应用程序打开(我不知道)

使用lsof如回答herelsof -iTCP:6183 -sTCP:LISTEN,我发现launchd是罪魁祸首。

是否有可能找出哪个launchd的“脚本”负责?

4

1 回答 1

12

您可以尝试搜索 launchd 使用的“.plist”文件,如下所示:

find ~/Library/LaunchAgents /Library/LaunchAgents /Library/LaunchDaemons /System/Library/LaunchAgents /System/Library/LaunchDaemons -name "*.plist" -exec grep -H 6183 "{}" \; 2>/dev/null

find ~/Library/LaunchAgents /Library/LaunchAgents /Library/LaunchDaemons /System/Library/LaunchAgents /System/Library/LaunchDaemons -name "*.plist" -exec defaults read "{}" 2>/dev/null \; | grep 6183
于 2014-02-11T19:39:14.783 回答