1

cURL (bash スクリプト) を使用して、毎月のデータ使用量を含む ISP サイトのページを読み込もうとしています。

ページの関連フォームは次のとおりです。

<form method="post" id="Login" name="Login" action="https://signon.bigpond.com/login" class="form">
    <input type="hidden" name="goto" value="https://my.bigpond.com/mybigpond/default.do?ref=Net-Header-MyBigPond1"/>

    <div class="loginModule roundify">
        <div class="loginForm">

            <div class="formRow error">
                <label for="userName">
                    Username<span class="reqField">*</span>
                </label>
                <input type="text" tabindex="1" id="username" name="username" size="30" maxlength="200" onkeypress="EnterKeyPress(event)" value=""/>
            </div>

            <div class="formRow error">
                <label for="password">
                    Password<span class="reqField">*</span>
                </label>
                <input type="password" tabindex="2" id="password" name="password" size="30" maxlength="50" onkeypress="EnterKeyPress(event)"/>                                     
            </div>

           <div class="buttons">
                <input class="submit roundify" type="submit" value="Log in" onclick="setCookieForUser();this.disabled=true;document.forms['Login'].submit();" />
            </div>
        </div>
    </div>
</form>

送信ボタンには名前がないことに注意してください。

テキストがフォームに入力されたときに呼び出される関数:

function EnterKeyPress(e) {
    if (!e) var e = window.event;

                if (e.keyCode) code = e.keyCode;
                else if (e.which) code = e.which;

                if ( code == 13 && document.getElementById("username").value.length > 0 && document.getElementById("password").value.length > 0 ) {
                    document.forms['Login'].submit();
                    e.returnValue = false;
                }
}

cURL コマンドライン:

 $ curl --user-agent "Mozilla/5.0" --verbose --location --cookie-jar "/tmp/bigpond.cookies" --cookie "/tmp/bigpond.cookies" -o "/tmp/bigpond.html" --data-urlencode "username=MY_USERNAME&password=MY_PASSWORD" https://signon.bigpond.com/login?goto=https://my.bigpond.com/mybigpond/default.do?ref=Net-Header-MyBigPond1

ただし、保存された html ファイル (/tmp/bigpond.html) はログオン ページのままで、ユーザー名とパスワードを入力するのを忘れたというテキストが追加されています。cURL が POST データを送信しないのはなぜですか、または何が間違っていますか?

更新:自分の質問に答えました。解決策については、以下を参照してください。

4

2 に答える 2

1

問題は、1つの引数でPOSTデータをcURLに渡すことで、cURLがURLエンコードを行ったときにデータがマングルされていました。正しい使用法は、次のように各フィールドを個別の引数として渡すことです。

curl --data-urlencode "username=XXXXXX" --data-urlencode "password=XXXXXX" ...
于 2012-10-17T22:45:05.870 に答える
1

それを試してください:

curl -A "Mozilla/5.0" -b /tmp/c -c /tmp/c -L -s -d "username=<USER NAME>&password=<PASSWORD>" https://signon.bigpond.com/login

そして、のヘッダーを比較cURLしますLiveHttpHeaders firefox module

于 2012-10-15T02:59:12.613 に答える