- 目录
- 1. 序章
- 2. 计算机网络与协议
- 3. 信息收集
- 4. 常见漏洞攻防
- 5. 语言与框架
- 6. 内网渗透
- 7. 云安全
- 8. 防御技术
- 9. 认证机制
- 10. 工具与资源
- 11. 手册速查
- 12. 其他
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
11.2. 下载工具
11.2. 下载工具
11.2.1. wget
11.2.1.1. 常用
- 普通下载
wget http://example.com/file.iso
- 指定保存文件名
wget ‐‐output-document=myname.iso http://example.com/file.iso
- 保存到指定目录
wget ‐‐directory-prefix=folder/subfolder http://example.com/file.iso
- 大文件断点续传
wget ‐‐continue http://example.com/big.file.iso
- 下载指定文件中的url列表
wget ‐‐input list-of-file-urls.txt
- 下载指定数字列表的多个文件
wget http://example.com/images/{1..20}.jpg
- 下载web页面的所有资源
wget ‐‐page-requisites ‐‐span-hosts ‐‐convert-links ‐‐adjust-extension http://example.com/dir/file
11.2.1.2. 整站下载
- 下载所有链接的页面和文件
wget ‐‐execute robots=off ‐‐recursive ‐‐no-parent ‐‐continue ‐‐no-clobber http://example.com/
- 下载指定后缀的文件
wget ‐‐level=1 ‐‐recursive ‐‐no-parent ‐‐accept mp3,MP3 http://example.com/mp3/
- 排除指定目录下载
wget ‐‐recursive ‐‐no-clobber ‐‐no-parent ‐‐exclude-directories /forums,/support http://example.com
11.2.1.3. 指定参数
- user agent
‐‐user-agent="Mozilla/5.0 Firefox/4.0.1"
- basic auth
‐‐http-user=user ‐‐http-password=pwd
- 保存cookie
‐‐cookies=on ‐‐save-cookies cookies.txt ‐‐keep-session-cookies
- 使用cookie
‐‐cookies=on ‐‐load-cookies cookies.txt ‐‐keep-session-cookies
11.2.2. curl
11.2.2.1. 常用
- 直接显示
curl www.example.com
- 保存指定的名字
-o newname
- 不指定名字
-O
11.2.2.2. 正则
- 文件名
curl ftp://example.com/file[1-100].txt
- 域名
curl http://site.{one,two,three}.com
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论