Jump to content

Loginsystem Bug: I Can Login From My Server Computer, But Not From Any Other Computers


nonamenoob

Recommended Posts

my login system is awesome, i added one small thing and BAM it broke, i cant see the problem but i hope to have it fixed here, here is my code for my login page

<?PHP
include_once("sql.php");
if (isset($_POST["user"])) {
if (isset($_POST["pass"])) {
if ($_POST["user"] == "") {
 login("u");
}
else {
 $loggedIn = false;
 $result = mysql_query("select * from users;");
 while($row = mysql_fetch_assoc($result)) {
 if ($_POST["user"] == $row["user"]) {
	 if ($_POST["pass"] == $row["password"]) {
	 $loggedIn = true;
	 setCookie("user",$row["user"], time()+3600);
	 setCookie("password",$row["password"],time()+3600);
	 setCookie("team",$row["team"], time()+3600); \\ added this (a new colium in the table)
	 break;
	 }
 }
 }
 if ($loggedIn) {
 print "
 <a href=\"index.php\">Login</a>
 ";
 }
 else {
 login("up");
 }
}
}

else {
if ($_POST["user"] == "") {
 login("up");
}
else {
 login("p");
}
}
}
else {
login("");
}
function login($error) {
$user = "";
$pass = "";
if ($error == "u") {
$user = "<br />Username is incorrect";
}
if ($error == "p") {
$pass = "<br />Password is incorrect";
}
if ($error == "up") {
$user = "<br />Username not used";
$pass = "<br />Password is incorrect";
}
// form here just simple "username" and "password" fields
}
?>

 

note: my website is only small

thanks

Edited by nonamenoob
Link to comment
Share on other sites

That's not a very good definition at all. Maybe you'd care to share with us what else you added that caused the script to stop working? Was it only the one line in the code that you've commented? Did you change the DB structure? Do you have error reporting on? An awesome login system doesn't store passwords in cookies, BTW.

Edited by Pikachu2000
Link to comment
Share on other sites

i figured out the problem, and that this website is tiny and doesnt need a 'advanced' login system, the problem started at daylight savings, and my computer for whatever reason wasnt set for it, and so the cookies expired as they were created, thanks for all your help tho

Link to comment
Share on other sites

This is not a question about a site being "big" or not, nor whether or not it needs an "advanced" login system. It's a question about whether or not your login solution is secure, or if you will leak your users' email/username and password combinations (which almost everyone will be using everywhere else!) when your site is attacked.

Security isn't something you'll need only when you're "big" or "advanced", it is necessary for every single site that's going to be accessible to other people. After all, attackers scour the net using search engines and bots to find the weakest links: Don't let your site be one of those.

 

Not to mention the fact that you do not need access to the passwords for any reason, and by storing them in clear text you're already violating your users' trust. As noted above most people use the same password everywhere, which means that anyone who gains access to your database can impersonate them elsewhere as well.

You wouldn't want to give me your e-mail, username and password for this site, would you? I'm willing to bet that you've used the same password for your e-mail account, and most (if not all) other sites you're on. ;)

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.