Skip to content

Instantly share code, notes, and snippets.

View ShishaBoyTJ's full-sized avatar
🏠
Working from home

TBT ShishaBoyTJ

🏠
Working from home
View GitHub Profile
@LHazy
LHazy / find_shai_hulud_js.ps1
Last active January 28, 2026 05:30
Shai-Hulud Supply Chain Attack で配布された悪性ファイル (bundle.js) の検索スクリプト
# !!!注意!!!:
# このスクリプトはCドライブ配下のファイル・フォルダを探索するため「システムに負荷がかかる場合があります」
# 実行は自己責任でお願いします。
# 使い方:
# powershell -ExecutionPolicy Bypass -File .\Scan-Bundle.ps1 <start_directory>
param(
[Parameter(Mandatory = $true)]
[string]$TargetDirectory
)