Cyberlium

Scam › Module 3 › Lesson 1

BeginnerModule 3Lesson 1/4

What to Do If You Clicked

First 15 minutes after a phishing click: disconnect, change passwords, enable MFA, and check sessions

15 min+50 XP3 quiz
Module progress1 of 4
!Contain · Investigate · Recover
Alarm · Containment · IR playbook

Opening

Shame is a delay tactic. The next 15 minutes are containment, not a confession.

You clicked. You typed a password. Maybe you even hit "Allow" on a prompt. Freeze feels moral — as if sitting still undoes the last minute. Attackers budget for that freeze. Every extra minute on the fake page is another POST of the secret you just typed, another cookie stolen, another chance they start a session on a device you do not own. This lesson is incident response for YOUR accounts. You will contain, then recover access you still control. You will not hack the fake site back, not dox the sender, not "punish" anyone. Speed and order beat revenge. Shame can wait. The checklist cannot.

1. Contain first — stop feeding the fake page

Containment means: stop giving the attacker more. Close the tab. Do not keep browsing "to see if it looks real." Do not type the password again to "check." Do not download the "secure viewer" the page offered. If you opened the link on a computer and the page tried to run a file or install a browser extension, treat that as malware-possible: disconnect Wi-Fi or unplug Ethernet so the box cannot talk out while you switch to a device you still trust. A click without a typed secret is still an incident, just a smaller one. The page may have dropped a cookie, a tracking pixel, or a drive-by prompt. Closing the tab is the first control. A click plus a typed password is a credential incident: assume the attacker has the pair until you rotate it on the real service. A click plus an OTP you typed is worse — they may already be inside. Containment is the same shape either way: stop using the poisoned session, then recover from a session you initiated on a site you typed.

Do not use the fake page's "log in again," "call this number," or "chat with support" buttons. Those are the attacker's helpdesk. Do not reply to the original email or text to "cancel." Cancellation via the bait is how pig-butchering and smishing keep you on the hook. If you fear the device itself is dirty (unexpected installer, new browser profile, MDM/config profile you did not add), do the password work from another phone or computer you own — or after guidance from your workplace IT. You are recovering YOUR login. You are not scanning the scammer's server.

2. Change the secret on the REAL site you type — manager, not the bait

Password change happens on the genuine origin. That means you type the brand yourself (bookmark, password-manager fill from a saved official URL, or the address you already know) — you do not click "reset password" on the phishing page. Topic 4 already taught uniqueness: if that password was reused, the fake page did not steal one site; it stole a skeleton key. Rotate the typed account first, then every reuse of that same secret, starting with email and banking. Generate the new secret in the manager. Do not invent a "hard" variant of the old one. Do not paste the new password into chat, tickets, or a "helpful" friend. If you cannot remember whether you reused it, assume you did for email, cloud, and money apps until you prove otherwise in the vault. That is not paranoia; it is how stuffing works. The manager is the blast-radius tool: one generated string per origin. Changing the password on the fake domain does nothing — that domain is not your bank.

Turn on MFA (authenticator app or security key preferred; SMS is better than nothing and weaker than TOTP) on the account you just rotated, then on the mailbox that can reset it. MFA does not un-send the password you already typed. It stops the next login that only has the password. If the attacker already completed MFA because you typed an OTP into the fake form, password change plus session revoke is the pair that kicks them out — MFA alone on a session they already hold is a sticker on an open door.

3. Sessions, forwarding, and money — close doors they may already hold

Session revoke is the control people skip because it is buried. After a phished login, the attacker may already have a live cookie: "Signed in on Chrome · Windows · city you have never visited." Use the account's Security / Devices / Active sessions page on the REAL site you typed, and sign out everything except the device in your hand. Then sign in again yourself. That is not optional cleanup. That is kicking a guest out of a house whose key you just changed. Email forwarding rules and inbox filters are the quiet persistence trick: a rule that sends a copy of every message to an address you do not know, or that hides mail from your bank. Open Settings → Forwarding / Filters / Rules on YOUR mailbox. Delete anything you did not create. Check recovery email and recovery phone — Topic 4 recovery — so the attacker cannot reset you after you lock the front door. If the phish named a bank, card, wallet, or payroll site, open THAT institution the same way: typed official site or the number printed on YOUR card. Look for new payees, new devices, new cards, crypto sends, gift-card purchases. Freeze or dispute through that official channel. Do not call a number that arrived in the bait.

If money moved, speed still beats shame. Banks and cards have limited windows. You are filing a fraud report on YOUR account, not hunting the wallet. If work systems were involved (SSO, VPN, payroll), tell IT with facts: time, what you typed, what you clicked. You are not "in trouble" for reporting; you are containing blast radius for the org. If a family shared password was typed, rotate that too — still only accounts you jointly own, still no "checking" a relative's mail without them.

4. Wrong vs right: keep browsing the fake page vs a 15-minute contain

