[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] URLplus
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] URLplus
- From: "Ralph Mitchell" <ralphmitchell (at) gmail.com>
- Date: Wed, 30 Apr 2008 12:28:46 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; bh=6JQfN0LAMSPencmjBu/rttJUIJEiOvupDiwhE722wgM=; b=MswtwJldxsYHflJ5jwVde+rkn6L7Wrd+04go6LOFzTSZj8hmNC+Ul6e6eBymFykOJDQ8Qpg7pFTaIZEMARsJGSjLlbNHPX3/At1lnnu3ZUrI9xaUe5TJJryITUKSxrUyHI5oqAfmItFB6HONLATXxzv83DmwHwLKsZG3OXW/i6E=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=ZqlZ7co3dZnnm5k50oIrqD8If4JPiT2PbYgWx2Ili0dd7u+QvcrtBp8FPiOa1k4FtYWE5qHusDi5gXgjJcyI03IEWJfRdbGMDrU5jixajBvijV2NMEWkVKAyyaKc4QLBd0TKGuxUcMAN8D/j4hMurHbw7SgAPL2i6WKV6gnKyV4=
- References: <997a524e0804291304h4b80f284jecda136de2840b9d (at) mail.gmail.com> <OF7E493A4A.5553E7AB-ONC125743B.002D6F02-C125743B.002D8038 (at) machcorp.lan>
Unfortunately it's not just one script. I've found many variations in login
pages, so I've had to customize the scripts for each different target. Some
logins require a form to be posted back, others are handled via
WWW-Authenticate pop-up boxes and sometimes redirects have to be followed.
That's not hard if the site uses Location headers, because curl can handle
those, but I've also found meta-refresh tags and several types of javascript
"go-elsewhere" redirects that have to be individually scripted.
I posted something a year or so ago that might get you started. If I can
find it, I'll post it again.
Ralph Mitchell
On Wed, Apr 30, 2008 at 3:16 AM, Thomas Laurids Pedersen <tlp (at) mach.com>
wrote:
> Would you share the bourne script. I need something quickly for only 1
> site at the moment, so anything will do.
>
> Regards, Thomas
>
> [image: Inactive hide details for "Ralph Mitchell"
> <ralphmitchell (at) gmail.com>]"Ralph Mitchell" <ralphmitchell (at) gmail.com>
>
>
>
> *"Ralph Mitchell" <ralphmitchell (at) gmail.com>*
>
> 29-04-2008 22:04
> Please respond to
> hobbit (at) hswn.dk
>
>
> To
>
> hobbit (at) hswn.dk
> cc
>
>
> Subject
>
> Re: [hobbit] URLplus
>
> On Tue, Apr 29, 2008 at 2:28 PM, Thomas Laurids Pedersen <*tlp (at) mach.com*<tlp (at) mach.com>>
> wrote:
>
> Can this new extension do the post like the builtin http test can do
> ?
>
> Regards, Thomas
>
>
> I don't think so, as it currently stands. This line:
>
> $ret=qx(curl -m $tout -s -k -S $pstr "$url" 2>&1);
>
> in showUrl is the bit that actually fetches the web page. To do a POST
> using curl, you would need to change that to:
>
> $ret=qx(curl -m $tout -s -k -S -d $postArgs $pstr "$url" 2>&1);
>
> with matching additions elsewhere to fill the $postArgs variable with
> whatever you want to post. If you're wanting to implement something that
> performs a login, you'd probably want to track cookies as well.
>
> I'm not much of a perl programmer, so I'm not confident about making such
> changes. On the other hand, I've done quite a lot of this in Bourne shell...
>
> Ralph Mitchell
>