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"
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.
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"
Tags post