Webhook Integration
Real-time notifications for your security events - Coming Soon
Intelligent Webhook Notifications
Stay informed with real-time security alerts and vulnerability updates delivered directly to your applications via webhooks.
Real-Time Events
Receive instant notifications when security events occur on your WordPress sites, including intrusion attempts, malware detection, and critical vulnerabilities.
Multiple Integrations
Connect with popular platforms like Slack, Discord, Microsoft Teams, PagerDuty, or your custom applications using standard webhook protocols.
Smart Filtering
Configure custom filters to receive only the notifications that matter to you. Filter by severity level, event type, site, or custom criteria.
Secure Delivery
Webhooks are signed with HMAC-SHA256 signatures to ensure authenticity. Automatic retry logic ensures reliable delivery even during outages.
How It Will Work
Configure Your Webhook
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
Receive Event Notifications
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 & Process
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);
}
Available Event Types
| 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 |
Popular Integration Partners
Slack
Team messaging
Discord
Community chat
MS Teams
Enterprise chat
Email alerts
Be Among the First to Know
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
Technical Specifications
HMAC-SHA256
Signature Verification
JSON
Data Format
HTTPS
Secure Transport
3 Retries
Automatic Retry Logic
5 Second
Timeout Duration
Real-time
Event Delivery