sh 关于使用curl的一些快速攻击

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 关于使用curl的一些快速攻击相关的知识,希望对你有一定的参考价值。

#http://curl.haxx.se/docs/httpscripting.html#GET Use this link for further reference 

curl --referer http://www.example.come http://www.example.com
# To fake the referrer header 


curl --location http://www.example.com
# To make curl follow the redirects as well 

curl --upload-file uploadfile http://www.example.com/receive.cgi
# to upload a file 

curl --data-urlencode "name=I am Daniel" http://www.example.com
# to do a simple post request 

curl --user-agent "Mozilla/4.73 [en] (X11; U; Linux 2.2.15 i686)" [URL]
#Changing the user agent 

curl --cookie "name=Daniel" http://www.example.com
#Custom cookie 

curl --cookie cookies.txt --cookie-jar newcookies.txt  http://www.example.com
#use a cookie file 

curl --header "Host:" http://www.example.com
#modify headers 

以上是关于sh 关于使用curl的一些快速攻击的主要内容,如果未能解决你的问题,请参考以下文章

sh 关于使用curl的一些快速攻击

使用curl快速重启impala

zsh

transfer.sh 一个简单快速的web传输分享文件工具

有没有办法使用 curl 或 wget 从命令行下载彩信?

向数百个站点发出 curl 请求是不是会被某些主机视为攻击?