Earlier quoted context omitted.
A few solutions: - Create a font such that every character shows up as a * and use it for a text input. - make the input field use white text on a white background using a fixed-width font, monitor length, and display the correct number of *'s above it using a div. - implement the text box ground up from scratch using div's and JS, like google docs does. - implement a HTTPS password field in an iframe and communicate…
But what do you do when you have a page with form data that isn't sensitive and has no password on it and the users can't care less about the content of the form but chrome still warns about unsecure page?
Chrome 56 will mark HTTP pages with password fields as non-secure
71–80 of 419 posts
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#72Stupid question: Is the warning going to show up for localhost i.e. using chrome to see the local dev version of your website?
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#73Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#74Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#75I hope they do this for CC numbers too, because I know of a website I had to use that passed your Name, address, CC number, CC exp, amount; the whole shebang over plain ol' http to do a payment shudder .
I'm fairly sure that violates PCI-DSS.
Edit: It appears PCI DSS V3.2 does ask that the form itself be on a secure page (section 4.1.g):
"for browser-based implementations: 'HTTPS' appears as the browser Universal Record Locator (URL) protocol, and Cardholder data is only requested if “HTTPS” appears as part of the URL."
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#76Earlier quoted context omitted.
But what do you do when you have a page with form data that isn't sensitive and has no password on it and the users can't care less about the content of the form but chrome still warns about unsecure page?
Why would such a form need a password field?
There seems to be many people with similar problems of false positives for nonexistant passwords so I guess it's a bug.
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#77Earlier quoted context omitted.
It's one of the few things they do that I can't find a reason they would be financially motivated to do so, other than increase developers' opinions about the company as a whole, which is a good thing for all.
google competes with the likes verizon, comcast and at&t, and the data google gathers on you is very valuable. why would they want to share that data with the line operators for free? sorry to say, but https is not an altruistic move by google.
I'm willing to bet that the terms and conditions for both services allow google to reuse use the analytics infomation.
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#78I hope they do this for CC numbers too, because I know of a website I had to use that passed your Name, address, CC number, CC exp, amount; the whole shebang over plain ol' http to do a payment shudder .
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#79Earlier quoted context omitted.
Don't you need to use type = "password" to get the -for-every-character treatment? I suppose you could implement your own (e.g. type = "text" with an onKeyDown listener that cached each keystroke and inserted a into the field), but that sounds like a terrible solution in so many ways. I would think the laziest possible way to workaround this would be to use a CDN like Cloudflare to proxy all traffic to your site. Loo…
A few solutions: - Create a font such that every character shows up as a * and use it for a text input. - make the input field use white text on a white background using a fixed-width font, monitor length, and display the correct number of *'s above it using a div. - implement the text box ground up from scratch using div's and JS, like google docs does. - implement a HTTPS password field in an iframe and communicate…
I know that you're just exploring solutions because it's interesting, but all those things take longer than Let's Encrypt.
Re: Chrome 56 will mark HTTP pages with password fields as non-secure
#80Pm - "why is this page insecure" Developer - "chrome labels password fields as insecure over http" Pm - "what if it wasn't a password field"
Don't you need to use type = "password" to get the -for-every-character treatment? I suppose you could implement your own (e.g. type = "text" with an onKeyDown listener that cached each keystroke and inserted a into the field), but that sounds like a terrible solution in so many ways. I would think the laziest possible way to workaround this would be to use a CDN like Cloudflare to proxy all traffic to your site. Loo…