Referer site is https or not
Referer site is https or not
am 19.11.2005 20:36:22 von Neeper
I'm creating a site that wiill be submitting post data but I want to
verify how that the site sending the data is using SSL(https). Is
there any way of validating that in PHP?
TIA
Re: Referer site is https or not
am 21.11.2005 22:46:35 von Pat Farrell
Evil Bert wrote:
> I'm creating a site that wiill be submitting post data but I want to
> verify how that the site sending the data is using SSL(https). Is
> there any way of validating that in PHP?
Don't have the URL under non-ssl
--
Pat
Re: Referer site is https or not
am 22.11.2005 09:12:11 von Neeper
Actually I meant accepting for submitting. The site I have right now
is using https(SSL) and I need the submitting sites to be using SSL as
well. How do I verify this?
On Mon, 21 Nov 2005 16:46:35 -0500, Pat Farrell
wrote:
>Evil Bert wrote:
>> I'm creating a site that wiill be submitting post data but I want to
>> verify how that the site sending the data is using SSL(https). Is
>> there any way of validating that in PHP?
>
>Don't have the URL under non-ssl
Re: Referer site is https or not
am 22.11.2005 15:43:33 von jds
On Tue, 22 Nov 2005 08:12:11 +0000, Neeper wrote:
> well. How do I verify this?
look at $_SERVER
--
JDS | jeffrey@example.invalid
| http://www.newtnotes.com
DJMBS | http://newtnotes.com/doctor-jeff-master-brainsurgeon/
Re: Referer site is https or not
am 23.11.2005 03:42:15 von Neeper
I did, the $_SERVER['HTTP_REFERER'] isn't very reliable from my
readings on the Internet. Is there any other way how?
On Tue, 22 Nov 2005 09:43:33 -0500, JDS
wrote:
>On Tue, 22 Nov 2005 08:12:11 +0000, Neeper wrote:
>
>> well. How do I verify this?
>
>look at $_SERVER
Re: Referer site is https or not
am 23.11.2005 18:24:22 von jds
On Wed, 23 Nov 2005 02:42:15 +0000, Neeper wrote:
> I did, the $_SERVER['HTTP_REFERER'] isn't very reliable from my
> readings on the Internet. Is there any other way how?
If I am understanding you correctly...
It doesn't matter; i.e. your concerns are moot.
Example: A person clicking on a "submit" button on a form located on a
non-SSL website.
If the "action=" of that form points to an SSL-enabled site, then all of
the form data is transmitted encrypted.
So it doesn't matter if the form itself is or is not an SSL site. Only
that the destination of the form data is.
Does this describe your situation?
--
JDS | jeffrey@example.invalid
| http://www.newtnotes.com
DJMBS | http://newtnotes.com/doctor-jeff-master-brainsurgeon/
Re: Referer site is https or not
am 28.11.2005 17:59:27 von unknown
Post removed (X-No-Archive: yes)