一些奇怪的用戶

一些奇怪的用戶

這裡出了問題。 這是我的 htop 螢幕截圖。 我沒有啟動任何 Firefox 或 Firefox 外掛程式。事實上我剛剛刪除了 Firefox。

這是我的/etc/passwd

$ cat /etc/passwd
...
guest-v2ZwkB:x:119:127:Guest,,,:/tmp/guest-v2ZwkB:/bin/bash
guest-CoeJOG:x:120:128:Guest,,,:/tmp/guest-CoeJOG:/bin/bash
guest-GBapg4:x:121:129:Guest,,,:/tmp/guest-GBapg4:/bin/bash
guest-oqAb2e:x:122:130:Guest,,,:/tmp/guest-oqAb2e:/bin/bash

guest-* 到底是誰?我沒有創建這些用戶。

這是 w cmd 輸出

$ w
 03:06:54 up 12:50,  6 users,  load average: 3,45, 3,29, 2,82
USER     TTY      FROM             LOGIN@   IDLE   JCPU   PCPU WHAT
m0x35    :0       :0               Сб.14   ?xdm?   9:45m  0.11s init --user
m0x35    pts/6    :0.0             Сб.14    0.00s  0.11s  0.01s w
guest-v2 :1       :1               17:52   ?xdm?   9:45m  0.09s init --user
guest-Co :2       :2               18:04   ?xdm?   9:45m  0.09s init --user
guest-GB :3       :3               23:36   ?xdm?   9:45m  0.10s init --user
guest-oq :4       :4               23:58   ?xdm?   9:45m  0.08s init --user

這到底是怎麼回事?我被黑了?我必須擔心這個嗎?

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.3 LTS
Release:    14.04
Codename:   trusty

我很樂意提供更多資訊。謝謝。

sudo netstat -natp沒有特別的表現​​。只是為 nfs 服務、cupsd、dnsmasq 開放了一些連接埠。但是兩個連接埠綁定到其他服務,我無法從 netstat 取得 pid/程式名稱。

tcp        0      0 0.0.0.0:2049            0.0.0.0:*               LISTEN      -               
tcp        0      0 0.0.0.0:44483           0.0.0.0:*               LISTEN      -     

我已經用 tcpdump 監視了我的介面大約一分鐘 - 沒什麼奇怪的。

更新:

03:32:42.455320 IP le-in-f93.1e100.net.https > m0x35-pc.47065: tcp 727
03:32:42.455334 IP m0x35-pc.47065 > le-in-f93.1e100.net.https: tcp 0
03:32:42.455339 IP le-in-f93.1e100.net.https > m0x35-pc.47065: tcp 46
03:32:42.455662 IP m0x35-pc.47065 > le-in-f93.1e100.net.https: tcp 46
03:32:42.456394 IP m0x35-pc.63482 > 192.168.35.4.domain: UDP, length 47
03:32:42.456428 IP m0x35-pc.25024 > 192.168.35.4.domain: UDP, length 47
03:32:42.456453 IP m0x35-pc.20231 > 192.168.35.4.domain: UDP, length 47
03:32:42.463492 IP 192.168.35.4.domain > m0x35-pc.63482: UDP, length 314
03:32:42.463547 IP 192.168.35.4.domain > m0x35-pc.25024: UDP, length 246
03:32:42.463566 IP 192.168.35.4.domain > m0x35-pc.20231: UDP, length 314
03:32:42.463926 IP m0x35-pc.39292 > lj-in-f100.1e100.net.https: tcp 0
03:32:42.468759 IP lj-in-f100.1e100.net.https > m0x35-pc.39292: tcp 0
03:32:42.468802 IP m0x35-pc.39292 > lj-in-f100.1e100.net.https: tcp 0
03:32:42.468940 IP m0x35-pc.39292 > lj-in-f100.1e100.net.https: tcp 517
03:32:42.473731 IP lj-in-f100.1e100.net.https > m0x35-pc.39292: tcp 0
03:32:42.473899 IP lj-in-f100.1e100.net.https > m0x35-pc.39292: tcp 152
03:32:42.473913 IP m0x35-pc.39292 > lj-in-f100.1e100.net.https: tcp 0
03:32:42.474249 IP m0x35-pc.39292 > lj-in-f100.1e100.net.https: tcp 51
03:32:42.474523 IP m0x35-pc.39292 > lj-in-f100.1e100.net.https: tcp 157
03:32:42.474585 IP m0x35-pc.39292 > lj-in-f100.1e100.net.https: tcp 301

我已經關閉了所有可以與互聯網通信(或應該與互聯網通信)的東西。 Ps 好像是Google伺服器。

答案1

您自己或有權存取您電腦的其他人似乎以訪客身分登入系統。

您可以透過以下方式刪除這些來賓使用者:

sudo deluser username

像這樣:

sudo deluser guest-v2ZwkB

您可以透過編輯以下文件來停用訪客會話:

sudo nano /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf

新增以下行,儲存並關閉。

allow-guest=false

相關內容