BridgeKeeper: Scrape employee names from search engine LinkedIn profiles
BridgeKeeper
Scrape employee names from search engine LinkedIn profiles. Convert employee names to a specified username format.
Features
- Support for all three major search engines: Google, Bing, and Yahoo
- Name parsing to strip LinkedIn titles, certs, prefixes, etc.
- Search engine blacklist evasion
- Proxying
- Username formatting with support for trickier username formats
- Name trimming
- i.e. If a username format has only the first 4 characters of the last name
- Hyphenated last name handling
- Duplicate username handling
- Incrementing numbers appended to duplicate usernames
- Name trimming
Download
git clone https://github.com/0xZDH/BridgeKeeper.git
Use
Examples
Gather employee names for a company, Example, and convert each name into a ‘flast’ username formatted email:
$ python3 bridgekeeper.py –company example –format {f}{last}@example.com –depth 10 –proxy 127.0.0.1:8080 –output example-employees/ –debug
Convert an already generated list of names to usernames:
$ python3 bridgekeeper.py –file names.txt –format {f}{last}@example.com –output example-employees/ –debug
Username format examples (BridgeKeeper supports middle names as well as character limited usernames – e.g. only 4 characters of the last name is used):
Source: https://github.com/0xZDH/