curl是利用URL语法在命令行方式下工作的开源文件传输工具。其功能以及参数非常多,然而,我们在渗透测试中可以用curl做什么呢?下面就举例说一下,欢迎大家拍砖!工具下载地址如下:
https://curl.haxx.se/download.html
curl http://www.myh0st.cn
curl ftp://ftp.myh0st.cn/file[1-100].txt
curl ftp://ftp.myh0st.cn/file[1-100:10].txt
curl ftp://ftp.myh0st.cn/file[001-100].txt
curl ftp://ftp.myh0st.cn/file[a-z].txt
curl ftp://ftp.myh0st.cn/file[a-z:2].txt
curl http://site.{one,two,three}.com
curl http://www.myh0st.cn/archive[1996-1999]/vol[1-4]/part{a,b,c}.html
curl -o index.html http://www.myh0st.cn/
curl http://www.myh0st.cn/ > index.html
curl -# http://www.myh0st.cn/ > index.html
curl -0 http://www.myh0st.cn
curl --http1.1 http://www.myh0st.cn
curl --http2 http://www.myh0st.cn
curl -1 http://www.myh0st.cn
curl --tlsv1 http://www.myh0st.cn
curl -2 http://www.myh0st.cn
curl --sslv2 http://www.myh0st.cn
curl -3 http://www.myh0st.cn
curl --sslv3 http://www.myh0st.cn
curl -4 http://www.myh0st.cn
curl --ipv4 http://www.myh0st.cn
curl -6 http://www.myh0st.cn
curl --ipv6 http://www.myh0st.cn
curl -A "wget/1.0" http://www.myh0st.cn
curl --user-agent "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)" http://www.myh0st.cn
curl --user-agent "Mozilla/4.73 [en] (X11; U; Linux 2.2.15 i686)" http://www.myh0st.cn
curl -b "phpsession=Testtest" http://www.myh0st.cn
curl --cookie "name=Daniel" http://www.myh0st.cn
curl -c cookies.txt http://www.myh0st.cn
curl --cookie-jar cookies.txt http://www.myh0st.cn
curl -d "username=admin&password=pass" http://www.myh0st.cn
curl --data "birthyear=1905&press=%20OK%20" http://www.myh0st.cn/when.cgi
curl --data-urlencode "name=I am Daniel" http://curl.haxx.se
curl --data "
" --header "Content-Type: text/xml" --request PROPFIND url.com
curl -e "http://www.myh0st.cn/referer" http://www.myh0st.cn
curl --referer http://www.myh0st.cn/referer http://www.myh0st.cn
curl --header "Host:www.myh0st.cn" http://www.myh0st.cn
curl -D - http://www.myh0st.cn
curl --dump-header headers_and_cookies http://www.myh0st.cn
curl -L http://www.myh0st.cn
curl --location http://www.myh0st.cn
curl --dns-servers 8.8.8.8 http://www.myh0st.cn
curl --cert mycert.pem https://www.myh0st.cn
大家可以下载这个软件自己把玩一下,可能整理的不全,作为一款优秀的命令行版网页浏览工具,在实际的渗透中可以帮我们很多,有没有用全看自己如何去玩。有什么建议或者意见请下方留言。