lax
lax

Reputation: 219

which web path is secure https to http or the opposite?

Web A is https while Web B is http only
Which path is secure?
Request from Web A to B or Web B to A?

I've been thinking which one should have a signature scheme and which is to be confident in TLS.

Upvotes: 0

Views: 133

Answers (2)

omg
omg

Reputation: 113

to verify the authenticity of the request made, a signature is used if the channel is across non ssl pages

Upvotes: 0

Darin Dimitrov
Darin Dimitrov

Reputation: 1039438

  • Request from A to B is not secure.
  • Request from B to A is secure.

In fact every WEB request made to https://... is secure.

This being said even a request from B to A might not be 100% secure. Because B was served over HTTP and it was not secure it means that the client has no way of ensuring that the contents comes from B. A Man-In-The-Middle could have replaced it with some other contents and thus in reality the final request might not be towards A but towards C (where C is evil).

Upvotes: 3

Related Questions