Operator On The Wire
Join
← Back to Knowledge Base
BLUE TEAM / MALWARE REVERSE / ANALYSIS / STATIC / FILES

EML

MX Lookup Tool - Check your DNS MX Records online - MxToolbox

PatternMeaningRisk
SPF pass + DKIM pass + DMARC passLegitimate mail likelyLow ✅
SPF softfail + DKIM none + DMARC failLikely phishingHigh 🚨
SPF fail + DKIM fail + DMARC failStrong spoofCritical 🔥
SPF pass + DMARC failAlignment issue / spoof attemptMedium–High

Headers

Header / MechanismPurposePass MeansFail MeansCommon ValuesDFIR Meaning
Sender Policy Framework SPFVerifies sender IP is allowed by sender domain DNSSending server authorizedSending server unauthorizedpass, fail, softfail, neutral, noneDetect spoofed sender infrastructure
DomainKeys Identified Mail DKIMVerifies cryptographic signature of messageSignature valid, content unchangedSignature invalid / alteredpass, fail, noneDetect tampering or fake sender signing
Domain-based Message Authentication, Reporting and Conformance DMARCChecks SPF/DKIM alignment with visible senderSender identity alignedSender spoof likelypass, failStrong spoofing indicator
Authenticated Received Chain ARCPreserves auth trust across forwardingForwarded auth chain trustedForwarding trust brokenpass, fail, noneUseful when forwarding breaks SPF
Authentication-ResultsSummary verdict from receiverFull auth summary availableFailures visible immediatelycombined resultsFastest forensic overview

Carving B64 Attachments

$a1b64 = (Get-Content .\Attachment1.txt -Raw) -replace '\s',''

[IO.File]::WriteAllBytes("$(pwd)\payload1.bin",[Convert]::FromBase64String($a1b64))

SPF Result Matrix

SPF ValueMeaningSeverity
passSender IP matches DNS SPF recordLow ✅
failSender IP explicitly unauthorizedHigh 🚨
softfailSuspicious but not strict rejectMedium ⚠️
neutralDomain gives no strong verdictLow / ambiguous
noneNo SPF record existsSuspicious if business domain

SoftFail vs HardFail Matrix

SPF PolicyDNS SyntaxMeaningReceiver Action
SoftFail~allSuspicious but toleratedUsually mark / spam
HardFail-allStrict reject requiredReject / quarantine

DKIM Result Matrix

DKIM ValueMeaningDFIR Interpretation
passSignature validMail likely intact
failSignature brokenModified mail / spoofing
noneNo signatureWeak sender hygiene or suspicious

DMARC Policy Matrix

PolicyDNS ValueMeaningAction
Monitorp=noneOnly report failuresNo blocking
Quarantinep=quarantineSuspicious mail to spamMedium protection
Rejectp=rejectReject suspicious mailStrong protection