Facebookv0.1 It's a cool plugin to login from minecraft to your facebook account! "What's done up to now?" Every player can login into his/her account, then the displayname will changed to the facebook name! "Future?" In future we will make an open source lib for developers and more functions for the plugin! "Open Sorce?" No not at the moment, but the plugin will be open source. "Save? What about security?" No there is no security yet, but there will be and md5 security. And if a developer has an good idea for good security pls pn me! "What about the version?" So... You can the the version is 0.1 at the moment. That mean there are some bugs and errors and it's a kind of "preview" Screenshot Commands /login <email> <pass> Download You can download the plugin here[NEW] Source [facebook.rar] here Now i hope the plugin helps you! You can send me feedback, too! If there is a youtuber who wants to make a video about this plugin ... pls pn me !
Yes will! Ok i released the source ! It's only a .rar not github! EDIT by Moderator: merged posts, please use the edit button instead of double posting.
I think this is nice however security is a big thing with me. Here is a good working method of returning a md5 hash. Spoiler (Move your mouse to the spoiler area to reveal the content) Show Spoiler Hide Spoiler public static String encrypt(String password)throws Exception{ MessageDigest md = MessageDigest.getInstance("MD5"); md.update(password.getBytes()); byte byteData[] = md.digest(); StringBuffer sb = new StringBuffer(); for (int i = 0; i < byteData.length; i++) { sb.append(Integer.toString((byteData & 0xff) + 0x100, 16).substring(1)); } StringBuffer hexString = new StringBuffer(); for (int i=0;i<byteData.length;i++) { String hex=Integer.toHexString(0xff & byteData); if(hex.length()==1) hexString.append('0'); hexString.append(hex); } return hexString.toString(); }
WOW thx man!!!!! Yes but you can break a facebook account easilier without minecraft and md5 D EDIT by Moderator: merged posts, please use the edit button instead of double posting.
True enough. Im just saying, from a users perspective, I would rather not have my data put out there at all without some VERY secure encryption. Idk just my ideas!
connection.addRequestProperty("Referer", "http://graph.facebook.com/gunp0wder"); smarty ^^ i like this idea and i hope to see this coming forward, for instance sending fb messages and changing status, would be great ! Ur using cookies , isnt using the FB Api bettah ? Thanks for ur attention !
Too much salt is bad for your heath. Can you upload somewhere else please? EDIT: Went to that page, where the hell do you download it? Everywhere I click download it takes me to ilivid.com and clearly that's not it. EDIT by Moderator: merged posts, please use the edit button instead of double posting.
I would even ditch the whole hash thing and just use facebook connect (write a facebook app on heroku or something that auths with facebook connection and create a backend REST API to the facebook app that your plugin can use)
Dude.... In any case, I kind of shudder to hear the words "md5" and "security" in one sentence. You should really invest in learning about hashing, encryption, different types of algorithms, etc. if you want to be messing around with people's facebooks.
I second this, I would recommend blowfish (bcrypt) + salt or SHA256/SHA512 + salt. Still, facebook OAuth is pretty good.
Srry bros for the long waiting time I hadn't time to fix or change anything currently I'm working on a new version so I will not update the source link. Come back soon ...