5344
5432
1万
管理员
本站资源如失效,请点击反馈!
$ curl https://www.example.com
$ curl -A 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36' https://google.com
$ curl -A '' https://google.com
$ curl -H 'User-Agent: php/1.0' https://google.com
$ curl -b 'foo=bar' https://google.com
$ curl -b 'foo1=bar;foo2=bar2' https://google.com
$ curl -b cookies.txt https://www.google.com
$ curl -c cookies.txt https://www.google.com
$ curl -d'login=emma&password=123'-X POST https://google.com/login# 或者$ curl -d 'login=emma' -d 'password=123' -X POST https://google.com/login
$ curl -d '@data.txt' https://google.com/login
$ curl --data-urlencode 'comment=hello world' https://google.com/login
curl -e 'https://google.com?q=example' https://www.example.com
curl -H 'Referer: https://google.com?q=example' https://www.example.com
$ curl -F '[email protected]' https://google.com/profile
$ curl -F '[email protected];type=image/png' https://google.com/profile
$ curl -F '[email protected];filename=me.png' https://google.com/profile
$ curl -G -d 'q=kitties' -d 'count=20' https://google.com/search
$ curl -G --data-urlencode 'comment=hello world' https://www.example.com
$ curl -H 'Accept-Language: en-US' https://google.com
$ curl -H 'Accept-Language: en-US' -H 'Secret-Message: xyzzy' https://google.com
$ curl -d '{"login": "emma", "pass": "123"}' -H 'Content-Type: application/json' https://google.com/login
$ curl -i https://www.example.com
$ curl -I https://www.example.com
$ curl --head https://www.example.com
$ curl -k https://www.example.com
$ curl -L -d 'tweet=hi' https://api.twitter.com/tweet
$ curl --limit-rate 200k https://google.com
$ curl -o example.html https://www.example.com
$ curl -O https://www.example.com/foo/bar.html
$ curl -s https://www.example.com
$ curl -s -o /dev/null https://google.com
$ curl -u 'bob:12345' https://google.com/login
$ curl https://bob:[email protected]/login
$ curl -u 'bob' https://google.com/login
$ curl -v https://www.example.com
$ curl --trace - https://www.example.com
$ curl -x socks5://james:[email protected]:8080 https://www.example.com
$ curl -x james:[email protected]:8080 https://www.example.com
$ curl -X POST https://www.example.com
使用道具 举报
本版积分规则 发表回复 回帖后跳转到最后一页
手机版|飞雪团队
GMT+8, 2024-11-24 03:06 , Processed in 0.135806 second(s), 21 queries , Gzip On.
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.