How Hackers Conduct Phishing Attacks: The Full Attack Lifecycle

how hacker conduct the phishing attacks

Most people picture phishing as a single moment — a suspicious email lands in an inbox. In reality, a phishing attack is a multi-stage operation with reconnaissance, infrastructure setup, delivery, and post-compromise phases, each mirroring standard project workflow more than most people expect. Understanding the full lifecycle, the way MITRE ATT&CK documents it, is what actually helps defenders interrupt it — because every stage is a separate opportunity for detection.

The Phishing Attack Lifecycle

flowchart TD
    A["Reconnaissance"] --> B["Infrastructure Setup"]
    B --> C["Lure Creation"]
    C --> D["Delivery"]
    D --> E["Victim Interaction"]
    E --> F{"Success?"}
    F -->|Yes| G["Credential or Access Capture"]
    F -->|No| H["Attempt Failed or Detected"]
    G --> I["Post-Compromise Actions"]
    I --> J["Account Takeover<br/>Lateral Movement<br/>Data Theft<br/>Fraud"]

Stage 1: Reconnaissance

Before sending anything, attackers gather context to make the lure believable. For mass-market phishing, this is minimal — a purchased email list and a generic pretext (“your package couldn’t be delivered”) is enough. For targeted phishing (spear phishing) or whaling attacks against executives, reconnaissance is far more deliberate: attackers study LinkedIn profiles, company org charts, press releases, and even out-of-office replies to learn reporting relationships, current projects, and communication style. Business Email Compromise (BEC) campaigns, which the FBI’s Internet Crime Complaint Center consistently ranks among the costliest cybercrime categories by dollar loss, rely heavily on this reconnaissance phase to impersonate a CFO or vendor convincingly.

Stage 2: Infrastructure Setup

This includes registering lookalike or typosquatted domains, standing up hosting (sometimes on compromised legitimate servers to inherit an existing good reputation), obtaining a TLS certificate, and configuring an email-sending capability — either through a compromised legitimate mail account (which bypasses sender authentication checks entirely) or through spoofing techniques against domains with weak SPF/DKIM/DMARC configuration.

Stage 3: Lure Creation

The lure is the pretext and the artifact — the email copy, the cloned login page, the malicious attachment, or the QR code (in “quishing” attacks). Effective lures exploit a small set of consistent psychological levers:

Psychological LeverExample Pretext
Urgency“Your account will be suspended in 24 hours”
AuthorityImpersonating IT, HR, or an executive
Fear“Suspicious sign-in detected”
Curiosity“You’ve received a shared document”
Reciprocity/TrustImpersonating a known vendor or colleague

Stage 4: Delivery

Delivery channels have diversified well beyond email:

Stage 5–6: Victim Interaction and Capture

Once a victim clicks through, the mechanics depend on attack type: a credential-harvesting page captures typed credentials; a malicious attachment may execute a macro or exploit to drop malware; an OAuth consent phishing attack (a technique that surged with cloud SaaS adoption) tricks the victim into granting a malicious third-party app permissions to their real account — notably, this bypasses password-based defenses and even some MFA entirely, since the victim authenticates normally and simply grants scoped access to an attacker-controlled application.

sequenceDiagram
    participant Victim
    participant MaliciousApp as Attacker's OAuth App
    participant RealProvider as Legitimate Identity Provider
    Victim->>MaliciousApp: Clicks "Sign in with Google/Microsoft"
    MaliciousApp->>RealProvider: Redirects to real OAuth consent screen
    RealProvider->>Victim: "This app wants access to your mail/files"
    Victim->>RealProvider: Approves (thinks it's a legitimate integration)
    RealProvider->>MaliciousApp: Issues OAuth token
    MaliciousApp->>RealProvider: Uses token to access victim's data

Stage 7: Post-Compromise Actions

Captured credentials or tokens rarely end the attack — they start the next phase. Common outcomes documented in incident response reports include:

Comparing Phishing Attack Types

TypeTarget ScopeSophisticationTypical Goal
Mass/bulk phishingBroad, untargetedLowCredential harvesting at scale
Spear phishingSpecific individual/roleMedium-HighTargeted account or system access
WhalingExecutives specificallyHighHigh-value fraud, sensitive data access
BEC (Business Email Compromise)Finance/procurement staffHigh (social engineering focused)Fraudulent wire transfers
OAuth consent phishingSaaS/cloud identity usersMedium-HighPersistent access without needing the password
Vishing/SmishingMobile usersMediumCredential or MFA code capture

Defensive Workflow Mapped to the Attack Lifecycle

Attack StageDefensive Control
ReconnaissanceLimit public exposure of org charts/contact info; security awareness about social media oversharing
Infrastructure setupDomain-monitoring for lookalikes; email authentication (SPF/DKIM/DMARC) enforcement
DeliverySecure email gateway filtering; SMS/voice spam filtering; QR code scanning tools
Victim interactionPhishing-resistant MFA; browser isolation; user training
Post-compromiseConditional access policies; anomaly detection; rapid credential revocation; OAuth app allowlisting

Common Mistakes Organizations Make

FAQs

Q: Is email still the primary phishing delivery channel? Yes, by volume, though SMS, voice, and social-media-based phishing have grown significantly, partly because they bypass mature email security filtering.

Q: How does OAuth consent phishing bypass MFA? The victim authenticates through the real identity provider using their normal credentials and MFA, then grants a malicious third-party application scoped access — the attacker never needs the password or MFA code at all, only the token issued after consent.

Q: What’s the single highest-leverage defensive investment? Phishing-resistant MFA (FIDO2/WebAuthn or passkeys) combined with rapid incident response processes for the post-compromise phase, since no single control stops every stage of the lifecycle.

Summary and Recommendations

Phishing succeeds because it’s a full lifecycle attack, not a single email — and every stage from reconnaissance through post-compromise action offers a distinct defensive opportunity. Effective defense means mapping controls to each stage rather than relying on a single layer like email filtering or awareness training alone.

Further reading:

Exit mobile version