使用cURL登录POST表单

时间:2011-07-18 03:22:08

标签: curl login

我正在尝试使用cURL(cURL的首次使用者)登录网站www.centralgreen.com.sg/login.php

我使用了Firefox的Tamper插件,我有4个POST输入:

login=mylogin
password=mypassword
Button_DoLogin.x=33
Button_DoLogin.y=6

我尝试使用

再次使用curl
curl.exe --data 'login=mylogin&password=mypassword&Button_DoLogin.x=33&Button_DoLogin.y=6' www.centralgreen.com.sg/login.php?ccsForm=Login

但登录显然没有通过(此命令的输出是相同的表单,仅填充密码,并显示错误消息字段用户名中的值是必需的。)< / p>

以下是我从Tamper获得的完整信息列表

Host centralgreen.com.sg
User-Agent Mozilla/5.0 (Windows NT 5.1; rv:2.0) Gecko/20100101 Firefox/4.0
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept Language en-us,en;q=0.5
Accept Encoding gzip, deflate
Accept Charset ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep Alive 115
Connection keep-alive
Referer http://centralgreen.com.sg/login.php
Cookie PHPSESSID=65fbxxxxxxx02694e3a72xxxxxxxx; Valley_ParkLogin=04E203A459FCxxxxxxxA2DCD9AAE5B9678G08C04F1952155E2482xxxxxxxxxxxxx

我有什么问题吗?如何通过POST表单传递登录信息?

1 个答案:

答案 0 :(得分:8)

尝试使用-F选项而不是--data

http://curl.haxx.se/docs/manpage.html#-F

基本上,这会将内容类型标题更改为:

Content-Type: multipart/form-data

这可能会给你带来更好的结果。