Real-time notifications for your security events - Coming Soon
Stay informed with real-time security alerts and vulnerability updates delivered directly to your applications via webhooks.
Receive instant notifications when security events occur on your WordPress sites, including intrusion attempts, malware detection, and critical vulnerabilities.
Connect with popular platforms like Slack, Discord, Microsoft Teams, PagerDuty, or your custom applications using standard webhook protocols.
Configure custom filters to receive only the notifications that matter to you. Filter by severity level, event type, site, or custom criteria.
Webhooks are signed with HMAC-SHA256 signatures to ensure authenticity. Automatic retry logic ensures reliable delivery even during outages.
Set up your webhook endpoint URL and select which events you want to receive.
Webhook URL: https://your-domain.com/webhook/vmp-security
Events: security_threat, malware_detected, login_attempt
Status: Active
When a security event occurs, we'll send a POST request to your webhook URL with the event data.
{
"event_type": "security_threat",
"timestamp": "2026-01-14T10:30:00Z",
"site_id": "site_abc123",
"site_url": "https://example.com",
"severity": "high",
"threat_details": {
"type": "brute_force_attack",
"ip_address": "192.168.1.100",
"blocked": true,
"attempts": 15
}
}
Verify the webhook signature and process the event in your application.
// Verify signature (example in PHP)
$signature = $_SERVER['HTTP_X_VMP_SIGNATURE'];
$payload = file_get_contents('php://input');
$expected = hash_hmac('sha256', $payload, $secret);
if (hash_equals($signature, $expected)) {
$event = json_decode($payload, true);
// Process your event
processSecurityEvent($event);
}
| Event Type | Description | Severity |
|---|---|---|
security_threat |
Real-time security threats and attacks detected | High |
malware_detected |
Malware or malicious code found on site | Critical |
vulnerability_found |
New vulnerability discovered in plugins/themes | Medium |
failed_login_attempt |
Multiple failed login attempts detected | Medium |
plugin_update |
Security update available for installed plugins | Low |
scan_completed |
Scheduled security scan finished | Info |
license_expiring |
License will expire within 30 days | Medium |
Team messaging
Community chat
Enterprise chat
Email alerts
Sign up to get notified when webhook integrations go live and gain early access to beta testing.
📅 Expected Launch: Q2 2026 | Beta Access: Q1 2026
Signature Verification
Data Format
Secure Transport
Automatic Retry Logic
Timeout Duration
Event Delivery