Using PassLib to Verify Hash from Flask User Passwords





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I'm currently trying to migrate my Flask Users over to a Django Backend.



However, when I'm using passlib to verify the hash, I can't figure out why it won't verify.



Our flask app settings



SECURITY_PASSWORD_HASH = "pbkdf2_sha512"
SECURITY_PASSWORD_SALT = "stackoverflow" # this is an example


An example of a hash I pulled from a database




flask_hash =
"$pbkdf2sha512$12000$ZQyhNEbIOSfk/J/T2vs/Bw$j.yxtixV.DqAcpsY9XTnJZZb3lCkR2fMWmV329Uc7Y/vz5Z0yMshEkYlUsE2Y9xm8TICwYkG55RgAplzZzLl7g"




So I created a custom pbkdf2_sha512 with the the rounds and salt
from passlib.hash import pbkdf2_sha512



rounds = 12000
salt = "stackoverflow".encode() # assume I swapped this out with the right salt
custom_pbkdf2 = pbkdf2_sha512.using(rounds=rounds, salt=salt)

verify_result = custom_pbkdf2.verify(hash=flask_hash, secret=password)
print (verify_result) # false


But if I create a new hash ... it does work



test_hash = custom_pbkdf2.hash('testing-if-this-works')
test_hash_confirm = custom_pbkdf2.verify('testing-if-this-works', hash=test_hash)


Is there something I'm missing? Thank you so much for any help here ... I know the password to this -- it's a dummy account I used for testing.










