Sigurlfind3r:一款功能強大的被動網絡偵察工具
關于sigurlfind3r
sigurlfind3r是一款功能強大的被動網絡偵察工具,該工具主要針對的是已知的URL搜索,并且可以使用各種在線源并以被動方式收集URL列表。
功能介紹
- 收集已知URL:可從、Common Crawl、URLScan、Github和Wayback Machine獲取數據,可以從txt獲取禁用路徑;
- 降低噪聲:通過正則表達式過濾URL,移除URL中的重復頁面;
- 輸出至stdout或存儲至文件;
工具安裝
預構建源碼下載
我們可以直接訪問該項目的【Releases頁面】下載針對自己平臺的預構建源碼。下載完成之后,提取源碼文件,并將其移動指$PATH路徑下即可直接使用。
源碼獲取:
sigurlfind3r要求本地主機安裝并配置好Go v1.14+環境,配置好后就可以直接使用下列命令下載并安裝sigurlfind3r了:
- GO111MODULE=on go get -u -v github.com/signedsecurity/sigurlfind3r/cmd/sigurlfind3r
從GitHub安裝:
- git clone https://github.com/signedsecurity/sigurlfind3r.git && \
- cd sigurlfind3r/cmd/sigurlfind3r/ && \
- go build; mv sigurlfind3r /usr/local/bin/ && \
- sigurlfind3r -h
工具配置
sigurlfind3r在安裝完成之后,還需要進行適當的配置。這里你將需要獲取API密鑰,這個API密鑰存儲在$HOME/.config/sigurlfind3r/conf.yaml之中。參考樣例如下:
- version: 1.5.0
- sources:
- - commoncrawl
- - github
- - otx
- - urlscan
- - wayback
- - waybackrobots
- keys:
- github:
- - d23a554bbc1aabb208c9acfbd2dd41ce7fc9db39
- - asdsd54bbc1aabb208c9acfbd2dd41ce7fc9db39
工具使用
提示:從GitHub爬取URL的話可能速度會比較慢。
- sigurlfind3r -h
上述命令將會顯示如下信息:
- _ _ __ _ _ _____
- ___(_) __ _ _ _ _ __| |/ _(_)_ __ __| |___ / _ __
- / __| |/ _` | | | | '__| | |_| | '_ \ / _` | |_ \| '__|
- \__ \ | (_| | |_| | | | | _| | | | | (_| |___) | |
- |___/_|\__, |\__,_|_| |_|_| |_|_| |_|\__,_|____/|_| 1.5.0
- |___/
- USAGE:
- sigurlfind3r [OPTIONS]
- OPTIONS:
- -d, --domain domain to fetch urls for
- -eS, --exclude-sources comma(,) separated list of sources to exclude
- -f, --filter URL filtering regex
- -iS, --include-subs include subdomains' urls
- -lS, --list-sources list all the available sources
- -nC, --no-color no color mode
- -s --silent silent mode: output urls only
- -uS, --use-sources comma(,) separated list of sources to use
- -o, --output output file
使用樣例
基礎使用:
- sigurlfind3r -d tesla.com
正則表達式過濾URL:
- sigurlfind3r -d tesla.com -f ".(jpg|jpeg|gif|png|ico|css|eot|tif|tiff|ttf|woff|woff2)"
包含子域名URL:
- sigurlfind3r -d tesla.com -iS
項目地址
sigurlfind3r:【GitHub傳送門】