Perl WWW:机械化表单填充不起作用

时间:2013-04-12 13:24:12

标签: forms perl login fill www-mechanize

使用WWW :: Mechanize填写登录表单时遇到了一些不错的问题。

首先,我将向您展示该网站的一部分,其中有一部分是德语:

<form action="/login.php" method="post" onsubmit="md5pass();">
<p><br/></p>
<table width="350" border="0" cellpadding="5" cellspacing="0" align="center" style="border:dotted 1px black">
    <tr bgcolor="#ffb442" align="center">
        <td colspan="2">
            <p></p><b>Bitte <a href="http://www.xyz.de/startseite.php">Flirtlife</a> Usernamen und Passwort eingeben!</b></p>
        </td>
    </tr>
    <tr bgcolor="#ffae35">
        <td>
            <b>Username: &nbsp;</b></font>
        </td>
        <td>
            <input type="text" name="user" size="25" maxlength="40" value="">
            <input type="hidden" name="relocate" value="/profil.php?user=1180038">          </td>
    </tr>
    <tr bgcolor="#ffae35">
        <td>
            <b>Passwort: </b>
        </td><td>
            <input type="password" id="passwd" name="passwd" size="25" maxlength="32">
        </td>
    </tr>
    <tr bgcolor="#ffae35">
        <td>
            <b>Autologin: </b>
        </td><td>
            <input onclick="toggle('hinweis_setautologin', 'setautologin');" type="checkbox" id="setautologin" name="setautologin" value="true"> automatisch einloggen
        </td>
    </tr>
    <tr>
        <td align="center" colspan="2" id="hinweis_setautologin" style="background:#fff;font-size:9px;display:none;" bgcolor="#ffae35">
             Du wirst solange automatisch eingeloggt bis du auf LOGOUT klickst oder auf einem anderen Rechner das AUTOLOGIN aktivierst.
        </td>
    </tr>
    <tr bgcolor="#ffae35">
        <td>
            <b>Unsichtbar:</b>
        </td><td>
            <input onclick="toggle('hinweis_invisible', 'invisible');" type="checkbox"  id="invisible" name="invisible"> unsichtbar einloggen <img src="images/prem_small.gif" alt="prem_small" height="12"/>
        </td>
    </tr>
    <tr>
        <td align="center" colspan="2" id="hinweis_invisible" style="background:#fff;font-size:9px;display:none;" bgcolor="#ffae35">
             Wenn du Premium-User bist, dann loggst du dich dieses mal unsichtbar ein. Du erscheinst dann als OFFLINE und man sieht dich nicht auf den Profilbesuchern.
        </td>
    </tr>
    <tr bgcolor="#ffb442">
        <td colspan="2" align="center">
            <p></p><a href="sendpassword.php"><strong>Passwort vergessen?</strong></a></p>
            <p></p><input type="hidden" id="hash" name="hash" value=""><input id="loginsubmit" type="submit" value="Absenden"></p>
        </td>
    </tr>
</table>
<p align="center">
    <b>Hinweis:</b> Cookies und Javascript m&uuml;ssen aktiviert sein!<br/> 
    <a href="http://hilfe.xyz.de/faq/doku.php/das_login_funktioniert_nicht"><b>Probleme beim Login?</b></a>
</p>
<p align="center"><a href="/registrieren.php"><img src="/images/teaser.gif"></a></p>
</form>

嗯......正如您所看到的,只有1个表单需要填写,但用户名字段没有“id”。

其次,有一个按钮可以点击确认登录数据。

我试过这个:

my $a = WWW::Mechanize->new( 
     cookie_jar => HTTP::Cookies->new( file => "./cookies.txt" ) 
     );

$a->get("$FLUserProfileLoginURL$FLuserID");
unless($a->success()) {
  print "Problem while loading site...\n\n";
        exit;
    }
$dest = $a->response->content;

@FORMS = $a->forms;

for $entry (@FORMS) {
   print Dumper ($entry);
}

它显示:

