Wget / Curl postar formulário e receber mensagem php

0

Plataforma, cliente e servidor: Ubuntu 14.04 Server

Eu tenho o seguinte formulário html com php (chamado 0.php):

<?php

$message="akjwhdhawjkhdwakjhd";

if(isset($_POST['login']))
{
        if ($_POST['username'] != '' && $_POST['password'] !='') {
                if ($_POST['username'] == 'someuser' && $_POST['password'] == 'thepassword') {
                        echo $message;
                        exit();
                }
                else {
                        $error = 'Login failed !';
                }
        }
        else {
                $error = 'Please user both your username and password to access your account';
        }
}

if (isset($error))
{
        echo $error;
}

?>

<form action="<?=$_SERVER['PHP_SELF']?>" method="post">
        Username: <input type="text" id="username" name="username" size="32" value="" /><br />
        Password: <input type="password" id="password" name="password" size="32" value="" /><br />
        <input type="submit" name="login" value="Login" />
</form>

Estou tentando com curl ou wget obter o conteúdo da variável $ message. O que eu tentei até agora é:

curl -d "username=someuser&password=thepassword&submit=Login" http://host/answers/0.php
wget http://host/answers/0.php --post-data="username=someuser&password=thepassword"

Em ambos os casos, só recebo o formulário HTML.

    
por user1868906 11.01.2015 / 17:25

1 resposta

0

Você não está enviando uma variável "login", então o primeiro if nunca passa.

wget http://host/answers/0.php --post-data="login&username=someuser&password=thepassword"
    
por 11.01.2015 / 17:47

Tags