share|improve this question





























    0















    I'm currently trying to migrate my Flask Users over to a Django Backend.



    However, when I'm using passlib to verify the hash, I can't figure out why it won't verify.



    Our flask app settings



    SECURITY_PASSWORD_HASH = "pbkdf2_sha512"
    SECURITY_PASSWORD_SALT = "stackoverflow" # this is an example


    An example of a hash I pulled from a database




    flask_hash =
    "$pbkdf2sha512$12000$ZQyhNEbIOSfk/J/T2vs/Bw$j.yxtixV.DqAcpsY9XTnJZZb3lCkR2fMWmV329Uc7Y/vz5Z0yMshEkYlUsE2Y9xm8TICwYkG55RgAplzZzLl7g"




    So I created a custom pbkdf2_sha512 with the the rounds and salt
    from passlib.hash import pbkdf2_sha512



    rounds = 12000
    salt = "stackoverflow".encode() # assume I swapped this out with the right salt
    custom_pbkdf2 = pbkdf2_sha512.using(rounds=rounds, salt=salt)

    verify_result = custom_pbkdf2.verify(hash=flask_hash, secret=password)
    print (verify_result) # false


    But if I create a new hash ... it does work



    test_hash = custom_pbkdf2.hash('testing-if-this-works')
    test_hash_confirm = custom_pbkdf2.verify('testing-if-this-works', hash=test_hash)


    Is there something I'm missing? Thank you so much for any help here ... I know the password to this -- it's a dummy account I used for testing.










    share|improve this question

























      0












      0








      0








      I'm currently trying to migrate my Flask Users over to a Django Backend.



      However, when I'm using passlib to verify the hash, I can't figure out why it won't verify.



      Our flask app settings



      SECURITY_PASSWORD_HASH = "pbkdf2_sha512"
      SECURITY_PASSWORD_SALT = "stackoverflow" # this is an example


      An example of a hash I pulled from a database




      flask_hash =
      "$pbkdf2sha512$12000$ZQyhNEbIOSfk/J/T2vs/Bw$j.yxtixV.DqAcpsY9XTnJZZb3lCkR2fMWmV329Uc7Y/vz5Z0yMshEkYlUsE2Y9xm8TICwYkG55RgAplzZzLl7g"




      So I created a custom pbkdf2_sha512 with the the rounds and salt
      from passlib.hash import pbkdf2_sha512



      rounds = 12000
      salt = "stackoverflow".encode() # assume I swapped this out with the right salt
      custom_pbkdf2 = pbkdf2_sha512.using(rounds=rounds, salt=salt)

      verify_result = custom_pbkdf2.verify(hash=flask_hash, secret=password)
      print (verify_result) # false


      But if I create a new hash ... it does work



      test_hash = custom_pbkdf2.hash('testing-if-this-works')
      test_hash_confirm = custom_pbkdf2.verify('testing-if-this-works', hash=test_hash)


      Is there something I'm missing? Thank you so much for any help here ... I know the password to this -- it's a dummy account I used for testing.










      share|improve this question














      I'm currently trying to migrate my Flask Users over to a Django Backend.



      However, when I'm using passlib to verify the hash, I can't figure out why it won't verify.



      Our flask app settings



      SECURITY_PASSWORD_HASH = "pbkdf2_sha512"
      SECURITY_PASSWORD_SALT = "stackoverflow" # this is an example


      An example of a hash I pulled from a database




      flask_hash =
      "$pbkdf2sha512$12000$ZQyhNEbIOSfk/J/T2vs/Bw$j.yxtixV.DqAcpsY9XTnJZZb3lCkR2fMWmV329Uc7Y/vz5Z0yMshEkYlUsE2Y9xm8TICwYkG55RgAplzZzLl7g"




      So I created a custom pbkdf2_sha512 with the the rounds and salt
      from passlib.hash import pbkdf2_sha512



      rounds = 12000
      salt = "stackoverflow".encode() # assume I swapped this out with the right salt
      custom_pbkdf2 = pbkdf2_sha512.using(rounds=rounds, salt=salt)

      verify_result = custom_pbkdf2.verify(hash=flask_hash, secret=password)
      print (verify_result) # false


      But if I create a new hash ... it does work



      test_hash = custom_pbkdf2.hash('testing-if-this-works')
      test_hash_confirm = custom_pbkdf2.verify('testing-if-this-works', hash=test_hash)


      Is there something I'm missing? Thank you so much for any help here ... I know the password to this -- it's a dummy account I used for testing.







      django flask passlib






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 26 '18 at 20:29









      yrekkehsyrekkehs

      2701413




      2701413
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I was struck in exactly the same situation, luckily found this reddit thread, which had the explanation.



          Basically, what you have to do verify the user is:



          from flask_security.utils import verify_password
          verify_password(<plain text password>, <password hash>)


          More details here






          share|improve this answer


























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53488571%2fusing-passlib-to-verify-hash-from-flask-user-passwords%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            I was struck in exactly the same situation, luckily found this reddit thread, which had the explanation.



            Basically, what you have to do verify the user is:



            from flask_security.utils import verify_password
            verify_password(<plain text password>, <password hash>)


            More details here






            share|improve this answer






























              0














              I was struck in exactly the same situation, luckily found this reddit thread, which had the explanation.



              Basically, what you have to do verify the user is:



              from flask_security.utils import verify_password
              verify_password(<plain text password>, <password hash>)


              More details here






              share|improve this answer




























                0












                0








                0







                I was struck in exactly the same situation, luckily found this reddit thread, which had the explanation.



                Basically, what you have to do verify the user is:



                from flask_security.utils import verify_password
                verify_password(<plain text password>, <password hash>)


                More details here






                share|improve this answer















                I was struck in exactly the same situation, luckily found this reddit thread, which had the explanation.



                Basically, what you have to do verify the user is:



                from flask_security.utils import verify_password
                verify_password(<plain text password>, <password hash>)


                More details here







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Mar 22 at 4:53

























                answered Mar 21 at 23:28









                Vishal GuptaVishal Gupta

                307




                307
































                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53488571%2fusing-passlib-to-verify-hash-from-flask-user-passwords%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    To store a contact into the json file from server.js file using a class in NodeJS

                    Redirect URL with Chrome Remote Debugging Android Devices

                    Dieringhausen