How To MD5 Read ?

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    Enthusiast Max Manning is offline
    MemberRank
    May 2012 Join Date
    34Posts

    wink How To MD5 Read ?

    Any one know how to Make the login Read MD% Logins cause some reason people register on website and fails login bad user name or password

    Sending query to acquire password
    Prepare procedure call:{call acquireuserpasswd(?,?,?)}
    Received acquired password
    Returning acquired password
    gauthd: 16 һ▒▒ 2016 01:33:02,375 INFO GAuthServer:? - MatrixPasswd,name=roseon2,userid=64
    Prepare procedure call:{call deleteTimeoutForbid(?)}
    debug : glinkd::SessionError: change to Null state sid=28, errno=3 reason=Invalid Login.


  2. #2
    Valued Member extazy20 is offline
    MemberRank
    Feb 2012 Join Date
    101Posts

    Re: How To MD5 Read ?

    auth does not understand capital letters and characters in your password. Try password of digits in an ideal.

  3. #3
    JD | Web Developer mrosenov is offline
    MemberRank
    Jun 2012 Join Date
    BulgariaLocation
    555Posts

    Re: How To MD5 Read ?

    That's really strange my password contains !@# symbols even numbers and I'm still able to login w/o any problems, about reading MD5 you can try couple MD5 Site/ it works with database records, so if your MD5 hash matches with one of theirs that they have into the database you will be able to get the password, also about cracking MD5 you can try Hashcat, it will take sometime to crack the password, also I'm not sure is it legal to use it :D

    UPDATE
    Maybe you are using one of those mixed files with the gcontroler?
    Last edited by mrosenov; 16-01-16 at 11:58 AM.

  4. #4
    Enthusiast Max Manning is offline
    MemberRank
    May 2012 Join Date
    34Posts

    Re: How To MD5 Read ?

    Ya just the weirdest thing it Doesn't want to read MD5 or Regulars Password only thing it doing is that it Says Invalid lol Maby the Java it using ?

    Here and Example of what it reading
    Screenshot by Lightshot

  5. #5
    Valued Member extazy20 is offline
    MemberRank
    Feb 2012 Join Date
    101Posts

    Re: How To MD5 Read ?

    Quote Originally Posted by Max Manning View Post
    Ya just the weirdest thing it Doesn't want to read MD5 or Regulars Password only thing it doing is that it Says Invalid lol Maby the Java it using ?

    Here and Example of what it reading
    Screenshot by Lightshot
    You need change password hash in your register file.
    Give us your registration code php.

  6. #6
    JD | Web Developer mrosenov is offline
    MemberRank
    Jun 2012 Join Date
    BulgariaLocation
    555Posts

    Re: How To MD5 Read ?

    Quote Originally Posted by Max Manning View Post
    Ya just the weirdest thing it Doesn't want to read MD5 or Regulars Password only thing it doing is that it Says Invalid lol Maby the Java it using ?

    Here and Example of what it reading
    Screenshot by Lightshot
    Thats a MD5 Salt you can decrypt the salt to MD5 here => Salt Decrypter
    It will be good to tell us which files you are using also attach your register script.

  7. #7
    Enthusiast Max Manning is offline
    MemberRank
    May 2012 Join Date
    34Posts

    Re: How To MD5 Read ?

    Well it Server Files 1378

    Register Script:

    This doesn't work on ether windows Or Linux it makes the password wrong every time no idea why Still need this to work right

    <?php

    include("config.php");


    $serverid= $_POST['serverid'];
    $Login = $_POST['UserName'];
    $Pass = $_POST['PassWord'];
    $Repass = $_POST['PassWord2'];
    $Email = $_POST['EMail'];
    $Prompt= $_POST['Prompt'];
    $answer= $_POST['answer'];
    $QQ= $_POST['QQ'];

    if($serverid==100){
    echo "<script>alert('ÇëÑ¡Ôñ·þÎñÆ÷')</script>";
    echo "<script>document.location.href='index.htm'</script>";
    }
    else
    {if($serverid==1){$Link = MySQL_Connect($DBHost, $DBUser, $DBPassword) or die ("²»ÄÜÁ¬½Óµ½ MySql");
    MySQL_Select_Db($DBName1, $Link) or die ("Database ".$DBName." do not exists.");
    }elseif($serverid==2){$Link = MySQL_Connect($DBHost, $DBUser, $DBPassword) or die ("²»ÄÜÁ¬½Óµ½ MySql");
    MySQL_Select_Db($DBName2, $Link) or die ("Database ".$DBName." do not exists.");
    }elseif($serverid==3){$Link = MySQL_Connect($DBHost, $DBUser, $DBPassword) or die ("²»ÄÜÁ¬½Óµ½ MySql");
    MySQL_Select_Db($DBName3, $Link) or die ("Database ".$DBName." do not exists.");
    }

    //$Login = StrToLower(Trim($UserName));
    //$Pass = StrToLower(Trim($PassWord));
    //$Repass = StrToLower(Trim($PassWord2));
    //$Email = Trim($Email);
    //echo "$serverid";
    //echo "$Login";
    //echo "$Pass";
    //echo "$Repass";
    //echo "$Email";
    //echo "$Prompt";
    //echo "$answer";
    //echo "$QQ";

    //if (empty($Login) || empty($Pass) || empty($Repass) || empty($Email))
    //{
    // echo "All fields is empty.";
    //}


    //else
    if (preg_match("[^0-9a-zA-Z_-]", $Login, $Txt))
    {
    echo "<script>alert('Óû§ÃûÊäÈë´íÎó')</script>";
    echo "<script>document.location.href='index.htm'</script>";
    }

    elseif (preg_match("[^0-9a-zA-Z_-]", $Pass, $Txt))
    {
    echo "<script>alert('ÃÜÂëÊäÈë´íÎó')</script>";
    echo "<script>document.location.href='index.htm'</script>";
    }

    elseif (preg_match("[^0-9a-zA-Z_-]", $Repass, $Txt))
    {
    echo "<script>alert('ÃÜÂëÊäÈë´íÎó')</script>";
    echo "<script>document.location.href='index.htm'</script>";
    }
    else
    {
    $Result = MySQL_Query("SELECT name FROM users WHERE name='$Login'") or ("Can't execute query.");

    if (MySQL_Num_Rows($Result))
    {
    echo "<script>alert('Óû§Ãû".$Login."ÒÑ´æÔÚ')</script>";
    echo "<script>document.location.href='index.htm'</script>";
    }

    elseif ((StrLen($Login) < 4) or (StrLen($Login) > 10))

    {
    echo "<script>alert('Óû§Ãû±ØÐë´óÓÚ4λСÓÚ10룬ÇëÖØÐÂÊäÈë')</script> ";
    echo "<script>document.location.href='index.htm'</script>";
    }

    elseif ((StrLen($Pass) < 4) or (StrLen($Pass) > 10))

    {
    echo "<script>alert('ÃÜÂë±ØÐë´óÓÚ4λСÓÚ10룬ÇëÖØÐÂÊäÈë')</script> ";
    echo "<script>document.location.href='index.htm'</script>";
    }
    elseif ((StrLen($Email) < 4) or (StrLen($Email) > 25))
    {
    echo "<script>alert('µç×ÓÓÊÏä´óÓÚ4λСÓÚ25룬ÇëÖØÐÂÊäÈë')</script> ";
    echo "<script>document.location.href='index.htm'</script>";
    }

    elseif ($Pass != $Repass)
    {
    echo "<script>alert('2´ÎÃÜÂëÊäÈë²»Ò»Ñù£¬ÇëÖØÐÂÊäÈë')</script> ";
    echo "<script>document.location.href='index.htm'</script>";
    }
    else
    {
    $Salt = $Login.$Pass;
    $Salt = md5($Salt);
    $Salt = "0x".$Salt;
    $date=date('Y-m-j');
    MySQL_Query("call adduser('$Login', $Salt, '$Prompt', '$answer', '0', '0', '$Email', '0', '0', '0', '0', '0', '0', '0', '$date', '$QQ', $Salt)") or die ("Can't execute query.");
    $sql="select ID from users where `name`='$Login'";
    $res=mysql_query($sql);
    $row=mysql_fetch_row($res);
    mysql_free_result($res);
    $id = implode($row);
    $date=date("Y-m-d H:i:s");
    $sql = "insert into usecashnow(userid, zoneid, sn, aid, point, cash,status, creatime) values ('$id',

    '1', '0', '1', '0', '$point', '1', '$date')";
    mysql_query($sql);
    mysql_close();
    echo "<script>alert('Óû§ ".$Login."×¢²á³É¹¦.ÔùËÍ".$point."Ôª±¦ ')</script> ";
    echo "<script>document.location.href='index.htm'</script>";
    }
    }
    }


    ?>

  8. #8
    JD | Web Developer mrosenov is offline
    MemberRank
    Jun 2012 Join Date
    BulgariaLocation
    555Posts

    Re: How To MD5 Read ?

    Try this script.
    Attached Files Attached Files

  9. #9
    Enthusiast Max Manning is offline
    MemberRank
    May 2012 Join Date
    34Posts

    Re: How To MD5 Read ?

    Screenshot by Lightshot


    thank but it not working

  10. #10
    JD | Web Developer mrosenov is offline
    MemberRank
    Jun 2012 Join Date
    BulgariaLocation
    555Posts

    Re: How To MD5 Read ?

    OMG, have you ever worked with PHP?...
    change all <? to <?php and it will work

  11. #11
    Enthusiast Max Manning is offline
    MemberRank
    May 2012 Join Date
    34Posts

    Re: How To MD5 Read ?

    relax dude and no
    If you need help about JD dont afraid to ask. :) <---- should change it if this how u help

    - - - Updated - - -

    And thank you

  12. #12
    JD | Web Developer mrosenov is offline
    MemberRank
    Jun 2012 Join Date
    BulgariaLocation
    555Posts

    Re: How To MD5 Read ?

    One thing I don't understand you don't even have a simple knowledge about web and Jade developing, but still complaining how I help you..
    You shall be glad that me and @extazy20 helps you to run your server, cause you know we can just sit and watch how you are try harding on something very simple, where you could even find a answer in google by typing "PHP script doesn't work correctly" and I'm sure that the first thing that would appear is about the Php versions.

    But in other side its my bad cause everybody starts from somewhere.

    Have fun in future.
    ~I'm out~

  13. #13
    Enthusiast Max Manning is offline
    MemberRank
    May 2012 Join Date
    34Posts

    Re: How To MD5 Read ?

    Exactly we Start From Somewhere And thanks for the help

  14. #14
    Valued Member extazy20 is offline
    MemberRank
    Feb 2012 Join Date
    101Posts

    Re: How To MD5 Read ?

    Quote Originally Posted by Max Manning View Post
    Screenshot by Lightshot


    thank but it not working
    Open and edit short tag option to true in your php.ini (apache2 catalog).

  15. #15
    JD | Web Developer mrosenov is offline
    MemberRank
    Jun 2012 Join Date
    BulgariaLocation
    555Posts

    Re: How To MD5 Read ?

    Quote Originally Posted by extazy20 View Post
    Open and edit short tag option to true in your php.ini (apache2 catalog).
    I really don't know for what you are talking, but all he have to do is to change <? to <?php



Page 1 of 2 12 LastLast

Advertisement