Malware Remediated Webhook
When malware is removed or files are patched as part of an automated action or manual request for a Website
, the details will be sent via webhook. See the Webhook Events Overview for more general information.
ID: Webhook ID
Event: website_malware_issue_fixed
Target: Includes unqiue Website
ID as id
Body: A report
with an array of type
and description
pairs and a report_date
with the time the report was generated in ISO 8601 format. The description
indicates the specific file on the website which was repaired or patched.
Example
{
"id":123456,
"event":"website_malware_issue_fixed",
"target":{
"type":"Website",
"id":123456
},
"body":{
"report_date":"2020-08-14",
"report":[
{
"type":"Malware File",
"description":"tmp/xploit.sh"
},
{
"type":"Vulnerable File",
"description":"wp-content/plugins/wordpress-/admin/pages/tools.php"
}
]
}
}