[DiscordArchive] yes?
[DiscordArchive] yes?
Archived author: Ymir • Posted: 2024-02-05T02:21:46.400000+00:00
Original source
yes?
Archived author: Kitzunu • Posted: 2020-10-04T21:03:46.025000+00:00
Original source
passwords are not casesensitive in current retail either (if I remember correctly)
Archived author: Kitzunu • Posted: 2020-10-04T21:03:48.175000+00:00
Original source
blizzard op
Archived author: MaloW • Posted: 2020-10-04T21:04:15.542000+00:00
Original source
hmm looks like this might be hack fixable by a client-side patch:
X.mpq/Interface/GlueXML/AccountLogin.lua:145
```
function AccountLogin_Login()
PlaySound("gsLogin");
DefaultServerLogin(AccountLoginAccountEdit:GetText(), AccountLoginPasswordEdit:GetText());
AccountLoginPasswordEdit:SetText("");
if ( AccountLoginSaveAccountName:GetChecked() ) then
SetSavedAccountName(AccountLoginAccountEdit:GetText());
else
SetSavedAccountName("");
end
end
```
DefaultServerLogin seems like it's not part of the Lua framework but something deeper, but it might be possible to make a patch that modifies the data sent into this. For example maybe it would be possible to add Lua code here that modifies the input from the text boxes by adding a special character after each lower-case character in the account name, and then have the server do a similar decoding where it translates character+specialcharacter into a lower-case character.
Archived author: Kitzunu • Posted: 2020-10-04T21:05:48.958000+00:00
Original source
well it could easily removed by anyone
Archived author: MaloW • Posted: 2020-10-04T21:07:47.265000+00:00
Original source
The only thing that would do is make them unable to login
Archived author: Barbz • Posted: 2020-10-04T21:56:17.566000+00:00
Original source
that's damn interesting