Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

phishing-attacks网络钓鱼攻击

Agent Skill

phishing-attacks 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,460

周安装

220

GitHub Stars

28

下载量

2,428
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:phishing-attacks(网络钓鱼攻击)
来源仓库:https://github.com/zebbern/secops-cli-guides
仓库路径:skills/phishing-attacks
安装命令:
npx skills add https://github.com/zebbern/secops-cli-guides --skill 'Phishing Attacks'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/zebbern/secops-cli-guides --skill 'Phishing Attacks'

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限和维护状态。
  • 使用前建议核验是否会触发联网、命令执行或文件读写操作。
  • phishing-attacks 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Phishing Attacks

Purpose

Demonstrate phishing attack techniques for authorized penetration testing and security awareness training. Enable security professionals to assess organizational susceptibility to social engineering attacks and improve employee security awareness.

Inputs/Prerequisites

  • Kali Linux or similar security distribution
  • Written authorization for phishing simulation
  • Target scope and employee consent
  • Network adapter supporting monitor mode (for WiFi attacks)
  • Understanding of social engineering principles

DISCLAIMER: This content is for educational and authorized penetration testing purposes only. Never conduct phishing attacks without explicit written authorization.

Outputs/Deliverables

  • Phishing campaign results and metrics
  • Captured credentials (for authorized testing)
  • Security awareness training recommendations
  • Vulnerability assessment report
  • Remediation guidance

Core Workflow

1. Understanding Phishing

What is Phishing?

Phishing uses deceptive tactics to trick people into revealing sensitive information like passwords or financial details. It exploits human psychology and familiarity with trusted services.

Attack Types:

TypeDescriptionVector
Email PhishingFake emails impersonating trusted entitiesEmail
Spear PhishingTargeted attacks on specific individualsEmail
WhalingTargeting executives and VIPsEmail
VishingVoice-based social engineeringPhone
SmishingSMS-based phishingText message
Clone PhishingDuplicating legitimate emailsEmail
WiFi PhishingEvil twin access pointsWiFi

Why Phishing Works:

  • Leverages trust in familiar brands
  • Exploits urgency and fear
  • Targets human habits and routines
  • Bypasses technical security controls

2. Shellphish Tool

Shellphish creates phishing pages for common websites to demonstrate credential harvesting vulnerabilities.

Installation:

# Navigate to installation directory
cd Desktop

# Clone repository
git clone https://github.com/thelinuxchoice/shellphish.git

# Enter directory
cd shellphish
ls

# Set permissions
chmod 744 shellphish.sh

# Launch tool
./shellphish.sh

Available Templates:

Shellphish includes templates for popular platforms:

  • Social Media: Facebook, Instagram, Twitter/X, LinkedIn, Snapchat
  • Email: Gmail, Yahoo, Outlook
  • Streaming: Netflix
  • Gaming: Steam, Origin, PlayStation
  • Other: GitHub, StackOverflow, GitLab

Using Shellphish:

# Launch the tool
./shellphish.sh

# Select template (e.g., 4 for Twitter)
4

# Choose hosting method:
# 1: Localhost
# 2: Ngrok (recommended for external testing)
2

# Tool starts PHP and Ngrok servers
# Provides phishing URL: https://xxxx.ngrok.io

Attack Workflow:

  1. Select Target Platform - Choose template matching target organization
  2. Generate Link - Use Ngrok for HTTPS capability
  3. Craft Pretext - Create convincing email narrative
  4. Deliver Payload - Send phishing email with link
  5. Capture Credentials - Monitor for incoming credentials

Sample Email Template:

Subject: Security Alert: Unusual Login Attempt Detected

Dear User,

We detected a suspicious login attempt on your account from:
- Location: Unknown
- Device: Windows PC
- Time: [Current Date/Time]

If this wasn't you, please secure your account immediately by
verifying your identity.

[Verify Now] <- Phishing Link

Best regards,
Security Team

Credential Capture:

When target enters credentials:

  • Shellphish displays IP address, browser, location
  • Credentials shown in plaintext
  • Target redirected to legitimate site

3. Wifiphisher Tool

Wifiphisher performs automated WiFi phishing attacks by creating rogue access points.

Requirements:

  • Kali Linux
  • Two WiFi adapters:

- One supporting AP (access point) mode - One supporting monitor mode

Attack Phases:

  1. Deauthentication - Jam target access point, disconnect clients
  2. Evil Twin Creation - Clone target AP settings, create rogue AP
  3. Credential Capture - Serve phishing page to connected victims

Installation:

# Install Wifiphisher
apt update
apt install wifiphisher

# Or install from source
git clone https://github.com/wifiphisher/wifiphisher.git
cd wifiphisher
python setup.py install

