Implementing Mimecast Targeted Attack Protection
Overview
Mimecast Targeted Threat Protection (TTP) is a suite of advanced email security services designed to protect against sophisticated phishing, spearphishing, and targeted attacks. TTP consists of four core modules: URL Protect (real-time URL rewriting and click-time analysis), Attachment Protect (sandbox detonation of suspicious attachments), Impersonation Protect (BEC and whaling detection), and Internal Email Protect (scanning internal/outbound email for threats). As of November 2025, Mimecast enabled URL Pre-Delivery Action with Hold setting for all customers by default.
When to Use
Trigger phrases:
"implementing mimecast targeted attack protection"
"Deploy Mimecast Targeted Threat Protection including URL Protect, Attachment Pro"
When deploying or configuring implementing mimecast targeted attack protection capabilities in your environment
When establishing security controls aligned to compliance requirements
When building or improving security architecture for this domain
When conducting security assessments that require this implementation
Prerequisites
- Mimecast Email Security license with TTP add-on
- Administrative access to Mimecast Administration Console
- Microsoft 365 or Google Workspace environment
- MX records configured to route through Mimecast
- Understanding of email authentication (SPF, DKIM, DMARC)
Key Concepts
This section covers key concepts for implementing mimecast targeted attack protection.
- Ensure all prerequisites are met before proceeding
- Follow the documented workflow steps in sequence
- Record results and any anomalies encountered during this phase
TTP Module Overview
| Module |
Function |
Key Capability |
| URL Protect |
Rewrites and scans URLs at click time |
Real-time sandbox, pre-delivery hold |
| Attachment Protect |
Sandboxes suspicious attachments |
Static + dynamic analysis |
| Impersonation Protect |
Detects BEC/whaling attacks |
VIP name matching, header analysis |
| Internal Email Protect |
Scans internal/outbound email |
Lateral phishing detection |
Impersonation Protection Scenarios
- Hit 3 (Default): Flags emails matching 3+ impersonation indicators
- Hit 1 (VIP): Flags emails matching 1+ indicator for designated VIP users
- Key identifiers: display name similarity, domain similarity, reply-to mismatch, newly registered domains
URL Protect Modes
- Rewrite: URLs rewritten to route through Mimecast proxy at click time
- Pre-Delivery Action (Hold): URLs checked before message delivery; held if suspicious
- Pre-Delivery Action (None): URLs checked pre-delivery but not held
Workflow
# Example: IOC detection
import re
IOC_PATTERNS = {
"ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",
"domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",
"hash_md5": r"\b[a-f0-9]{32}\b",
"hash_sha256": r"\b[a-f0-9]{64}\b",
}
def extract_iocs(text: str) -> dict:
return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}
- Scope and authorize — confirm written authorization and define target boundaries
- Reconnaissance — enumerate targets, services, and potential attack surfaces
- Exploitation — attempt exploitation of identified vulnerabilities within scope
- Post-exploitation — document access level, lateral movement, and data exposure
- Report and remediate — compile findings with reproduction steps and fix recommendations
Step 1: Configure URL Protect Policy
- Navigate to Administration > Gateway > Policies > Targeted Threat Protection - URL Protect
- Create URL Protect definition with rewriting enabled for inbound messages
- Enable URL Pre-Delivery Action set to "Hold" for maximum protection
- Configure scan mode: aggressive for high-risk users, moderate for general population
- Set action for malicious URLs: block page with user notification
- Enable URL logging for all click events
Step 2: Configure Attachment Protect Policy
- Navigate to Administration > Gateway > Policies > Targeted Threat Protection - Attachment Protect
- Create Attachment Protect definition for inbound email
- Select sandbox mode: "Safe File" (converts to safe format) or "Dynamic Configuration" (full sandbox)
- Configure attachment types to scan: executables, Office documents, PDFs, archives
- Set timeout for sandbox analysis (default: up to 7 minutes for complex files)
- Enable pre-emptive sandboxing for attachments from unknown senders
Step 3: Configure Impersonation Protect
- Create Default Impersonation Protect Definition (Hit 3) for all inbound email
- Create VIP Impersonation Protect Definition (Hit 1) for executive protection
- Build VIP list: CEO, CFO, CTO, board members, finance leadership
- Configure detection identifiers: display name, domain similarity, newly observed sender
- Set actions: quarantine high-confidence impersonation, tag moderate confidence
- Enable end-user warning banners for flagged messages
Step 4: Enable Internal Email Protect
- Configure journaling from Microsoft 365/Google Workspace to Mimecast
- Enable URL scanning for internal emails
- Enable attachment scanning for internal emails
- Configure alerts for internal account compromise indicators
- Set up detection for internal phishing (compromised account sending malware)
Step 5: Create Test Group and Validate
- Create pilot group of 50-100 users across departments
- Apply TTP policies to pilot group first
- Send test emails with known-safe test URLs and EICAR test files
- Verify URL rewriting, attachment sandboxing, and impersonation detection
- Monitor false positive rate for 1-2 weeks before organization-wide deployment
Step 6: Deploy Organization-Wide and Tune
- Extend TTP policies to all users
- Monitor Mimecast Threat Dashboard for detection metrics
- Review and whitelist legitimate applications triggering false positives
- Tune impersonation sensitivity based on false positive feedback
- Configure exception policies for automated systems and mailing lists
When NOT to Use
- You need to test the implementation (use performing-* skills)
- Task is about configuring existing tools (use configuring-* skills)
- You need to analyze security events (use analyzing-* skills)
- Task is about building detection rules (use building-* skills)
- You don't have access to the target environment
- Task requires vendor-specific expertise (consult vendor docs)
Red Flags
- Performing actions without explicit written authorization from the asset owner
- Testing against production systems without a defined scope and rules of engagement
- Exceeding the authorized scope of the engagement
- Leaving persistent access mechanisms without explicit approval
- Causing denial-of-service on production systems during testing
Verification
- All steps executed successfully against a test environment before production use
- Output documented with screenshots or logs demonstrating expected behavior
- All exploited vulnerabilities documented with reproduction steps
- Scope boundaries confirmed — only authorized targets were tested
- Remediation recommendations included for every finding
Tools & Resources
- Mimecast Administration Console: Policy configuration and management
- Mimecast Threat Dashboard: Real-time threat visibility and analytics
- Mimecast Awareness Training: Integrated security awareness platform
- Mimecast API: Programmatic access to logs and threat data
- Message Center: Quarantine management for admins and users
Validation
- URL Protect rewrites URLs in test messages and blocks known-malicious at click
- Attachment Protect sandboxes test file and returns verdict within SLA
- Impersonation Protect flags test BEC email impersonating VIP
- Internal Email Protect detects test lateral phishing scenario
- Pre-delivery hold catches weaponized URL before reaching inbox
- False positive rate below organizational threshold after tuning
Process
- Analyze the task requirements
- Apply domain expertise
- Verify output quality
Anti-Rationalization Table
| Rationalization |
Reality |
| "We are too small to be targeted" |
Automated attacks target everyone. Size does not matter. |
| "Security slows us down" |
A breach slows you down 100x more. Build security in from the start. |
| "We will fix it after launch" |
Vulnerabilities in production are exploited within hours. Fix before deploy. |
1---2name: implementing-mimecast-targeted-attack-protection3description: Use when deploy Mimecast Targeted Threat Protection including URL Protect, Attachment Protect, Impersonation Protect, and Internal Email Protect to defend against advanced phishing and spearphishing attacks. Use when deploying mimecast targeted threat protection including url protect, attachment protect,.4license: Apache-2.05---67# Implementing Mimecast Targeted Attack Protection89## Overview10Mimecast Targeted Threat Protection (TTP) is a suite of advanced email security services designed to protect against sophisticated phishing, spearphishing, and targeted attacks. TTP consists of four core modules: URL Protect (real-time URL rewriting and click-time analysis), Attachment Protect (sandbox detonation of suspicious attachments), Impersonation Protect (BEC and whaling detection), and Internal Email Protect (scanning internal/outbound email for threats). As of November 2025, Mimecast enabled URL Pre-Delivery Action with Hold setting for all customers by default.111213## When to Use14**Trigger phrases:**15- "implementing mimecast targeted attack protection"16- "Deploy Mimecast Targeted Threat Protection including URL Protect, Attachment Pro"171819- When deploying or configuring implementing mimecast targeted attack protection capabilities in your environment20- When establishing security controls aligned to compliance requirements21- When building or improving security architecture for this domain22- When conducting security assessments that require this implementation2324## Prerequisites25- Mimecast Email Security license with TTP add-on26- Administrative access to Mimecast Administration Console27- Microsoft 365 or Google Workspace environment28- MX records configured to route through Mimecast29- Understanding of email authentication (SPF, DKIM, DMARC)3031## Key Concepts3233This section covers key concepts for implementing mimecast targeted attack protection.3435- Ensure all prerequisites are met before proceeding36- Follow the documented workflow steps in sequence37- Record results and any anomalies encountered during this phase38### TTP Module Overview39| Module | Function | Key Capability |40|---|---|---|41| URL Protect | Rewrites and scans URLs at click time | Real-time sandbox, pre-delivery hold |42| Attachment Protect | Sandboxes suspicious attachments | Static + dynamic analysis |43| Impersonation Protect | Detects BEC/whaling attacks | VIP name matching, header analysis |44| Internal Email Protect | Scans internal/outbound email | Lateral phishing detection |4546### Impersonation Protection Scenarios47- **Hit 3 (Default)**: Flags emails matching 3+ impersonation indicators48- **Hit 1 (VIP)**: Flags emails matching 1+ indicator for designated VIP users49- Key identifiers: display name similarity, domain similarity, reply-to mismatch, newly registered domains5051### URL Protect Modes52- **Rewrite**: URLs rewritten to route through Mimecast proxy at click time53- **Pre-Delivery Action (Hold)**: URLs checked before message delivery; held if suspicious54- **Pre-Delivery Action (None)**: URLs checked pre-delivery but not held5556## Workflow5758```python59# Example: IOC detection60import re6162IOC_PATTERNS = {63 "ip": r"\b(?:\d{1,3}\.){3}\d{1,3}\b",64 "domain": r"\b[a-z0-9-]+\.[a-z]{2,}\b",65 "hash_md5": r"\b[a-f0-9]{32}\b",66 "hash_sha256": r"\b[a-f0-9]{64}\b",67}6869def extract_iocs(text: str) -> dict:70 return {k: re.findall(v, text) for k, v in IOC_PATTERNS.items()}71```72731. **Scope and authorize** — confirm written authorization and define target boundaries742. **Reconnaissance** — enumerate targets, services, and potential attack surfaces753. **Exploitation** — attempt exploitation of identified vulnerabilities within scope764. **Post-exploitation** — document access level, lateral movement, and data exposure775. **Report and remediate** — compile findings with reproduction steps and fix recommendations78### Step 1: Configure URL Protect Policy79- Navigate to Administration > Gateway > Policies > Targeted Threat Protection - URL Protect80- Create URL Protect definition with rewriting enabled for inbound messages81- Enable URL Pre-Delivery Action set to "Hold" for maximum protection82- Configure scan mode: aggressive for high-risk users, moderate for general population83- Set action for malicious URLs: block page with user notification84- Enable URL logging for all click events8586### Step 2: Configure Attachment Protect Policy87- Navigate to Administration > Gateway > Policies > Targeted Threat Protection - Attachment Protect88- Create Attachment Protect definition for inbound email89- Select sandbox mode: "Safe File" (converts to safe format) or "Dynamic Configuration" (full sandbox)90- Configure attachment types to scan: executables, Office documents, PDFs, archives91- Set timeout for sandbox analysis (default: up to 7 minutes for complex files)92- Enable pre-emptive sandboxing for attachments from unknown senders9394### Step 3: Configure Impersonation Protect95- Create Default Impersonation Protect Definition (Hit 3) for all inbound email96- Create VIP Impersonation Protect Definition (Hit 1) for executive protection97- Build VIP list: CEO, CFO, CTO, board members, finance leadership98- Configure detection identifiers: display name, domain similarity, newly observed sender99- Set actions: quarantine high-confidence impersonation, tag moderate confidence100- Enable end-user warning banners for flagged messages101102### Step 4: Enable Internal Email Protect103- Configure journaling from Microsoft 365/Google Workspace to Mimecast104- Enable URL scanning for internal emails105- Enable attachment scanning for internal emails106- Configure alerts for internal account compromise indicators107- Set up detection for internal phishing (compromised account sending malware)108109### Step 5: Create Test Group and Validate110- Create pilot group of 50-100 users across departments111- Apply TTP policies to pilot group first112- Send test emails with known-safe test URLs and EICAR test files113- Verify URL rewriting, attachment sandboxing, and impersonation detection114- Monitor false positive rate for 1-2 weeks before organization-wide deployment115116### Step 6: Deploy Organization-Wide and Tune117- Extend TTP policies to all users118- Monitor Mimecast Threat Dashboard for detection metrics119- Review and whitelist legitimate applications triggering false positives120- Tune impersonation sensitivity based on false positive feedback121- Configure exception policies for automated systems and mailing lists122123## When NOT to Use124125- You need to test the implementation (use performing-* skills)126- Task is about configuring existing tools (use configuring-* skills)127- You need to analyze security events (use analyzing-* skills)128- Task is about building detection rules (use building-* skills)129- You don't have access to the target environment130- Task requires vendor-specific expertise (consult vendor docs)131132133## Red Flags134135- Performing actions without explicit written authorization from the asset owner136- Testing against production systems without a defined scope and rules of engagement137- Exceeding the authorized scope of the engagement138- Leaving persistent access mechanisms without explicit approval139- Causing denial-of-service on production systems during testing140141## Verification142143- All steps executed successfully against a test environment before production use144- Output documented with screenshots or logs demonstrating expected behavior145- All exploited vulnerabilities documented with reproduction steps146- Scope boundaries confirmed — only authorized targets were tested147- Remediation recommendations included for every finding148149## Tools & Resources150- **Mimecast Administration Console**: Policy configuration and management151- **Mimecast Threat Dashboard**: Real-time threat visibility and analytics152- **Mimecast Awareness Training**: Integrated security awareness platform153- **Mimecast API**: Programmatic access to logs and threat data154- **Message Center**: Quarantine management for admins and users155156## Validation157- URL Protect rewrites URLs in test messages and blocks known-malicious at click158- Attachment Protect sandboxes test file and returns verdict within SLA159- Impersonation Protect flags test BEC email impersonating VIP160- Internal Email Protect detects test lateral phishing scenario161- Pre-delivery hold catches weaponized URL before reaching inbox162- False positive rate below organizational threshold after tuning163164## Process1651661. Analyze the task requirements1672. Apply domain expertise1683. Verify output quality169170## Anti-Rationalization Table171172| Rationalization | Reality |173|---|---|174| "We are too small to be targeted" | Automated attacks target everyone. Size does not matter. |175| "Security slows us down" | A breach slows you down 100x more. Build security in from the start. |176| "We will fix it after launch" | Vulnerabilities in production are exploited within hours. Fix before deploy. |