CoolFace
Datasetpublic

darkknight25/phishing_benign_email_dataset

Phishing and Benign Email Dataset This dataset contains a curated collection of phishing and legitimate (benign) emails for use in cybersecurity training, phishing detection models, and email classification systems. Each entry is structured with subject, body, intent, technique, target, and classification label. ๐Ÿ“ Dataset Format The dataset is stored in .jsonl (JSON Lines) format. Each line is a standalone JSON object. Fields: Fieldโ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/darkknight25/phishing_benign_email_dataset.

sourceHugging Facemitupdated 1y agoView on Hugging Face
3likes115downloads
Dataset Card

Phishing and Benign Email Dataset

This dataset contains a curated collection of phishing and legitimate (benign) emails for use in cybersecurity training, phishing detection models, and email classification systems. Each entry is structured with subject, body, intent, technique, target, and classification label.


๐Ÿ“ Dataset Format

The dataset is stored in .jsonl (JSON Lines) format. Each line is a standalone JSON object.

Fields:

FieldDescription
idUnique email ID
subjectEmail subject line
bodyFull email content
intentPurpose of the email (e.g., credential harvesting, malware delivery)
techniqueSocial engineering or technical trick used
targetWho or what is being impersonated
spoofed_senderForged email address
label"phishing" or "benign"

๐Ÿ” Example Entry

json
{
  "id": "phish-0003",
  "subject": "Unusual Activity Detected",
  "body": "Suspicious login from Russia. Reset password now: https://g00gle-security.com",
  "intent": "Credential Harvesting",
  "technique": "Homoglyph Link Spoofing",
  "target": "Google",
  "spoofed_sender": "no-reply@g00gle.com",
  "label": "phishing"
}
โœ… Use Cases

    Train NLP models to detect phishing content

    Classify or filter email threats in spam filters

    Educate users and red teams on phishing techniques

    Simulate email-based social engineering scenarios

๐Ÿ“Š Dataset Summary

    ๐Ÿ” Phishing Emails: ~100 entries

    โœ… Benign Emails: ~100 entries

    โš–๏ธ Balanced and ready for binary classification or LLM pretraining

โš ๏ธ Disclaimer

This dataset is for research and educational purposes only. Do not use these emails in live environments. The authors are not responsible for misuse.
๐Ÿ“œ License

This dataset is released under the MIT License.
๐Ÿ“ซ Contributions

Feel free to submit pull requests to add more phishing or legit emails. The more diverse, the better for training secure systems.