stebet / EmailAddressExtractor

A project to rapidly extract all email addresses from any files in a given path

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The Have I Been Pwned Email Address Extractor

A project to rapidly extract all email addresses from any files in a given path

Background

This project is intended to be a brand new open source version of a basic codebase I've used for the better part of a decade to extract email addresses from data breaches before loading them into HIBP. Most breaches are in a .sql or .csv format either in a single file or multiple files within a folder and extraction follows a simple process:

  1. Extract all addresses via regex
  2. Convert them to lowercase
  3. Order them alphabetically
  4. Save them to an output file
  5. Create a report of how many unique addresses were in each file

The regex I've used is as follows: \b[a-zA-Z0-9\.\-_\+]+@[a-zA-Z0-9\.\-_]+\.[a-zA-Z]+\b

Email address validation via regex is hard, but it also doesn't need to be perfect for this use case. False positives are extremely rare and the impact is negligible, namely that a string that isn't a genuine address gets loaded into HIBP or a genuine address of an unusual format gets loaded. For the most part, this regex can be summarised as "stuff either side of an @ symbol with a TLD of alphas characters".

Contributions

I've reached out and asked for support and will get things kicked off via one or two key people then seek broader input. I'm particularly interested in optimising the service across larger data sets and non text-based files, especially with the uptick of documents being dumped by ransomware crews. I'll start creating issues for the bits that need building.

Test data

Using Red Gate's SQL Data Generator, a sample file containing 10M records of typical breach data is available to download from Mega. This file results in exactly 10M email addresses being extracted with the current version of this app. Note: the test data file is presently in V2, with the earlier version resulting in slightly less than 10M unique addresses due to the presence of invalid domain name patterns.

Running the Address Extractor

Syntax: AddressExtractor.exe -? Syntax: AddressExtractor.exe -v Syntax: AddressExtractor.exe <input [[... input]]> [-o output] [-r report]

Main Options

Option Description
-?, -h, --help Prints the command line syntax and options
-v, --version Prints the application version number
input One or more input filenames or directories
-o, --output output Path and filename of the output file. Defaults to 'addresses_output.txt'
-r, --report report Path and filename of the report file. Defaults to 'report.txt'
--recursive Enable recursive mode for directories, which will search child directories
-y, --yes Automatically confirm prompts to CONTINUE without asking
-q, --quiet Run with less verbosity, progress messages aren't shown

Performance / Debugging

Option Description
--debug Enable debug mode for fine-tuned performance checking
--threads num Uses multiple threads with channels for reading from files. Defaults to 4
--skip-exceptions Automatically prompts on CONTINUE when an exception occurs

About

A project to rapidly extract all email addresses from any files in a given path

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C# 100.0%