wget信息收集

1. 生成密码列表
1. wget –r –l 2 targetwebsite
2. grep –h –r “” source | tr ‘[:space:]’ ‘\n’ | sort | uniq > wordlist.txt
3. grep –v ‘<‘ wordlist.txt > newlist.txt


2. 下载文档
wget –nd –r –A pdf,doc,docx,xls,xlsx –P /tmp targetdomain

你可能感兴趣的:(wget)