LeakedIn
91–100 of 194 posts
Re: LeakedIn
#92Now there's a great idea! Provide your password to some random site purporting to check if your password's been compromised.
You can supply just your password hash if you want, and if you supply the raw password, it's hashed client-side via Javascript before being sent to the server. Test it out with firebug and a dummy password if you're not keen on wading through the source.
Re: LeakedIn
#93I made something almost the same (including name!), except all check is done in browser: http://crackedin.s3-website-us-east-1.amazonaws.com/ And it's hosted on S3 so it is faster :)
I just wanted the list in an easily downloadable format so I can check offline (easily downloadable == not the rapidshare of russia, something you could wget) But I submitted the hash of my password and it's there so...
Re: LeakedIn
#94I made something almost the same (including name!), except all check is done in browser: http://crackedin.s3-website-us-east-1.amazonaws.com/ And it's hosted on S3 so it is faster :)
I just wanted the list in an easily downloadable format so I can check offline (easily downloadable == not the rapidshare of russia, something you could wget) But I submitted the hash of my password and it's there so...
here: http://www.seedpeer.me/download/linkedin_hashes/ad1e93a1aee2...
Re: LeakedIn
#95Earlier quoted context omitted.
Thank you. Worked for me as well... I wonder what kind of bonkers executive at LI decided it would not be a good idea to do a sweeping wipe of all passwords on their systems... for user in users: force_pw_reset(user); def force_pw_reset(user): user.pw = rand; user.sendResetEmail(); (note to LI: this isn't real code; don't use)
Now just send phising emails with fake reset links to your targets at the same time. Password reset should be enforced at first login.
Though I doubt any of the above will happen. Wouldn't want the user to be inconvenienced now would we?
Re: LeakedIn
#96Re: LeakedIn
#97We need a "wasmylinkedinpasswordleaked.com" with yes as the content.
Re: LeakedIn
#98'pooppants' is a confirmed hit. "World's Largest Professional Network". I like to imagine some suit with a cigar logging into look for new hires with that one.
Re: LeakedIn
#99Re: LeakedIn
#100Earlier quoted context omitted.
Interesting implementation, but won't this eat up a lot of bandwidth and cause a high S3 bill?
I cut the hash database into 256 pieces based on the last two digits of hash so chunk is smaller than 1MB. To check one password it only downloads one piece. So hopefully it won't be that bad.