[thelist] Help with 'secure' site, pls

Carl Meyer cjmeyer at npcc.net
Wed May 12 17:23:30 CDT 2004


hi Walter,

On Wed, 12 May 2004, phpWalter wrote:
>   https://www.homier.com/default.asp?f=1&page=security.asp?a=i
> 
> Can anyone give me hints on how to log into a site like this?

A quick glance at the  source for the frame containing the login form says
that you'll want to POST values for "EMail" and "passwd" to
https://www.homier.com/security.asp?a=v

You can use PHP's cURL library support for this.  The trick is that they
probably use cookies to track logins.  In which case you'll need to grab the
cookie from the response headers and then send it along with your request
for the orders page.  cURL can do all this, too - check out its
documentation at php.net.

Carl



More information about the thelist mailing list