Earlier quoted context omitted.
Exactly! Imagine if your bank had such a redirect URL available, Phishing would be so simple.
Some banks display a customer preselected image after the user name & before entering a password. This seems to be a good solution to phishing if one keeps the username private. Otherwise a site could give you the option of using two part passwords.
This link says it's from YouTube but it's not
51–60 of 60 posts
Re: This link says it's from YouTube but it's not
#52Re: This link says it's from YouTube but it's not
#53Earlier quoted context omitted.
Exactly! Imagine if your bank had such a redirect URL available, Phishing would be so simple.
Some banks display a customer preselected image after the user name & before entering a password. This seems to be a good solution to phishing if one keeps the username private. Otherwise a site could give you the option of using two part passwords.
Re: This link says it's from YouTube but it's not
#54I don't know a single non-technical but non-internet-ignorant user who wouldn't be suckered in by this. I've taught people how to scan for valid links, and now they can't even trust that.
On proggit, we just found that even techical, internet savvy users can be suckered in by this. http://www.reddit.com/r/programming/comments/bpy7h/think_you... 1 in 5 attempted to sign in. The results are hardly scientific, but the comments are full of users who were fooled.
Re: This link says it's from YouTube but it's not
#55Earlier quoted context omitted.
On proggit, we just found that even techical, internet savvy users can be suckered in by this. http://www.reddit.com/r/programming/comments/bpy7h/think_you... 1 in 5 attempted to sign in. The results are hardly scientific, but the comments are full of users who were fooled.
Sorry but I'm not sure users from reddit are all web savvy. It's still interesting that people don't look at urls when asked for passwords.
Re: This link says it's from YouTube but it's not
#56It asks for confirmation when a page tries to redirect unexpectedly like this.
Re: This link says it's from YouTube but it's not
#57This is a common exploit. So common that it's #8 on the 2010 OWASP top 10 most critical web application security risks: "Unvalidated Redirects and Forwards". http://www.owasp.org/index.php/Category:OWASP_Top_Ten_Projec... Every web app developer should review these vulnerabilities before releasing their code to the world.
Interesting. Facebook had a similar exploit earlier but they seem to have solved it easily by attaching a hash to the redirect: site.com/redirect?l= &h=hash(secret,url)
http://www.facebook.com/l.php?u=http%3A%2F%2Fnews.ycombinato...
Re: This link says it's from YouTube but it's not
#58URLs are not a security mechanism. They are a non-canonical resource locator, where each part is resolved by a different server. It's a way to write a "program" that does a DNS lookup and HTTP query in a simple way. Nothing more, nothing less. If you want security, start a CA, give each site you like its own SSL cert (signed by you), and enjoy.
Re: This link says it's from YouTube but it's not
#59Earlier quoted context omitted.
Some banks display a customer preselected image after the user name & before entering a password. This seems to be a good solution to phishing if one keeps the username private. Otherwise a site could give you the option of using two part passwords.
... and a study a while back showed that, if you simply don't show that image, a large majority of users don't notice. For this reason, the whole "sitekey" phenomenon strikes me as a waste of time.
It should also be noted that it's not even a 25% benefit for them, but it does help security, even if slightly. I think lowering phishing 1% could be massive for any major bank.
Re: This link says it's from YouTube but it's not
#60Earlier quoted context omitted.
Some banks display a customer preselected image after the user name & before entering a password. This seems to be a good solution to phishing if one keeps the username private. Otherwise a site could give you the option of using two part passwords.
Isn't this incredibly simple to defeat? The phishing site can send your username to the real bank's website and retrieve the image.
You could use a botnet to do the lookups, but that still makes the attack substantially more difficult.