From cybersecurity-skills
Automates GoPhish phishing simulation campaigns via the Python gophish library: creates email templates, SMTP profiles, target groups from CSV, launches campaigns, and analyzes open/click/credential submission rates for red team assessments.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cybersecurity-skills:performing-red-team-phishing-with-gophishThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- When conducting security assessments that involve performing red team phishing with gophish
pip install gophish requests# For authorized penetration testing and lab environments only
python scripts/agent.py --gophish-url https://localhost:3333 --api-key <key> --campaign-name "Q1 Awareness" --output phishing_report.json
from gophish import Gophish
from gophish.models import Campaign, Template, Group, SMTP, Page
api = Gophish("api_key", host="https://localhost:3333", verify=False) # Self-signed cert on localhost lab
campaign = Campaign(name="Q1 Test", groups=[Group(name="Sales Team")],
template=Template(name="IT Password Reset"), smtp=SMTP(name="Internal SMTP"),
page=Page(name="Credential Page"))
api.campaigns.post(campaign)
npx claudepluginhub costrict-plugins-repo/mukul975-anthropic-cybersecurity-skills-cybersecurity-skillsAutomates GoPhish phishing campaigns using Python gophish library: creates email templates, SMTP profiles, target groups, launches campaigns and analyzes results.
Automates GoPhish phishing campaigns using Python gophish library: creates email templates, SMTP profiles, target groups, launches campaigns and analyzes results.
Automates GoPhish phishing simulation campaigns using Python gophish library: creates email templates with tracking, SMTP profiles, CSV target groups, launches campaigns, analyzes open/click/credential stats for security awareness.