# About Me
葉柏毅 Alex
Contact: alrex5401@gmail.com
Linkedin:https://www.linkedin.com/in/alrex5401/
# WAHS 啟程
## 環境安裝
考試介紹
https://cert.eccouncil.org/web-application-hacking-and-security.html
https://www.uuu.com.tw/Course/Show/1882/EC-Council-Web-%E6%87%89%E7%94%A8%E7%A8%8B%E5%BC%8F%E5%AE%89%E5%85%A8%E8%AA%B2%E7%A8%8B
## Kila 中文化
https://hack543.com/kali-linux-2021-tradictional-chinese-env/
安裝Chrome(for 內建翻譯)
└─$ sudo apt install chromium
## burp suite安裝
$sudo apt install burpsuite
Download Burp Suite Community
https://portswigger.net/burp/communitydownload
## 設定proxy listen port
proxy -> options -> interface

匯出Burp Suite 憑證
點選 import/expoer CA Certificate,選擇Export Certificate

## 瀏覽器設定proxy

匯入憑證

## Kali 2020.4疑難排解(無法更新)
wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add
參考出處:
https://unix.stackexchange.com/questions/421821/invalid-signature-for-kali-linux-repositories-the-following-signatures-were-i
## Linux 用RDP連線
### install xfce
sudo apt-get update
sudo apt-get -y install task-xfce-desktop
sudo apt install -y xfce4-session
### install remote desktop server
sudo apt-get -y install xrdp
sudo systemctl enable xrdp
### for Ubuntu 20
sudo adduser xrdp ssl-cert
### configure xfce as desktop environment
echo xfce4-session >~/.xsession
### restart xrdp
sudo service xrdp restart
參考出處:
https://blog.darkthread.net/blog/xrdp/
## msfconsole db啟用
### 啟用postgresql
systemctl start postgresql
### 初始化msfdb
msf > msfdb init
### 啟動msfdb
msf > msfdb start
### 確認msfdb正常連線
msf > db_status
參考出處:
https://www.kali.org/docs/tools/starting-metasploit-framework-in-kali/