我正在尝试找到一种方法来做到这一点。到目前为止,由于 cookie 参数,我已经能够访问页面:
curl -v --cookie cookies.txt --cookie-jar cookies.txt --user-agent Mozilla/4.0 --data "u=login&p=passwd" http://wiki/doku.php?id=start&do=login
接着
curl --cookie cookies.txt http://wiki/doku.php?id=info
要上传文件,我应该在 php 页面上获取表单参数。我不完全知道我在寻找什么:
curl --form "file=@z.xml" --cookie cookies.txt "http://wiki/doku.php?id=start&tab_files=upload&do=media"