Jump to content

Need some help trying to use curl


Rifts

Recommended Posts

Hey guys I'm trying to log into this website using curl. I did some reading and think I'm pretty close but I cant get the login working It just returns nothing. there is a commented out part which is the page i'm trying to load after I successfully login. 

<?

$username = 'xxxxxxx';
$password = 'xxxxxxx';
$postinfo = "username=".$username."&password=".$password;

$cookie="cookie.txt"; 

$ch = curl_init();

// extra headers
$headers[] = "Accept: */*";
$headers[] = "Connection: Keep-Alive";

curl_setopt($ch, CURLOPT_HTTPHEADER,  $headers);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_URL, 'https://weblogin.asu.edu/cas/login');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postinfo);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_COOKIESESSION, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie); 


$data = curl_exec($ch);

if (curl_error($ch)) {
    echo curl_error($ch);
}


echo $data;

curl_close($ch);

// //page with the content I want to grab after logging in  (test after login works)
// curl_setopt($ch, CURLOPT_URL, "https://webapp4.asu.edu/myasu/");
// curl_setopt($ch, CURLOPT_POST, false);
// $data = curl_exec($ch);
// if (curl_error($ch)) {
//     echo curl_error($ch);
// }



?>

I'm not sure but I think im maybe missing some other parts the form needs? How do I see exactly what I need to send?

Link to comment
Share on other sites

I do see some hidden values their form as well

<input type="hidden" name="lt" value="LT-124551-2fwqfTISmFTdVpZurniEq1EZD5bVqO" />
<input type="hidden" name="execution" value="e1s1" />

Try this.

<?php
$username = 'xxxxxxx';
$password = 'xxxxxxx';
$postinfo = array(
    "username" => $username,
    "password" => $password
); //now an array
$fields = http_build_query($postinfo); //builds the query
$cookie = "cookie.txt";
$ch = curl_init();

// extra headers
$headers[] = "Accept: */*";
$headers[] = "Connection: Keep-Alive";
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_URL, 'https://weblogin.asu.edu/cas/login');
curl_setopt($ch, CURLOPT_POST, count($postinfo)); //counts the array values
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields); //fields added
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_COOKIESESSION, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
$data = curl_exec($ch);

if (curl_error($ch)) {
    echo curl_error($ch);
}

echo $data;
curl_close($ch);

//page with the content I want to grab after logging in  (test after login works)
/*
curl_setopt($ch, CURLOPT_URL, "https://webapp4.asu.edu/myasu/");
curl_setopt($ch, CURLOPT_POST, false);
$data = curl_exec($ch);
 if (curl_error($ch)) {
    echo curl_error($ch);
}
*/
?>
Edited by QuickOldCar
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.