$VAR1 = bless( {
             'default_charset' => 'UTF-8',
             'enctype' => 'application/x-www-form-urlencoded',
             'accept_charset' => 'UNKNOWN',
             'action' => bless( do{\(my $o = 'http://www.xyz.de/login.php')}, 'URI::http' ),
             'method' => 'POST',
             'attr' => {
                         'onsubmit' => 'md5pass();',
                         'method' => 'post'
                       },
             'inputs' => [
                           bless( {
                                    'maxlength' => '40',
                                    'value_name' => '',
                                    'value' => '',
                                    'name' => 'user',
                                    'type' => 'text',
                                    'size' => '25'
                                  }, 'HTML::Form::TextInput' ),
                           bless( {
                                    'readonly' => 1,
                                    'value_name' => '',
                                    'value' => '/profil.php?user=1180038',
                                    'name' => 'relocate',
                                    'type' => 'hidden'
                                  }, 'HTML::Form::TextInput' ),
                           bless( {
                                    'maxlength' => '32',
                                    'value_name' => '',
                                    'name' => 'passwd',
                                    'id' => 'passwd',
                                    'type' => 'password',
                                    'size' => '25'
                                  }, 'HTML::Form::TextInput' ),
                           bless( {
                                    'current' => 0,
                                    'menu' => [
                                                {
                                                  'seen' => 1,
                                                  'value' => undef,
                                                  'name' => 'off'
                                                },
                                                {
                                                  'value' => 'true',
                                                  'name' => 'automatisch einloggen'
                                                }
                                              ],
                                    'name' => 'setautologin',
                                    'onclick' => 'toggle(\'hinweis_setautologin\', \'setautologin\');',
                                    'id' => 'setautologin',
                                    'type' => 'checkbox'
                                  }, 'HTML::Form::ListInput' ),
                           bless( {
                                    'current' => 0,
                                    'menu' => [
                                                {
                                                  'seen' => 1,
                                                  'value' => undef,
                                                  'name' => 'off'
                                                },
                                                {
                                                  'value' => 'on',
                                                  'name' => 'unsichtbar einloggen prem_small'
                                                }
                                              ],
                                    'name' => 'invisible',
                                    'onclick' => 'toggle(\'hinweis_invisible\', \'invisible\');',
                                    'id' => 'invisible',
                                    'type' => 'checkbox'
                                  }, 'HTML::Form::ListInput' ),
                           bless( {
                                    'readonly' => 1,
                                    'value_name' => '',
                                    'value' => '',
                                    'name' => 'hash',
                                    'id' => 'hash',
                                    'type' => 'hidden'
                                  }, 'HTML::Form::TextInput' ),
                           bless( {
                                    'value_name' => '',
                                    'value' => 'Absenden',
                                    'id' => 'loginsubmit',
                                    'type' => 'submit'
                                  }, 'HTML::Form::SubmitInput' )
                         ]
           }, 'HTML::Form' );

不幸的是,我无法为此网站发送正确的“提交表单”。 可能问题是,有一个复选框要激活,称为“setautologin”。

任何帮助都会很棒。

更新

我用WWW :: Mechanize :: Shell再次尝试过,毕竟构建了一个perl脚本...... 首先,我使用“get”来获取登录URL,然后使用“fillout”来填充所有数据。

不幸的是,它让我回到login.php。

#!/usr/bin/perl -w
use strict;
use WWW::Mechanize;
use WWW::Mechanize::FormFiller;
use URI::URL;

my $agent = WWW::Mechanize->new( autocheck => 1 );
my $formfiller = WWW::Mechanize::FormFiller->new();
$agent->env_proxy();

  $agent->get('http://www.xyz/login.php');
   $agent->form_number(1) if $agent->forms and scalar @{$agent->forms};
  $formfiller->add_filler( 'user' => Fixed => 'MyUsername' );
  $formfiller->add_filler( 'passwd' => Fixed => 'MyPassword' );
  $formfiller->add_filler( 'setautologin' => Fixed => 'true' );
  $formfiller->add_filler( 'invisible' => Fixed => 'off' );$formfiller->fill_form($agent->current_form);
  $agent->submit();

可能有一种存储cookie的方法???

1 个答案:

答案 0 :(得分:0)

WWW::Mechanize会自动为您处理所有Cookie。因此,没有必要在这样的结构中:

cookie_jar => HTTP::Cookies->new( file => "./cookies.txt" ) 

当然如果你不想稍后将这些cookie加载到另一个脚本(或同一个脚本的另一个版本) ......

我看到的主要内容是Javascript的md5pass()函数(我相信)会在您的表单中设置hash字段。因此,您只需在代码中模拟此函数并提交此值:

$mech->submit_form(
    with_fields => {
        user => $user,
        passwd => $password,
        hash => $hash,
    },
);