Only authenticationcleartextpassword and authenticationmd5password supported for now. received: 10

The received query is: authenticationcleartextpassword and authenticationmd5password are the supported authentication methods for now.

An example of using authenticationcleartextpassword is as follows:

    
      <form method="post" action="login.php">
        <label for="username">Username:</label>
        <input type="text" id="username" name="username"><br>
        <label for="password">Password:</label>
        <input type="password" id="password" name="password"><br>
        <input type="hidden" name="authentication_method" value="authenticationcleartextpassword">
        <input type="submit" value="Login">
      </form>
    
  

An example of using authenticationmd5password is as follows:

    
      <form method="post" action="login.php">
        <label for="username">Username:</label>
        <input type="text" id="username" name="username"><br>
        <label for="password">Password:</label>
        <input type="password" id="password" name="password"><br>
        <input type="hidden" name="authentication_method" value="authenticationmd5password">
        <input type="submit" value="Login">
      </form>
    
  

Similar post

Leave a comment