溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何用SHerlock跨社交網(wǎng)絡(luò)查找你的用戶名

發(fā)布時(shí)間:2021-12-22 16:50:25 來(lái)源:億速云 閱讀:156 作者:柒染 欄目:網(wǎng)絡(luò)安全

如何用SHerlock跨社交網(wǎng)絡(luò)查找你的用戶名,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

今天給大家介紹的就是這個(gè)名叫Sherlock的半社工工具,在它的幫助下,我們可以跨社交網(wǎng)絡(luò)來(lái)查找目標(biāo)用戶的用戶名。話不多說(shuō),我們直奔主題。

如何用SHerlock跨社交網(wǎng)絡(luò)查找你的用戶名

工具安裝

注意:該工具需要Python 3.6或更高版本。

首先,使用git命令將項(xiàng)目代碼克隆到本地:

$ git clone https://github.com/sherlock-project/sherlock.git

切換到Sherlock項(xiàng)目目錄:

$ cd Sherlock

安裝依賴組件:

$ pip3 install -r requirements.txt

工具使用

$ python3 sherlock.py --helpusage:sherlock.py [-h] [--version] [--verbose] [--rank]                   [--folderoutputFOLDEROUTPUT] [--output OUTPUT] [--tor]                   [--unique-tor] [--csv][--site SITE_NAME]                   [--proxy PROXY_URL] [--jsonJSON_FILE]                   [--proxy_list PROXY_LIST][--check_proxies CHECK_PROXY]                   [--print-found]                   USERNAMES [USERNAMES ...] Sherlock:Find Usernames Across Social Networks (Version 0.7.5) positional arguments:  USERNAMES             One or more usernames to checkwith social networks. optionalarguments:  -h, --help            show this help message and exit  --version             Display version information and dependencies.  --verbose, -v, -d, --debug                        Display extra debugginginformation and metrics.  --rank, -r            Present websites ordered by theirAlexa.com global                        rank in popularity.  --folderoutput FOLDEROUTPUT, -fo FOLDEROUTPUT                        If using multipleusernames, the output of the results                        will be saved at thisfolder.  --output OUTPUT, -o OUTPUT                        If using singleusername, the output of the result                        will be saved at thisfile.  --tor, -t             Make requests over Tor; increasesruntime; requires                        Tor to be installed andin system path.  --unique-tor, -u      Make requests over Tor with new Torcircuit after each                        request; increasesruntime; requires Tor to be                        installed and in systempath.  --csv                 Create Comma-Separated Values(CSV) File.  --site SITE_NAME      Limit analysis to just the listed sites.Add multiple                        options to specify morethan one site.  --proxy PROXY_URL, -p PROXY_URL                        Make requests over aproxy. e.g.                        socks5://127.0.0.1:1080  --json JSON_FILE, -j JSON_FILE                        Load data from a JSONfile or an online, valid, JSON                        file.  --proxy_list PROXY_LIST, -pl PROXY_LIST                        Make requests over aproxy randomly chosen from a list                        generated from a .csvfile.  --check_proxies CHECK_PROXY, -cp CHECK_PROXY                        To be used with the'--proxy_list' parameter. The                        script will check ifthe proxies supplied in the .csv                        file are working andanonymous.Put 0 for no limit on                        successfully checkedproxies, or another number to                        institute a limit.  --print-found         Do not output sites where the usernamewas not found.

比如說(shuō),我們可以使用下列命令來(lái)搜索特定用戶名:

python3 sherlock.py user123

同時(shí)搜索多個(gè)目標(biāo)用戶名:

python3 sherlock.py user1 user2 user3

Sherlock搜索到的全部用戶賬號(hào)信息都會(huì)存儲(chǔ)在一個(gè)單獨(dú)的文本文件中,并以用戶名作為文件名,例如user123.txt。

Docker

如果你的設(shè)備已經(jīng)安裝了Docker,你就可以構(gòu)建一個(gè)鏡像,然后以容器的方式運(yùn)行Sherlock了:

docker build -t mysherlock-image .

鏡像構(gòu)建完畢之后,我們就可以利用下列命令調(diào)用Sherlock了:

docker run --rm -t mysherlock-image user123

--rm選項(xiàng)可以可以在完成任務(wù)之后移除容器文件系統(tǒng),以防止冗余數(shù)據(jù)堆積。具體請(qǐng)參考:【清除手冊(cè)】。

-t選項(xiàng)可以分配一個(gè)偽TTY,并允許我們使用顏色方案高亮標(biāo)記輸出數(shù)據(jù)。具體請(qǐng)參考:【前端手冊(cè)】。

當(dāng)然了,我們也可以使用下列命令來(lái)訪問(wèn)存儲(chǔ)的結(jié)果:

docker run --rm -t -v "$PWD/results:/opt/sherlock/results" mysherlock-image-o /opt/sherlock/results/text.txt user123

-v"$PWD/results:/opt/sherlock/results"選項(xiàng)可以讓Docker創(chuàng)建或使用當(dāng)前目錄下的“result”文件夾,然后在Docker容器中加載/opt/sherlock/results?!?o/opt/sherlock/results/text.txt”選項(xiàng)可以讓Sherlock輸出分析結(jié)果。

或者,你也可以直接使用“Docker Hub”來(lái)運(yùn)行Sherlock:

docker run theyahya/sherlock user123

Sherlock覆蓋率測(cè)試

如何用SHerlock跨社交網(wǎng)絡(luò)查找你的用戶名

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI