Phishing Email Dataset
Phish No More: The Enron, Ling, CEAS, Nazario, Nigerian & SpamAssassin Datasets
@kaggle.naserabdullahalam_phishing_email_dataset
Phish No More: The Enron, Ling, CEAS, Nazario, Nigerian & SpamAssassin Datasets
@kaggle.naserabdullahalam_phishing_email_dataset
This dataset was compiled by researchers to study phishing email tactics. It combines emails from a variety of sources to create a comprehensive resource for analysis.
Enron and Ling Datasets: These datasets focus on the core content of phishing emails, containing subject lines, email body text, and labels indicating whether the email is spam (phishing) or legitimate.
CEAS, Nazario, Nigerian Fraud, and SpamAssassin Datasets: These datasets provide broader context for the emails, including sender information, recipient information, date, and labels for spam/legitimate classification.
The final dataset combines the information from the initial datasets into a single resource for analysis. This dataset contains:
This dataset allows researchers to study the content of phishing emails and the context in which they are sent to improve detection methods.
Please cite the following two articles if you are using this dataset:
CREATE TABLE ceas_08 (
"sender" VARCHAR,
"receiver" VARCHAR,
"date" VARCHAR,
"subject" VARCHAR,
"body" VARCHAR,
"label" BIGINT,
"urls" BIGINT
);CREATE TABLE enron (
"subject" VARCHAR,
"body" VARCHAR,
"label" BIGINT
);CREATE TABLE ling (
"subject" VARCHAR,
"body" VARCHAR,
"label" BIGINT
);CREATE TABLE nazario (
"sender" VARCHAR,
"receiver" VARCHAR,
"date" VARCHAR,
"subject" VARCHAR,
"body" VARCHAR,
"urls" BIGINT,
"label" BIGINT
);CREATE TABLE nigerian_fraud (
"sender" VARCHAR,
"receiver" VARCHAR,
"date" VARCHAR,
"subject" VARCHAR,
"body" VARCHAR,
"urls" BIGINT,
"label" BIGINT
);CREATE TABLE phishing_email (
"text_combined" VARCHAR,
"label" BIGINT
);CREATE TABLE spamassasin (
"sender" VARCHAR,
"receiver" VARCHAR,
"date" VARCHAR,
"subject" VARCHAR,
"body" VARCHAR,
"label" BIGINT,
"urls" BIGINT
);Anyone who has the link will be able to view this.