Worked failure — same click, opposite next quarter-hour. Recovery is YOUR accounts only.

  • Wrong

    You stay on the fake page "to screenshot proof," re-type the password to confirm it failed, call the number on the page, or message the scammer to demand the money back. You wait overnight because you feel stupid. You try to DDoS the phishing host, look up the sender's home address, or post their photo. You change the password by clicking the link in the phish. You skip session revoke because "I already changed it." Shame plus revenge plus the bait's own buttons — that is how 15 minutes become a takeover.

  • Right

    You close the tab (disconnect if a file or profile installed). From a device you trust, you type the real site or use the manager's saved official URL, change the password, enable MFA, revoke other sessions, and check forwarding. If credentials or money were involved, you use YOUR bank's official site or the number on YOUR card. You write the 15-minute order into $HOME/cyberlium-lab/phishing-15min.txt and chmod 600. You do not hack back. You do not dox. You do not rehearse on anyone else's account.

5. Practical: write YOUR 15-minute checklist in cyberlium-lab

This is a notes lab, not a live phish. You will not visit a malicious URL to "practice clicking." You will not enter a real password into this app. You will write the order you will actually follow on accounts you own, then chmod 600 so the file is not world-readable on a shared box. If you have never clicked a phish, you still want the sheet — incident response that starts after panic is too late.

Command guide

15-minute contain — YOUR accounts, no hack-back

Notes lab. Do NOT open a real phishing link to "practice." Do NOT paste live passwords into this file or into chat.

Command — copy this

mkdir -p "$HOME/cyberlium-lab"
NOTES="$HOME/cyberlium-lab/phishing-15min.txt"

Command — copy this

{
  echo "phishing 15-minute checklist — MY accounts only"
  echo "date: $(date -Iseconds 2>/dev/null || date)"
  echo ""
  echo "0. SHAME DELAY: I will not wait. Freeze helps the attacker."
  echo "1. CONTAIN: close the fake tab. Do not keep browsing it."
  echo "   If installer/profile appeared: disconnect Wi-Fi / unplug Ethernet."
  echo "   Continue from a device I trust (second phone/computer I own)."
  echo "2. REAL SITE: type the brand myself or use password-manager official URL."
  echo "   NEVER click reset/login on the phishing page."
  echo "3. PASSWORD: generate a new unique secret in the manager for that origin."
  echo "   If reused: rotate email + bank + every copy of that secret next."
  echo "4. MFA: turn on authenticator/key (SMS if that is all the site offers)."
  echo "5. SESSIONS: Security → devices / active sessions → sign out others."
  echo "6. MAIL: forwarding rules, filters, recovery email/phone — mine only."
  echo "7. MONEY: if bank/card/wallet named, official site I typed or number on MY card."
  echo "   Look for new payees, devices, cards. Dispute via that channel."
  echo "8. WORK: tell IT time / what I typed / what I clicked — facts, not revenge."
  echo ""
  echo "ETHICS (write these so I remember under stress):"
  echo "Recovery = MY accounts. No hack-back. No doxxing. No revenge."
  echo "No scanning the phishing host. No reset on accounts I do not own."
} > "$NOTES"
chmod 600 "$NOTES"

Confirm the sheet exists and is not group/world readable (Unix-like):

Command — copy this

ls -l "$NOTES"

NEVER: visit the bait again to "collect evidence" by logging in NEVER: call a number that arrived in the phish NEVER: attack, dox, or "trace" the scammer NEVER: paste the new password into tickets, Discord, or Mentor

Mission: one 15-minute sheet for accounts you own

1) Create $HOME/cyberlium-lab/phishing-15min.txt with the contain → typed real site → unique password → MFA → session revoke → forwarding → official bank path, in that order. 2) chmod 600. Read it once out loud so the order is in your head before shame hits. 3) Circle (on paper, not in this app) one account you own whose official URL you can type without a search bar suggestion. Do not open a phishing link. Do not hack back. Do not touch anyone else's mailbox.

Stuck? Ask Cyberlium AI Mentor

If "I already closed the tab, is that enough?" still feels unfinished, ask for a hint — not a brand-specific revenge script. Try: "Hint only: I typed a password on a fake page — why must I change it on a URL I type myself, enable MFA, AND revoke other sessions, and why is calling the number on the fake page not containment?" No spoilers; you still write the sheet for accounts you own.

You now treat a phishing click as a timed incident: contain the fake page, rotate on the real origin you type, add MFA, revoke sessions, inspect forwarding, and call money channels that already belong to you. Shame is delay. Revenge is out of scope. Next — How to Report Scams — you will use platform report buttons, bank fraud lines, and evidence you already have so other people are not the next click, still without forwarding malware or inventing government URLs.

Knowledge Check

1

APPLY: You typed your email password on a page that looked like your provider. The tab is still open. First move that matches this lesson?

Multiple choice

Knowledge Check

2

APPLY: Password is changed. You did not open Security → devices. Why can the attacker still be "in"?

Multiple choice

Knowledge Check

3

APPLY: True or False: Waiting until morning "because I feel stupid" is a reasonable first control after a phishing click.

True or False

← Previous

Answer all 3 knowledge checks to continue. (0/3 answered)