Skip to content

A blazingly fast command-line tool written in Rust to automatically extract email addresses from various file formats.

License

Notifications You must be signed in to change notification settings

J-Schoepplenberg/email-address-extractor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Email Address Extractor

A blazingly fast command line tool written in pure safe Rust to automatically extract email addresses from files in a given path.

Supported File Types

  • Plain text (txt, csv, sql, json, html, xml etc.)
  • Portable Document Format (pdf)
  • Microsoft Word (docx)
  • Microsoft Excel (xlsx)
  • Microsoft Power Point (pptx)
  • OpenOffice Writer (odt)
  • OpenOffice Spreadsheet (ods)
  • OpenDocument Presentation (odp)

Usage

  cargo run --release /path/to/file

The tool writes the extracted email addresses to a plain text file called emails.txt in the current directory.

Samples

Using the sample file provided by Have I Been Pwned, which contains 10 million records of typical breach data, we confirm that this tool extracts exactly 10 million email addresses successfully.

In the \sample folder, multiple example files are available to showcase this tool's ability to extract email addresses from various file formats.

These sample files are provided:

  • file.html
  • file.json
  • file.odp
  • file.ods
  • file.odt
  • file.pdf
  • file.pptx
  • file.sql
  • file.txt
  • file.xlsx
  • file.xml

Background

This project is inspired by Have I Been Pwned and aims to help extract email addresses from data breaches, which are commonly in plain text file formats such as csv or sql. Utilizing a HashSet, we ensure that the output has no duplicates.

Handling a variety of different file types requires some effort. Not all file formats use the same encoding, and some file formats are actually zip archives containing several different file types, such as xml. We use magic numbers to identify the MIME type of the file, and then try to extract the textual content based on that knowledge.

To extract email addresses from text, we use the well-known regular expression \b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}\b, which matches any email address sufficiently well. Formulating a perfect regular expression to validate an email address is actually not trivial. The subject is controversial. The only way to really validate an email address is to send an email to it, which we are obviously not going to do.

About

A blazingly fast command-line tool written in Rust to automatically extract email addresses from various file formats.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages