CrossLinked

No description is available yet
CrossLinked logo

Here is the markdown description of CrossLinked:

CrossLinked

CrossLinked is a LinkedIn enumeration tool that uses search engine scraping to collect valid employee names from an organization. This technique provides accurate results without the use of API keys, credentials, or accessing LinkedIn directly!


Install


PyPi

Install the last stable release from PyPi:

pip3 install crosslinked

Poetry

Install and run the latest code using Poetry:

git clone https://github.com/m8sec/crosslinked
cd crosslinked
poetry install
poetry run crosslinked -h

Python

Install the most recent code from GitHub:

git clone https://github.com/m8sec/crosslinked
cd crosslinked
pip3 install .

Prerequisites

CrossLinked assumes the organization's account naming convention has already been identified. This is required for execution and should be used as it appears on LinkedIn "Target Company" not the domain name.


Example Usage

python3 crosslinked.py -f '{first}.{last}@domain.com' company_name

Screenshots

screenshot


Parse

Account naming convention changed after execution and now your hitting CAPTCHA requests? No Problem! CrossLinked includes a names.csv output file, which stores all scraping data including: name, job title, and url. This can be ingested and parsed to reformat user accounts as needed.


Example Usage

python3 crosslinked.py -f '{f}{last}@domain.com' names.csv

Screenshots

screenshot


Additional Options


Proxy Rotation

The latest version of CrossLinked provides proxy support to rotate source addresses. Users can input a single proxy with --proxy 127.0.0.1:8080 or use multiple via --proxy-file proxies.txt.

> cat proxies.txt
127.0.0.1:8080
socks4://111.111.111.111
socks5://222.222.222.222

> python3 crosslinked.py --proxy-file proxies.txt -f '{first}.{last}@company.com' -t 10 "Company"

Command-Line Arguments

  company_name        Target company name
optional arguments:
   -h, --help          show help message and exit
   -t TIMEOUT          Max timeout per search (Default=15)
   -j JITTER           Jitter between requests (Default=1)

Search arguments:
   --search ENGINE     Search Engine (Default='google,bing')

Output arguments:
   -f NFORMAT          Format names, ex: 'domain\{f}{last}', '{first}.{last}@domain.com'
   -o OUTFILE          Change name of output file (omit_extension)

Proxy arguments:
   --proxy PROXY       Proxy requests (IP:Port)
   --proxy-file PROXY  Load proxies from file for rotation

Contribute

Contribute to the project by:

  • Like and share the tool!
  • Create an issue to report any problems or, better yet, initiate a PR.
  • Reach out with any potential features or improvements @m8sec.




> Visit CrossLinked Website <