Jump to content

Cannot configure members.txt


pant

Recommended Posts

Hi

 

I have download phpauth-v1.

I manage to set up almost everything accept to login.

The read me file says:

 

Create database text file on your webserver. e.g. members.txt

2. Edit phpAuth_config.php to suit your needs.

 

2.1 Change the database name to the database text file you've created.

2.1 Edit the redirection for login and logout

CHMOD your database text file to 666

 

I have done everything the demo members.txt file was given was like that:

 

admin 9003d1df22eb4d3820015070385194c8

 

Now in the login page I tried this combinatios but i got error login details.

I changed to other username and password but the same result.

Any help

Thank you

 

 

 

Link to comment
Share on other sites

I think the number after admin is a hashed value of the password, very likely to be an md5

well, since you can't decrypt it, try to enter this after the admin:

21232f297a57a5a743894a0e4a801fc3

and use "admin" as your password.

Link to comment
Share on other sites

I think the number after admin is a hashed value of the password, very likely to be an md5

well, since you can't decrypt it, try to enter this after the admin:

21232f297a57a5a743894a0e4a801fc3

and use "admin" as your password.

 

Ok I ll try

 

If I want to use my own usernames and passwords whta shall I do then?

Thank you

Link to comment
Share on other sites

First I am not very sure if the script used md5 to encrypt the password.  Even if they used md5, they may add a salt and you got a totally different encrypted value.  You gotta look at the way they encrypt the password, then encrypt your own password and replace it in the members.txt file

Link to comment
Share on other sites

ahh... ok then, this is not the one i tried to look for.

 

You need to find the function in which it actually compare the password and set the $_SESSION['phpAuth_username']

 

find any function that called:

$_SESSION['phpAuth_username'] = ....

Link to comment
Share on other sites

Ok Ifound it.

 

It is in phpAUTH_inc.php

 

 

session_start();

$_SESSION["phpAuth_username"] = $_POST["phpAuth_usr"];

$_SESSION["phpAuth_password"]  = $_POST["phpAuth_pwd"];

 

What I have to do now?

I mean what I have to put to members.txt so  I can add users?

 

 

Link to comment
Share on other sites

Ok

Here it is

 

<?
if (isset($_POST["phpAuth_Submit"])) {

	include "phpAuth_config.php";
	$filename = $database_name;

if (!file_exists($filename)) {

		echo "No database exists. Please check your config file.";

} else {

	$handler = fopen($filename,'r');
	$members = file_get_contents($filename);
	// get username and password
	$users_array = explode ("\n",$members);

	foreach ($users_array as $users) {
		if ($users != "" || $users != NULL) {

			// break username and password string into seperate variables.
			list($username,$password) = explode("\t",$users);

			if ($_POST["phpAuth_usr"] == trim($username) && md5($_POST["phpAuth_pwd"]) == trim($password)) {	

				$logged_in = 1;
				break;

			} else {

				$logged_in = 0;

			}

		} else {

			break;

		}

	} // end foreach

	if ($logged_in != 1) { // IF USER IS NOT LOGGED IN

		echo "Error! Incorrect Details. <a href=\"".$_SERVER['HTTP_REFERER']."\">Go Back</a>";

	} else { // ELSE LOGGED IN			

		session_start();
		$_SESSION["phpAuth_username"] = $_POST["phpAuth_usr"];
		$_SESSION["phpAuth_password"]  = $_POST["phpAuth_pwd"];

			if ($_POST["phpAuth_rm"] == 1) {
				setcookie("phpAuth_username",$_POST["phpAuth_usr"],time()+3600);
			}

		header('Location: '.$login_redirect.'');
	}	

} // END IF FILE EXISTS

} else {	

?>

Thanks for your time

 

EDITED BY WILDTEEN88: Please use code tags (


when including code within posts. Thank you

Link to comment
Share on other sites

if ($_POST["phpAuth_usr"] == trim($username) && md5($_POST["phpAuth_pwd"]) == trim($password)) {

 

it is confirmed to be md5 encryption.

so if you like to set your password, encode your password using md5 and store in the members.txt file

 

There are websites which provide various type of encryption converting.

You may want to do a search on "md5, crc web based converter"

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.