Basic Usage:

# Launch with default settings
wifiphisher

# Specify interface
wifiphisher -aI wlan0 -jI wlan1

# Use specific phishing scenario
wifiphisher --essid "Free_WiFi" -p firmware-upgrade

Phishing Scenarios:

ScenarioDescription
firmware-upgradePrompt for WPA password during "update"
oauth-loginSocial media login portal
plugin-updateBrowser plugin update page

Attack Flow:

1. Victim connected to legitimate WiFi

2. Wifiphisher:
   - Scans for target networks
   - Sends deauth packets to disconnect victim
   - Creates identical AP (Evil Twin)
   - Sets up captive portal

3. Victim:
   - Device auto-reconnects to stronger signal
   - Opens browser → sees phishing page
   - Enters WiFi password

4. Attacker:
   - Captures WPA credentials
   - Can perform MitM attacks

4. Email Phishing Best Practices

Crafting Convincing Emails:

DO:
✓ Match sender domain closely
✓ Use proper grammar and formatting
✓ Include legitimate-looking logos
✓ Create sense of urgency
✓ Personalize with target information

DON'T:
✗ Use obvious fake domains
✗ Include spelling errors
✗ Make impossible claims
✗ Use threatening language excessively
✗ Request excessive information

Social Engineering Pretexts:

PretextTrigger
Password expiryFear of losing access
Security alertUrgency to protect account
Payment issueFinancial concern
Document sharedCuriosity
IT supportAuthority compliance

5. Detection and Defense

Email Indicators of Phishing:

Check for:
- Sender address doesn't match domain
- Generic greetings ("Dear Customer")
- Urgent or threatening language
- Suspicious links (hover to preview)
- Requests for sensitive information
- Unexpected attachments
- Poor grammar/spelling

Technical Defenses:

# Check SPF records
dig txt domain.com | grep spf

# Check DKIM
dig txt selector._domainkey.domain.com

# Check DMARC
dig txt _dmarc.domain.com

Organizational Defenses:

ControlPurpose
Security Awareness TrainingEducate employees
Email FilteringBlock malicious emails
Multi-Factor AuthenticationReduce credential impact
Phishing SimulationsTest and improve readiness
Reporting MechanismsEasy suspicious email reporting

6. Security Awareness Training

Training Resources:

Google Phishing Quiz: https://phishingquiz.withgoogle.com/
Free online assessment for phishing recognition

Key Training Topics:

  • Recognizing suspicious emails
  • Verifying sender identity
  • Hovering before clicking
  • Reporting procedures
  • Password hygiene

Quick Reference

Phishing Indicators Checklist

□ Check sender email address carefully
□ Hover over links before clicking
□ Look for urgency or threats
□ Verify through official channels
□ Never enter credentials from email links
□ Report suspicious emails immediately

Tool Commands

# Shellphish
git clone https://github.com/thelinuxchoice/shellphish.git
cd shellphish && chmod 744 shellphish.sh && ./shellphish.sh

# Wifiphisher
wifiphisher -aI wlan0 -jI wlan1 -p firmware-upgrade

# GoPhish (enterprise phishing platform)
./gophish

Constraints

  • Legal: Must have written authorization
  • Ethical: Purpose should be defensive/educational
  • Scope: Only target authorized systems/users
  • Data: Captured credentials must be handled securely
  • Reporting: Full disclosure to client required

Examples

Example 1: Authorized Phishing Test

# Set up Shellphish with Gmail template
./shellphish.sh
# Select Gmail (option varies)
# Use Ngrok for HTTPS

# Send controlled test email to authorized users
# Monitor and document results
# Report findings to security team

Example 2: WiFi Security Assessment

# With authorization from network owner
wifiphisher --essid "CompanyWiFi" -p firmware-upgrade

# Document captured credentials
# Report vulnerability to client
# Recommend WPA3 and user training

Troubleshooting

IssueSolution
Ngrok not connectingCheck internet connection, firewall
Templates not loadingVerify shellphish installation
WiFi adapter not detectedCheck driver compatibility
Deauth not workingVerify monitor mode capability
Credentials not capturedCheck PHP server running
Target suspiciousImprove email pretext quality

Reporting Findings

Phishing Assessment Report Should Include:

  • Executive summary
  • Methodology used
  • Number of emails sent
  • Click-through rate
  • Credential submission rate
  • User segments most vulnerable
  • Comparison to benchmarks
  • Recommendations for improvement
  • Training material suggestions

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.32%
按下载量换算858

Claude

32.17%
按下载量换算781

Cursor

19.51%
按下载量换算474

Gemini CLI

8.83%
按下载量换算214

安全审计

Gen Agent Trust Hub

未通过

Socket

未通过

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills