私はボットネットの一部ですか?

私はボットネットの一部ですか?

Ubuntu 14.10 を使用しています。Ubuntu がボットネットの一部になっているかどうかを確認するにはどうすればよいですか? netstat で見つかったアドレスは次のとおりです:

tcp   ESTAB      0      0           192.168.5.122:33195     213.199.179.157:40016  
tcp   ESTAB      0      0           192.168.5.122:52340     64.4.47.18:https   
tcp   ESTAB      0      0           192.168.5.122:51396     157.56.53.41:12350   
tcp   ESTAB      0      0           192.168.5.122:38527     157.56.194.8:https   
tcp   ESTAB      0      0    ::ffff:192.168.5.122:54152     ::ffff:74.125.71.125:xmpp-client 
tcp   ESTAB      0      0    ::ffff:192.168.5.122:33257     ::ffff:173.252.106.17:xmpp-client 
tcp   ESTAB      0      0    ::ffff:192.168.5.122:36003     ::ffff:64.233.167.125:xmpp-client

次のようなことnetstat -tlnpが示されています:

(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address    Foreign Address   State       PID/Program name
tcp        0      0 0.0.0.0:15668    0.0.0.0:*         LISTEN      11551/skype     
tcp        0      0 127.0.1.1:53     0.0.0.0:*         LISTEN      -               
tcp        0      0 0.0.0.0:25       0.0.0.0:*         LISTEN      -               
tcp        0      0 127.0.0.1:2628   0.0.0.0:*         LISTEN      -               
tcp6       0      0 ::1:13113        :::*              LISTEN      11552/java      
tcp6       0      0 :::25            :::*              LISTEN      -  

答え1

これらのポートで実行されている各プログラムを追跡する必要があります。xmpp を自分で実行していますか? Web ブラウザを実行していますか? 具体的には、ポート 40016 と 12350 に接続しているものは何ですか?

lsof -i TCP:40016
lsof -i TCP:12350
lsof -i TCP:xmpp-client

これらを sudo する必要があるかもしれません。

関連情報