sql gurus : need help (simple q)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DutchTeenCash
    I like Dutch Girls
    • Feb 2003
    • 21684

    #1

    sql gurus : need help (simple q)

    ive got an SQL base, the 2nd field is the password field, its encrypted, the guy who made this base isnt working for us anymore, I need to find a way to have these passwords decrypted, is that possible? and if so how?

    thanks

    ICQ 16 91 547 - SKYPE dutchteencash
    bob AT dutchteencash DOT com
    ... did you see our newest Sweet Natural Girl Priscilla (18)?
  • arnette
    Confirmed User
    • Feb 2005
    • 283

    #2
    nope, if its encrypted it stays encrypted, this is true for 99% of cases
    if you dont know the passwords you will need to reset them

    Comment

    • absix
      Confirmed User
      • Aug 2003
      • 484

      #3
      If it's encrypted with a password, you can decrypt it with the password, if it's MD5... forget about it.

      That's what my programmers say.
      ICQ: 59eleven5623, ab at zoig dot com

      Comment

      • DutchTeenCash
        I like Dutch Girls
        • Feb 2003
        • 21684

        #4
        Originally posted by arnette
        nope, if its encrypted it stays encrypted, this is true for 99% of cases
        if you dont know the passwords you will need to reset them
        well theyre user/password logins, but theres an encryption key somewhere I guess, cant it be reversed somehow, would save me a shitload of work...

        ICQ 16 91 547 - SKYPE dutchteencash
        bob AT dutchteencash DOT com
        ... did you see our newest Sweet Natural Girl Priscilla (18)?

        Comment

        • DutchTeenCash
          I like Dutch Girls
          • Feb 2003
          • 21684

          #5
          Originally posted by absix
          If it's encrypted with a password, you can decrypt it with the password, if it's MD5... forget about it.

          That's what my programmers say.
          uh ok so I have to look in the php if theres an encryption pass right ok cool thanks

          ICQ 16 91 547 - SKYPE dutchteencash
          bob AT dutchteencash DOT com
          ... did you see our newest Sweet Natural Girl Priscilla (18)?

          Comment

          • Weppel
            Confirmed User
            • Aug 2003
            • 2190

            #6
            What do the passwords look like? 32-character lines? If that's the case you're dealing with MD5-hashes and those don't actually contain the passwords, only a hash of the password.

            Comment

            • DutchTeenCash
              I like Dutch Girls
              • Feb 2003
              • 21684

              #7
              Originally posted by Weppel
              What do the passwords look like? 32-character lines? If that's the case you're dealing with MD5-hashes and those don't actually contain the passwords, only a hash of the password.
              they look like this

              29dbcdd87fce5106

              ICQ 16 91 547 - SKYPE dutchteencash
              bob AT dutchteencash DOT com
              ... did you see our newest Sweet Natural Girl Priscilla (18)?

              Comment

              • Weppel
                Confirmed User
                • Aug 2003
                • 2190

                #8
                Originally posted by thinkx
                they look like this

                29dbcdd87fce5106
                Looks like a 16-character MySQL password hash, you can't decrypt hashes.
                If you're interested in knowing why i can type it up, lmk

                Best solution in this case would be to reset the password to something you want.

                Comment

                • absix
                  Confirmed User
                  • Aug 2003
                  • 484

                  #9
                  Oh, find the programmer who used to work for you and did this and break his arms lol
                  ICQ: 59eleven5623, ab at zoig dot com

                  Comment

                  • xfalmp
                    Confirmed User
                    • Aug 2002
                    • 1474

                    #10
                    Yeah, reset it and you're done.

                    Look around on your php files how encriptions are done and create a key for you with your new password... then replaces it with the old one.

                    Trust the "WOW" effect.

                    Comment

                    • DutchTeenCash
                      I like Dutch Girls
                      • Feb 2003
                      • 21684

                      #11
                      its a membership base, so I cant just paste a new one... I need the actual password not the entrace so to speak...the guy who programmed it vanished... seems we gotta ask over a 1000 ppl again sigh... dont worry its not for dutchteencash

                      ICQ 16 91 547 - SKYPE dutchteencash
                      bob AT dutchteencash DOT com
                      ... did you see our newest Sweet Natural Girl Priscilla (18)?

                      Comment

                      • arnette
                        Confirmed User
                        • Feb 2005
                        • 283

                        #12
                        icq me 243680554

                        Comment

                        • DutchTeenCash
                          I like Dutch Girls
                          • Feb 2003
                          • 21684

                          #13
                          Originally posted by arnette
                          icq me 243680554
                          done

                          8 chars

                          ICQ 16 91 547 - SKYPE dutchteencash
                          bob AT dutchteencash DOT com
                          ... did you see our newest Sweet Natural Girl Priscilla (18)?

                          Comment

                          • Azathoth
                            Confirmed User
                            • Nov 2002
                            • 217

                            #14
                            Change the script so it records the password the user enters when they login before it encrypts it and compares it to what's in the database

                            - Az

                            Comment

                            • grumpy
                              Too lazy to set a custom title
                              • Jan 2002
                              • 9870

                              #15
                              its simple
                              remove the passwords
                              use a new encryption and accept the first password they type in as the new password. Will solve it in 99% of the cases.
                              Don't let greediness blur your vision | You gotta let some shit slide
                              icq - 441-456-888

                              Comment

                              • DutchTeenCash
                                I like Dutch Girls
                                • Feb 2003
                                • 21684

                                #16
                                Originally posted by grumpy
                                its simple
                                remove the passwords
                                use a new encryption and accept the first password they type in as the new password. Will solve it in 99% of the cases.
                                I wish, its not an active base anymore.. seems Im stuck...

                                ICQ 16 91 547 - SKYPE dutchteencash
                                bob AT dutchteencash DOT com
                                ... did you see our newest Sweet Natural Girl Priscilla (18)?

                                Comment

                                • Pete-KT
                                  Workin With The Devil
                                  • Oct 2004
                                  • 51532

                                  #17
                                  the key you posted seems to be hashed, Its gonna be near imposible to decrypt it, im not saying it can't be done but im not saying its gonna be easy either. If you need the help let me know and i will see what we can do for you.

                                  Comment

                                  • Weppel
                                    Confirmed User
                                    • Aug 2003
                                    • 2190

                                    #18
                                    Originally posted by Pete-KT
                                    the key you posted seems to be hashed, Its gonna be near imposible to decrypt it, im not saying it can't be done but im not saying its gonna be easy either. If you need the help let me know and i will see what we can do for you.
                                    There is no way you can translate a hash back to a password, that's the whole idea behind a hash..

                                    Comment

                                    • grumpy
                                      Too lazy to set a custom title
                                      • Jan 2002
                                      • 9870

                                      #19
                                      Originally posted by thinkx
                                      I wish, its not an active base anymore.. seems Im stuck...

                                      solution is still the same, active or not active.
                                      Don't let greediness blur your vision | You gotta let some shit slide
                                      icq - 441-456-888

                                      Comment

                                      • chadglni
                                        Confirmed User
                                        • Dec 2002
                                        • 6924

                                        #20
                                        One of the first things I would try is the suggestion posted above, if it was my ass on the line

                                        "Change the script so it records the password the user enters when they login before it encrypts it and compares it to what's in the database

                                        - Az"


                                        Sign up here - Dating Site affiliate program

                                        Comment

                                        Working...