Mimecast Threat Intelligence — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mimecast Threat Intelligence (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Mimecast's Targeted Threat Protection (TTP) is an advanced security layer that inspects URLs and attachments in real time and detects impersonation attempts. When TTP events occur — a user clicking a suspicious URL, a malicious attachment being sandboxed, or an impersonation attempt being identified — Mimecast logs these as TTP events that feed into threat remediation incidents. This skill covers reading TTP logs, reviewing threat remediation incidents, and using audit events to investigate security events.
TTP has three components:
When TTP identifies a confirmed threat (e.g. a URL classified as malicious after delivery, or a sandboxed attachment containing malware), Mimecast can create a threat remediation incident — a structured record of the threat and recommended remediation actions, such as removing emails from user mailboxes.
The Mimecast audit log records all administrative actions and significant security events — policy changes, user login events, held message releases, and API operations. Useful for compliance investigations and detecting unauthorized admin activity.
mimecast_get_ttp_logsRetrieves TTP event logs across URL protection, attachment protection, and impersonation protection.
Parameters:
type — Log type: url, attachment, or impersonationstart — Start datetime (ISO 8601)end — End datetime (ISO 8601)pageToken — Pagination cursorExample — URL click logs:
{
"type": "url",
"start": "2026-03-01T00:00:00Z",
"end": "2026-03-02T23:59:59Z"
}Example URL TTP response:
{
"meta": {
"status": 200,
"pagination": {
"pageSize": 25,
"totalCount": 18,
"next": null
}
},
"data": [
{
"date": "2026-03-01T14:35:22Z",
"url": "https://malicious-site.com/payload",
"action": "block",
"userEmail": "[email protected]",
"from": "[email protected]",
"subject": "Your account needs attention",
"messageId": "<[email protected]>",
"scanResult": "malicious",
"category": "phishing"
},
{
"date": "2026-03-01T09:12:05Z",
"url": "https://legitimate-site.com/page",
"action": "allow",
"userEmail": "[email protected]",
"from": "[email protected]",
"subject": "Monthly Update",
"messageId": "<[email protected]>",
"scanResult": "clean",
"category": null
}
]
}Key fields:
action — block (URL blocked) or allow (URL permitted)scanResult — malicious, suspicious, or cleancategory — Threat category (phishing, malware, spam, etc.)Example — Attachment TTP response:
{
"meta": { "status": 200 },
"data": [
{
"date": "2026-03-01T11:20:00Z",
"filename": "invoice_march.xlsm",
"result": "malicious",
"definition": "Macro dropper — Emotet variant",
"from": "[email protected]",
"to": "[email protected]",
"messageId": "<[email protected]>",
"action": "block"
}
]
}Example — Impersonation TTP response:
{
"meta": { "status": 200 },
"data": [
{
"date": "2026-03-01T16:44:00Z",
"from": "[email protected]",
"to": "[email protected]",
"subject": "Urgent Wire Transfer",
"action": "hold",
"definition": "Domain lookalike — executive impersonation",
"similarDomain": "client.com"
}
]
}mimecast_get_threat_incidentsReturns threat remediation incidents — confirmed threats requiring mailbox remediation.
Parameters:
start — Start datetime (ISO 8601)end — End datetime (ISO 8601)pageToken — Pagination cursorExample response:
{
"meta": { "status": 200 },
"data": [
{
"id": "TRI-20260301-001",
"created": "2026-03-01T15:00:00Z",
"type": "url",
"status": "open",
"severity": "high",
"reason": "URL reclassified as malicious post-delivery",
"url": "https://malicious-site.com/payload",
"affectedUsers": [
"[email protected]",
"[email protected]"
],
"affectedMessages": 4,
"remediationAction": "remove_from_mailbox",
"remediationStatus": "pending"
}
]
}mimecast_get_audit_eventsRetrieves the Mimecast audit log for administrative and security events.
Parameters:
start — Start datetime (ISO 8601)end — End datetime (ISO 8601)category — Event category filter (optional): authentication, policy, message, userpageToken — Pagination cursorExample response:
{
"meta": { "status": 200 },
"data": [
{
"id": "audit-001",
"timestamp": "2026-03-01T08:00:00Z",
"category": "authentication",
"action": "admin_login",
"user": "[email protected]",
"ip": "203.0.113.10",
"result": "success"
},
{
"id": "audit-002",
"timestamp": "2026-03-01T08:45:00Z",
"category": "message",
"action": "held_message_release",
"user": "[email protected]",
"messageId": "<[email protected]>",
"result": "success"
}
]
}mimecast_get_ttp_logs with type=url for the past 24 hoursaction=block and scanResult=malicious — these are confirmed threatsmimecast_get_ttp_logs with type=attachment for same periodresult=malicious — these are blocked malware attachmentsmimecast_get_threat_incidents to see any new post-delivery reclassificationsmimecast_get_ttp_logs with type=url and a broad time rangeaction field — allow means the URL was not blocked at click time (user may have visited)mimecast_find_message to trace all emails containing that domain to understand campaign scopemimecast_get_ttp_logs with type=impersonation for the past 7 daysaction=allow entries — impersonation attempts that were not blockedsimilarDomain field — these are lookalike domainsmimecast_find_message to confirm if those emails reached inboxesmimecast_get_threat_incidents to identify open incidentsaffectedUsers and affectedMessagesremediationAction — typically remove_from_mailboxremediationStatus — if pending, Mimecast may require administrator approval in the consolemimecast_get_audit_events with category=authentication for a time rangecategory=policy to identify configuration changesCause: TTP is not enabled for the tenant, or the date range has no events. Solution: Verify TTP is licensed and enabled in the Mimecast Administration Console under Services > Targeted Threat Protection.
Cause: Threat remediation incidents may require manual approval in the Mimecast console depending on the tenant's remediation policy. Solution: Log into the Mimecast Administration Console and navigate to Security > Threat Remediation to manually approve pending remediations.
Cause: Audit log propagation can have a short delay (up to 15 minutes). Solution: Retry with a slight delay; also verify the correct region is configured.
action=allow URL entries where scanResult=malicious mean Mimecast reclassified the URL after the click — treat these as confirmed user exposuresmimecast_find_message to confirm whether other users received the same attachmentaction=allow are the most dangerous — the email reached the inbox despite being flagged~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.