mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-15 16:47:57 +00:00
Merge branch 'cclauss_patch-3'
This commit is contained in:
commit
f7daae14e3
1 changed files with 10 additions and 6 deletions
16
sherlock.py
16
sherlock.py
|
@ -1,3 +1,5 @@
|
|||
#! /usr/bin/env python3
|
||||
|
||||
"""
|
||||
Sherlock: Find Usernames Across Social Networks Module
|
||||
|
||||
|
@ -5,15 +7,17 @@ This module contains the main logic to search for usernames at social
|
|||
networks.
|
||||
"""
|
||||
|
||||
import requests
|
||||
from concurrent.futures import ThreadPoolExecutor
|
||||
from requests_futures.sessions import FuturesSession
|
||||
import csv
|
||||
import json
|
||||
import os
|
||||
import re
|
||||
import csv
|
||||
from argparse import ArgumentParser, RawDescriptionHelpFormatter
|
||||
import platform
|
||||
import re
|
||||
from argparse import ArgumentParser, RawDescriptionHelpFormatter
|
||||
from concurrent.futures import ThreadPoolExecutor
|
||||
|
||||
import requests
|
||||
|
||||
from requests_futures.sessions import FuturesSession
|
||||
from torrequest import TorRequest
|
||||
|
||||
module_name = "Sherlock: Find Usernames Across Social Networks"
|
||||
|
|
Loading…
Reference in a new issue