Jump to content
TrinityCore

Search the Community

Showing results for tags 'auth'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Releases and Announcements
  • Help and Support
    • Help and Support
  • Offtopic
    • Trinitycore.org Website issues
    • Chillout Room

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 4 results

  1. So i guess it is pretty obvious about what am i going to ask =) Problem is, previousle we could just sha1 username and password separated by colon and here is the sha_pass_hash. The problem i am facing right now, is that according to https://github.com/TrinityCore/TrinityCore/blob/86b98686a95e23247ecb774fb23ecd5b8d94b97b/src/server/game/Accounts/BattlenetAccountMgr.cpp#L177 Trinity now uses SHA256, so the hashes do not match anymore. The thing is, password length in database is 40 symbols (exactly as many as in sha1 hash), but sha256 hash length is 64 characters long. I am confused... I've tried to recreate whole "Cryptography" thing on PHP but, guess what, failed. Can somebody explain me how the password is generated nowadays? Thank you for your attention.
  2. Hi, I've follow the explanation to make a server with the mmaster branch. The authserver and worldserver launch without error. I've created an account with the command bnetaccount create But when i try to identificate on wow, it says that the login or password is invalid. How could vérify that password are encrypted in the right way and decrypt in the good way too ? Thanks in advance and for all your good work. Example of salt et verifier that appear in my database auth : Salt : ҕ��E��O���4��`˷����NV�: Verifier : � ���1ri͐������IDmm-�����v My table are in utf8_general_ci for auth, world and characters table and utf8mb4_unicode_ci for hotfixes MySQL57 MySQL Workbench 8 Visual Studio 2019 Git v2.30.0
  3. Hello, before i was using trinity fine, everything working perfect. But now, im always getting the worldserver.exe crash. Here is log, if someone can help me to fix it, please. Thanks Screenshoot where error always appear And, Error Log b19413aaf21d_worldserver.exe_[22-4_11-51-42].txt
  4. I know that the proper syntax while creating a user account in php is to run the username and password as upper and sha1 sha1("USER:PASS") But my question is more say you want to have a way to update the password? I tried with a standard query UPDATE accounts SET sha_pass_hash = sha1("USERNAME:NEWPASS") WHERE username = :arg :arg is just a general username placeholder, but when I run that command. it still takes the old login information. I know you can use the console to set the password, but I'm looking at ways to run it when the server is offline, Does anyone know why this doesn't work?
×
×
  • Create New...