Earlier quoted context omitted.
I'm in Chile as part of Start-Up Chile. What exactly do you need? PS - I am also a US customer. A block on international traffic effects more than just international customers.
Manpacks.com is a great example of a company that started up to fill the void left when Zappos stopped shipping to Canada.
Zappos.com customer database compromised
91–93 of 93 posts
Re: Zappos.com customer database compromised
#92Earlier quoted context omitted.
I for one would love Zappos to ship internationally, and your owners at Amazon already do. I know you can't comment, but please do what you can to push for selling to the other 6.7 billion of us.
It'd be cool if we could ship internationally. What would be even cooler is if we could inspire entrepeneurs in other countries to tackle it!
Re: Zappos.com customer database compromised
#93Earlier quoted context omitted.
I'm guessing posting anything about our password hashing will be frowned upon due to the context of this question. What are the best practices you want to see a website use when storing your password?
Salt. Seriously. A big, long, gnarly-looking salt. Preferably a unique salt per user. Really, even just that is sufficient, even if stored right next to the hash. It means doing a bruteforce/dictionary attack one user at a time rather than one bruteforce/dictionary attack of all the users at once (static salt) or just googling the hash (unsalted hash). Also, are these passwords encrypted or hashed? Those two are mile…