Live data from Hacker News

Viewing profile — davekt

davekt

HN member
Joined
Fri, Mar 22, 2013, 11:39 PM UTC
HN karma
373
Public activity
20 items

About davekt

No profile information was provided.

Recent public activity

  1. comment
    Comment #12426931

    https://typing.io/lessons let you type through code, which exercises the right pinky more than prose. The site also requires backspacing to correct typos. This adds realistic overh…

  2. comment
    Comment #7504677

    Some amex cards have a 3 digit cvv [1]. [1] http://ecommerce.shopify.com/c/shopify-discussion/t/heads-up...

  3. comment
    Comment #7503673

    The home page of this article has a section comparing text inputs vs drop downs [1]. [1] http://creditcardjs.com/#drop-down-for-expiration

  4. comment
    Comment #7503480

    One scenario where immediate detection is helpful is for unsupported card types. The server detection would require users first fill all their card data only to discover they need …

  5. story
  6. story
  7. comment
    Comment #7123929

    For a production ready alternative, take a look at http://creditcardjs.com , which was posted on HN a while back. The web site points out common mistakes when implementing credit c…

  8. story
  9. story
  10. story
  11. story
  12. story
  13. story
  14. story
  15. story
  16. story
  17. comment
    Comment #5487225

    Thanks for responding. I would argue the opposite, that the browser is the safest place to sanitize because it better understands the context where user generated strings will be i…

  18. comment
    Comment #5487165

    Correct. If the 3rd party js properly sanitizes user input, this xss attack is moot. However, browsers love to eval stuff ( http://html5sec.org/ ), and sandbox iframes provide good…

  19. comment
    Comment #5486986

    An example attack iframes would make more difficult is XSS in the comment fields, e.g. an attacker bypasses sanitization and injects js into a page. With a sandbox iframe, the comm…

  20. comment
    Comment #5486936

    For 3rd party widgets, I actually prefer iframe for security. The same domain policy makes it more difficult for xss in the iframe to compromise the parent page. For HTML5 sandbox …