arcade script password help!

Discussion in 'PHP' started by raven2424, Feb 23, 2006.

  1. #1
    Hello i have bought a script some time ago from a member of a forum the script is a arcade script and when i went to install it on my site it all went fine untill i went to the admin area were it asks for the user name and password so i enterd what i thought it was and it never worked in the readme that comes with the script it does not tell you the password so now i have a script that i cant use cause the maker never included the password in the read me this makes me very :mad: can anyone help or know how to edit the password in the mysql or somthing any help would be great!!
     
    raven2424, Feb 23, 2006 IP
  2. iatbm

    iatbm Prominent Member

    Messages:
    5,151
    Likes Received:
    352
    Best Answers:
    0
    Trophy Points:
    360
    #2
    password has to be somewhere in php files .... search
     
    iatbm, Feb 23, 2006 IP
  3. raven2424

    raven2424 Well-Known Member

    Messages:
    754
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    160
    #3
    no clue were it is can u help i can send you the script please let me know!
     
    raven2424, Feb 23, 2006 IP
  4. igotdreams

    igotdreams Peon

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    look for a file called config.php, or globals.php in the root or in the includes folder. Unless this site has a database? Does it? If so, it maybe in the database in a table called users, or admin. Not that I expect you to know how to get that information.
     
    igotdreams, Feb 23, 2006 IP
  5. raven2424

    raven2424 Well-Known Member

    Messages:
    754
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    160
    #5
    yes it does have a database and there is a table called users with a admin user under it the password is like a long string dh3872hrf849 somthing of that nature do u have a chat program maybe u can take a look for me?
     
    raven2424, Feb 23, 2006 IP
  6. igotdreams

    igotdreams Peon

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    this means that the password is encrypted through the software he built. You can run a small script to allow you to do what you need. The technology that encrpyts that is mostly used with php is called "MD5".
     
    igotdreams, Feb 23, 2006 IP
  7. raven2424

    raven2424 Well-Known Member

    Messages:
    754
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    160
    #7
    were can i get the program to de encrypt the password?
     
    raven2424, Feb 23, 2006 IP
  8. igotdreams

    igotdreams Peon

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Why not reset it to what you want? ??????

    Go into your SQL Query writer and do this;

    just do it like:

    and it should work
     
    igotdreams, Feb 23, 2006 IP
  9. raven2424

    raven2424 Well-Known Member

    Messages:
    754
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    160
    #9
    im not very good with mysql and need more information to how to do this
     
    raven2424, Feb 23, 2006 IP
  10. raven2424

    raven2424 Well-Known Member

    Messages:
    754
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    160
    #10
    im at the DB and i see this area

    SQL query on database animesta_arcade:

    ok now should i input

    INSERT INTO yourtable(yourfield)
    VALUES (MD5('$yourvar'));

    into the feild and see what happens?
     
    raven2424, Feb 23, 2006 IP
  11. igotdreams

    igotdreams Peon

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    You know I was not thinking when I typed that, try this;

    INSERT INTO users VALUES (MD5('yourpassword')); where userId='1'

    your going to need some basic knowledge to do that. Update where I have "userId" with what your programmer used. And use the ID number of the record you want to edit. My script, probably has a flaw in it, but I am not in a place where I can check it for you sorry. I just hope I can get you on the right track.
     
    igotdreams, Feb 23, 2006 IP
  12. igotdreams

    igotdreams Peon

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    actually NO, I can do this for you I guess, what is your IM info
     
    igotdreams, Feb 23, 2006 IP
  13. raven2424

    raven2424 Well-Known Member

    Messages:
    754
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    160
    #13
    ok great add me to msn
     
    raven2424, Feb 23, 2006 IP
  14. igotdreams

    igotdreams Peon

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #14
    Just to update anyone that finds this thread and needs help, My sql queries where all wrong. I should have been using UPDATE user SET yourfield='variable' WHERE userId='Id Of Record'

    Regardless, use this amazing tool I found online to reverse MD5 strings

    http://md5.rednoize.com/
     
    igotdreams, Feb 23, 2006 IP