Datasets:
Tasks:
Text Classification
Formats:
parquet
Sub-tasks:
multi-class-classification
Languages:
English
Size:
10K - 100K
License:
sender string | receiver string | date string | subject string | body string | urls int64 | label int64 |
|---|---|---|---|---|---|---|
Mail System Internal Data <MAILER-DAEMON@monkey.org> | null | 28 Sep 2017 09:57:25 -0400 | DON'T DELETE THIS MESSAGE -- FOLDER INTERNAL DATA | "This text is part of the internal format of your mail folder, and is not a real message. It is cre(...TRUNCATED) | 1 | 1 |
cPanel <service@cpanel.com> | jose@monkey.org | Fri, 30 Oct 2015 00:00:48 -0500 | Verify Your Account | "Business with \t\t\t\t\t\t\t\tcPanel & WHM \t\t\t\t\t\t\t\tDear client, Our Technical \t\t\t\t\t\(...TRUNCATED) | 1 | 1 |
Microsoft Outlook <recepcao@unimedceara.com.br> | null | Fri, 30 Oct 2015 06:21:59 -0300 (BRT) | Helpdesk Mailbox Alert!!! | "Your two incoming mails were placed on pending status due to the recent upgrade in our database, In(...TRUNCATED) | 1 | 1 |
Ann Garcia <AnGarcia@mcoe.org> | "info@maaaaa.org" <info@maaaaa.org> | Fri, 30 Oct 2015 14:54:33 +0000 | IT-Service Help Desk | Password will expire in 3 days. Click Here To Validate E-mail Thank you, IT-Service Help Desk | 0 | 1 |
"USAA" <usaaacctupdate@sccu4u.com> | Recipients <usaaacctupdate@sccu4u.com> | Fri, 30 Oct 2015 14:02:33 -0500 | Final USAA Reminder - Update Your Account Now | "To ensure delivery to your inbox, please add USAA.Customer.Service@mailcenter.usaa.com to your addr(...TRUNCATED) | 1 | 1 |
=?utf-8?Q?P=2eSupport?= <infos@2015p.com> | jose@monkey.org | Sat, 31 Oct 2015 13:38:13 +0000 | =?utf-8?Q?Dear=20Client=20=3a=20Update=20Your=20Information=20=2e?= | "PayPal Secure Dear Client, We have noticed that some data(...TRUNCATED) | 1 | 1 |
Update | Recipients | Sat, 31 Oct 2015 20:44:17 +0530 | Update | "08/10/2011 06:14:36 am +0800 - en_US.UTF-8 - OpenWebMail (+) Please Validate Account Sign In Belo(...TRUNCATED) | 1 | 1 |
"USAA" <usaa-offers@banking2.org> | Recipients <usaa-offers@banking2.org> | Tue, 03 Nov 2015 22:18:36 +1300 | IMPORTANT NEW MESSAGE FROM USAA | "E-mail Address Update\t View Accounts | Privacy Promise | Contact Us\t \t \t \t \t (...TRUNCATED) | 1 | 1 |
"Tourne, Michele" <MTourne@co.humboldt.ca.us> | Undisclosed recipients:; | Mon, 2 Nov 2015 12:59:51 +0000 | Mailbox Warning!!! | "Dear Valued User, We are having a major system upgrade today. We require that you perform (...TRUNCATED) | 1 | 1 |
"English, Saundra (FDNY)" <Saundra.English@fdny.nyc.gov> | "info@eeee.org" <info@eeee.org> | Tue, 3 Nov 2015 16:27:37 -0500 | Help Desk Password Update | "Password will expire in 3 days. Click Here To Validate E-mail Password Thank you, IT-Service Help D(...TRUNCATED) | 1 | 1 |
End of preview. Expand
in Data Studio
Dataset Card: Phish Email Datasets
Dataset Summary
This repository contains three Parquet files of email records for phishing-related modeling and analysis.
- Total rows across files:
7,962 - Common fields: sender/receiver metadata, date string, subject, body, URL indicator or URL content, label
- Storage format: Apache Parquet
Repository Contents
| File | Rows | Columns | Label distribution |
|---|---|---|---|
Nazario.parquet |
1,565 | 7 | {1: 1565} |
Nazario_5.parquet |
3,065 | 7 | {1: 1565, 0: 1500} |
Nigerian_Fraud.parquet |
3,332 | 7 | {1: 3332} |
Schema
The datasets use the following fields (order may vary):
sender(string): email sender informationreceiver(string): email recipient informationdate(string): raw date text extracted from email headerssubject(string): email subject linebody(string): email body texturls(intorstring): URL feature with inconsistent encoding across fileslabel(int): class label
Data Quality Notes
- Missing values exist, especially in
receiver,date, andsender(notably inNigerian_Fraud.parquet). dateis stored as raw strings with mixed formats; parsing to a timestamp requires normalization.urlsis not schema-consistent:- In
Nazario.parquetandNigerian_Fraud.parquet, it behaves like a binary indicator (0/1). - In
Nazario_5.parquet, it contains mixed string values including'0','1','[]', and serialized URL lists.
- In
- A small number of rows have empty
bodytext.
Label Semantics
The repository does not include authoritative label documentation.
Working assumption (to be verified before production use):
1= phishing/fraudulent email0= non-phishing (ham/legitimate) email
Intended Use
- Baseline experiments for phishing email classification
- Feature engineering and text preprocessing research
- Dataset conversion and interoperability testing (CSV/Parquet workflows)
Out-of-Scope / Risks
- Security blocking decisions without additional validation and calibration
- Use as a sole source of ground truth
- Direct comparison across files without harmonizing schema and preprocessing
Ethical and Privacy Considerations
- Email data can contain personally identifiable information (PII) and sensitive content.
- Use for research and defensive security purposes only.
- Apply redaction/anonymization when sharing derived artifacts.
Recommended Preprocessing
- Standardize
urlsinto a single representation (for example, numeric indicator + extracted URL count). - Parse and normalize
dateinto timestamps where possible. - Normalize text fields (
subject,body) and handle missing metadata fields. - Confirm label semantics against original source documentation if available.
Example Loading Code
import pandas as pd
df = pd.read_parquet("Nazario_5.parquet")
print(df.head())
print(df["label"].value_counts(dropna=False))
Provenance, Licensing, and Citation
- Provenance: not documented in this repository.
- License: not documented in this repository.
- Citation: add source-specific citation(s) when provenance is confirmed.
- Downloads last month
- 42