Jump to content

jjt327

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Everything posted by jjt327

  1. Javascript huh? Is it a problem that the password has to be decrypted into plain text before submission in the form? Obviously this is insecure being javascript and all?
  2. Fair enough thanks for that. Anyone know how websites like www.clipperz.com achieve their automatic logins?
  3. I'm guessing this can't be done then?
  4. Hey guys, I've been googling for hours and there are millions of threads similar, but none of which i can make sense of! I am trying to automatically log into my 99designs.com account using curl in php. The problem is that I redirect to 99designs.com after logging in. I can log in, and display the code within my php page, but i can't actually get to 99designs.com My code looks a little like this: $params = "email=<myEmail>&password=<myPassword>&from=/login?from=%2F"; $ch = curl_init(); curl_setopt($ch,CURLOPT_POST,true); curl_setopt($ch,CURLOPT_COOKIESESSION,true); curl_setopt($ch, CURLOPT_POSTFIELDS, $params); curl_setopt($ch, CURLOPT_RETURNTRANSFER,0); curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt'); curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt'); curl_setopt($ch, CURLOPT_URL,'https://99designs.com/login'); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_exec ($ch); curl_close ($ch); Any ideas what I'm missing? Thanks.
×
×
  • 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.