Jump to content

Annon

Members
  • Posts

    2
  • Joined

  • Last visited

About Annon

  • Birthday 12/25/1900

Annon's Achievements

Dirt

Dirt (1/9)

0

Reputation

  1. I was responding to the post above that I quoted: I was simply explaining to him how this isn't possible due to how mojang require passwords for login in plain text and therefore why it was available as such, as I said FTB fixed the issue and removed the passwords from where users had posted them as well as made a post informing users of the issue, there is no more that could be done in my opinion.
  2. Well all minecraft launchers do exactly that because authenticating to minecraft.net requires a plain text password, here is the code from technics own launcher using the plain text password exactly as feed the beast does: public static String[] doLogin(String user, String pass, JProgressBar progress) throws BadLoginException, MCNetworkException, OutdatedMCLauncherException, UnsupportedEncodingException, MinecraftUserNotPremiumException, AccountMigratedException { String parameters = "user=" + URLEncoder.encode(user, "UTF-8") + "&password=" + URLEncoder.encode(pass, "UTF-8") + "&version=" + 13; String result = PlatformUtils.excutePost("https://login.minecraft.net/", parameters, progress); As you can see the login string is created using the plain text password which is then sent to mojang to see if the login is valid, the only difference here is the FTB Launcher prints out everything it does to the console so if the login failed (because minecraft.net was down) then the password would be visible in the error, it was clearly a mistake but was quickly rectified as a updated launcher was pushed and all the pastebin's containing the password were taken down.
×
×
  • Create New...