sshd
Kali Linux 安裝完成後,需要以安裝過程產生的帳號登入。如果用 sudo 指令,會一直詢問密碼,可用以下方式設定 sudo 不詢問密碼
sudo dpkg-reconfigure kali-grant-root
在畫面中選擇 Enable password-less privilege escalation
設定開機自動登入 LightDM
ref: 如何讓Linux作業系統自動登入桌面環境,而不需輸入帳號密碼? | MagicLen
sudo vi /etc/lightdm/lightdm.conf
[Seat:*]
autologin-guest=false
autologin-user=maxkit
autologin-user-timeout=0
另外也還無法遠端連線到這台機器,要安裝 ssh server
sudo apt-get install openssh-server
sudo update-rc.d -f ssh remove
sudo update-rc.d -f ssh defaults
sudo service ssh restart
修改 /etc/ssh/sshd_config
PermitRootLogin yes
中文輸入法套件
sudo apt install fcitx5 fcitx5-chewing im-config
openvas
#sudo apt update && apt upgrade -y
sudo apt install locate curl wget
# install openvas
sudo apt install gvm*
# check postgresql、redis-server 及 gvmd 是否有啟動
sudo service --status-all
# start and enable redis-server
sudo systemctl enable redis-server
sudo systemctl start redis-server
# start and enable postgresql
sudo systemctl enable postgresql
sudo systemctl start postgresql
# 安裝 openvas,這個步驟會跑很久
sudo gvm-setup
# check installation
sudo gvm-check-setup
## 檢查發現 redis 有問題,被要求要執行這一行指令
#sudo systemctl start redis-server@openvas.service
#sudo systemctl enable redis-server@openvas.service
# gvmd
sudo systemctl enable gvmd
sudo systemctl start gvmd
修改設定 --listen=0.0.0.0
sudo vi /lib/systemd/system/greenbone-security-assistant.service
#ExecStart=/usr/sbin/gsad --listen=127.0.0.1 --port=9392
ExecStart=/usr/sbin/gsad --listen=0.0.0.0 --port=9392
修改 redis 設定
sudo vi /etc/redis/redis.conf
# 把這兩行 uncomment
unixsocket /var/run/redis/redis.sock
unixsocketperm 700
啟動
# 啟動 OpenVAS伺服器
sudo gvm-start
# 停止
sudo gvm-stop
建立帳號
sudo runuser -u _gvm -- gvmd --user=admin --new-password=newpassword
#sudo runuser -u _gvm -- gvmd --create-user=<新帳號> --password=<設定密碼>
網頁
References
雅技資訊日誌: 在Kali 2020.3 精簡環境安裝OpenVAS
Installing OpenVAS on Kali Linux - GeeksforGeeks
[Kali] 開啟 Kali Linux 上的 SSH server 服務 | EPH 的程式日記
打造 Kali Linux 2021 中文桌面環境(字型、中文輸入法) - Hack543
沒有留言:
張貼留言