wget:在发送后数据之前获取字段信息

时间:2014-02-05 11:52:53

标签: bash wget postdata

我设法通过网站的登录表单,使用wget和--post-data和--save-cookies选项。

现在我尝试填写网页的某些字段,然后进行提交。 问题是,网页上有一个“turing”隐藏字段,每次都有不同的值。

我尝试的是打开网页,加载我的cookies,并获得图灵价值。 然后使用--post-data做另一个wget并将所有字段放在那里,包括图灵字段。但它不起作用。

此外,网页上有几个表单,所以我想我必须添加表单名称。正确的吗?

有什么想法吗?

<form action="article.php" method="post" name="postmessage">
 <table width="100%" class="table_lines" border="0" cellspacing="0" cellpadding="6">
  <tr>
   <td>subject</td>
   <td><input type="text" name="messageinput[0]" value=""></td>
  </tr>
  <tr>
   <td>tags</td>
   <td><input type="text" name="messageinput[1]" value=""></td>
  </tr>
  <tr>
   <td>Message</td>
   <td><input type="text" name="messageinput[2]" value=""></td>
  </tr>
  <td colspan="2" align="center"><input name="mesbut" type="submit" value="Post Message" onclick="document.postmessage.mesbut.value='Posting..'; document.postmessage.mesbut.disabled=true;document.postmessage.submit();"></td>
 </table>
 <input type="hidden" name="turing" value="wgbyp">
</form>

所以我尝试的是(登录后):

/usr/bin/wget -q --load-cookies cookie.txt http://www.myurl.com/article.php -O output.html
TURING=$(sed -n -e 's/.*name="turing" value="\(.*\)">.*/\1/p' output.html)

/usr/bin/wget -q --load-cookies cookie.txt --post-data "messageinput[0]=mysubject&messageinput[1]=&messageinput[2]=mymessage&turing=${TURING}&postmessage=1&mesbut=1"  http://www.myurl.com/article.php -O output2.html

但它没有用。

2 个答案:

答案 0 :(得分:1)

第一个wget需要使用--save-cookies。

您在示例中的cookie.txt中是否收到任何内容?

答案 1 :(得分:0)

似乎我的信息确实有效。 我只是没有为网页提供足够的字段。