$loading...
Generate webhook payloads and curl commands for Slack, Jira, Discord, and generic endpoints. Notify your team when you find vulnerabilities.
curl -X POST 'YOUR_SLACK_WEBHOOK_URL' \
-H 'Content-Type: application/json' \
-d '{"blocks":[{"type":"header","text":{"type":"plain_text","text":"Security Finding: Stored XSS in Comment Field"}},{"type":"section","text":{"type":"mrkdwn","text":"*Severity:* HIGH\n*Description:* A stored cross-site scripting vulnerability was found in the comment field that allows an attacker to execute arbitrary JavaScript in other users' browsers."}}],"attachments":[{"color":"#ea580c","text":"Found by Payload Playground"}]}'{
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Security Finding: Stored XSS in Comment Field"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Severity:* HIGH\n*Description:* A stored cross-site scripting vulnerability was found in the comment field that allows an attacker to execute arbitrary JavaScript in other users' browsers."
}
}
],
"attachments": [
{
"color": "#ea580c",
"text": "Found by Payload Playground"
}
]
}