curl
简介
在Linux中curl是一个利用URL规则在命令行下工作的文件传输工具,可以说是一款很强大的http命令行工具。它支持文件的上传和下载,是综合传输工具,但按传统,习惯称url为下载工具。
1 | 语法:# curl [option] [url] |
常见参数
1 | -A/--user-agent <string> 设置UA发送给服务器 |
2 | -b/--cookie <name=string/file> cookie字符串或文件读取位置 |
3 | -c/--cookie-jar <file> 操作结束后把cookie写入到这个文件中 |
4 | -C/--continue-at <offset> 断点续转 |
5 | -D/--dump-header <file> 把header信息写入到该文件中 |
6 | -e/--referer 来源网址 |
7 | -f/--fail 连接失败时不显示http错误 |
8 | -o/--output 把输出写到该文件中 |
9 | -O/--remote-name 把输出写到该文件中,保留远程文件的文件名 |
10 | -r/--range <range> 检索来自HTTP/1.1或FTP服务器字节范围 |
11 | -s/--silent 静音模式。不输出任何东西 |
12 | -T/--upload-file <file> 上传文件 |
13 | -u/--user <user[:password]> 设置服务器的用户和密码 |
14 | -w/--write-out [format] 什么输出完成后 |
15 | -x/--proxy <host[:port]> 在给定的端口上使用HTTP代理 |
16 | -#/--progress-bar 进度条显示当前的传送状态 |
基本用法
curl http://www.befallhell.cn
将结果输出到标准输出
curl http://www.befallhell.com >> file
curl http://www.befallhell.com -o file
curl -O http://www.befallhell.cn/test.html
结果输出到文件或服务端同名文件
curl -o /dev/null -s -w %{http_code} http://www.befallhell.cn
测试网页返回值
curl -x 192.168.100.100:1080 http://www.befallhell.cn
指定proxy服务器以及其端口
curl -c cookies.txt http://www.befallhell.cn
curl -D header.txt http://www.befallhell.cn
保存cookie与header
curl -b cookies.txt http://www.befallhell.cn
使用cookies文件
curl -A "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.0)" http://www.befallhell.cn
更改
curl -e "127.0.0.1" http://www.befallhell.cn
伪造referer
curl -O -# ftp://用户名:密码@http://www.befallhell.cn/1.jpg
ftp下载并显示下载进度条
curl -T dodo1.JPG -u 用户名:密码 ftp://http://www.befallhell.cn/public/
上传文件
curl -I http://www.befallhell.cn
显示头信息
get方法
curl "http://ip?id=1"
-H –header 使用时要多次使用
curl -H "Host:127.0.0.1" -H "Referer: 127.0.0.1"
-A
,-b
,-e
分别是user-agent,cookie,referer,
其他参数
1 | -a/--append 上传文件时,附加到目标文件 |
2 | --anyauth 可以使用“任何”身份验证方法 |
3 | --basic 使用HTTP基本验证 |
4 | -B/--use-ascii 使用ASCII文本传输 |
5 | *-d/--data <data> HTTP POST方式传送数据 |
6 | --data-ascii <data> 以ascii的方式post数据 |
7 | --data-binary <data> 以二进制的方式post数据 |
8 | --negotiate 使用HTTP身份验证 |
9 | --digest 使用数字身份验证 |
10 | --disable-eprt 禁止使用EPRT或LPRT |
11 | --disable-epsv 禁止使用EPSV |
12 | --egd-file <file> 为随机数据(SSL)设置EGD socket路径 |
13 | --tcp-nodelay 使用TCP_NODELAY选项 |
14 | -E/--cert <cert[:passwd]> 客户端证书文件和密码 (SSL) |
15 | --cert-type <type> 证书文件类型 (DER/PEM/ENG) (SSL) |
16 | --key <key> 私钥文件名 (SSL) |
17 | --key-type <type> 私钥文件类型 (DER/PEM/ENG) (SSL) |
18 | --pass <pass> 私钥密码 (SSL) |
19 | --engine <eng> 加密引擎使用 (SSL). "--engine list" for list |
20 | --cacert <file> CA证书 (SSL) |
21 | --capath <directory> CA目 (made using c_rehash) to verify peer against (SSL) |
22 | --ciphers <list> SSL密码 |
23 | --compressed 要求返回是压缩的形势 (using deflate or gzip) |
24 | --connect-timeout <seconds> 设置最大请求时间 |
25 | --create-dirs 建立本地目录的目录层次结构 |
26 | --crlf 上传是把LF转变成CRLF |
27 | --ftp-create-dirs 如果远程目录不存在,创建远程目录 |
28 | --ftp-method [multicwd/nocwd/singlecwd] 控制CWD的使用 |
29 | --ftp-pasv 使用 PASV/EPSV 代替端口 |
30 | --ftp-skip-pasv-ip 使用PASV的时候,忽略该IP地址 |
31 | --ftp-ssl 尝试用 SSL/TLS 来进行ftp数据传输 |
32 | --ftp-ssl-reqd 要求用 SSL/TLS 来进行ftp数据传输 |
33 | *-F/--form <name=content> 模拟http表单提交数据 |
34 | -form-string <name=string> 模拟http表单提交数据 |
35 | -g/--globoff 禁用网址序列和范围使用{}和[] |
36 | * -G/--get 以get的方式来发送数据 |
37 | -h/--help 帮助 |
38 | *-H/--header <line> 自定义头信息传递给服务器 |
39 | --ignore-content-length 忽略的HTTP头信息的长度 |
40 | -i/--include 输出时包括protocol头信息 |
41 | *-I/--head 只显示文档信息 |
42 | -j/--junk-session-cookies 读取文件时忽略session cookie |
43 | --interface <interface> 使用指定网络接口/地址 |
44 | --krb4 <level> 使用指定安全级别的krb4 |
45 | -k/--insecure 允许不使用证书到SSL站点 |
46 | -K/--config 指定的配置文件读取 |
47 | -l/--list-only 列出ftp目录下的文件名称 |
48 | --limit-rate <rate> 设置传输速度 |
49 | --local-port<NUM> 强制使用本地端口号 |
50 | -m/--max-time <seconds> 设置最大传输时间 |
51 | --max-redirs <num> 设置最大读取的目录数 |
52 | --max-filesize <bytes> 设置最大下载的文件总量 |
53 | -M/--manual 显示全手动 |
54 | -n/--netrc 从netrc文件中读取用户名和密码 |
55 | --netrc-optional 使用 .netrc 或者 URL来覆盖-n |
56 | --ntlm 使用 HTTP NTLM 身份验证 |
57 | -N/--no-buffer 禁用缓冲输出 |
58 | -p/--proxytunnel 使用HTTP代理 |
59 | --proxy-anyauth 选择任一代理身份验证方法 |
60 | --proxy-basic 在代理上使用基本身份验证 |
61 | --proxy-digest 在代理上使用数字身份验证 |
62 | --proxy-ntlm 在代理上使用ntlm身份验证 |
63 | -P/--ftp-port <address> 使用端口地址,而不是使用PASV |
64 | -Q/--quote <cmd> 文件传输前,发送命令到服务器 |
65 | --range-file 读取(SSL)的随机文件 |
66 | -R/--remote-time 在本地生成文件时,保留远程文件时间 |
67 | --retry <num> 传输出现问题时,重试的次数 |
68 | --retry-delay <seconds> 传输出现问题时,设置重试间隔时间 |
69 | --retry-max-time <seconds> 传输出现问题时,设置最大重试时间 |
70 | -S/--show-error 显示错误 |
71 | --socks4 <host[:port]> 用socks4代理给定主机和端口 |
72 | --socks5 <host[:port]> 用socks5代理给定主机和端口 |
73 | -t/--telnet-option <OPT=val> Telnet选项设置 |
74 | --trace <file> 对指定文件进行debug |
75 | --trace-ascii <file> Like --跟踪但没有hex输出 |
76 | --trace-time 跟踪/详细输出时,添加时间戳 |
77 | --url <URL> Spet URL to work with |
78 | -U/--proxy-user <user[:password]> 设置代理用户名和密码 |
79 | -V/--version 显示版本信息 |
80 | -X/--request <command> 指定什么命令 |
81 | -y/--speed-time 放弃限速所要的时间。默认为30 |
82 | -Y/--speed-limit 停止传输速度的限制,速度时间'秒 |
83 | -z/--time-cond 传送时间设置 |
84 | -0/--http1.0 使用HTTP 1.0 |
85 | -1/--tlsv1 使用TLSv1(SSL) |
86 | -2/--sslv2 使用SSLv2的(SSL) |
87 | -3/--sslv3 使用的SSLv3(SSL) |
88 | --3p-quote like -Q for the source URL for 3rd party transfer |
89 | --3p-url 使用url,进行第三方传送 |
90 | --3p-user 使用用户名和密码,进行第三方传送 |
91 | -4/--ipv4 使用IP4 |
92 | -6/--ipv6 使用IP6 |