Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


MySQL and PHP simple login system filter_list
Author
Message
RE: MySQL and PHP simple login system #31
nice tutorial but not good enough for security reasons
-it is sql injectable
-password instant storage?
-sessions over cookies?

mhm this are just 3 I could think of and those 3 are the most important things I suggest to not learn from this script but actuall use this script as a reminder on how to put it up on a logical way.
Calling me stupid won't mind me it only shows your immaturity -<3

[Image: 120x240.gif]

Reply

RE: MySQL and PHP simple login system #32
nice tutorial but not good enough for security reasons
-it is sql injectable
-password instant storage?
-sessions over cookies?

mhm this are just 3 I could think of and those 3 are the most important things I suggest to not learn from this script but actuall use this script as a reminder on how to put it up on a logical way.
Calling me stupid won't mind me it only shows your immaturity -<3

[Image: 120x240.gif]

Reply

RE: MySQL and PHP simple login system #33
nice tutorial but not good enough for security reasons
-it is sql injectable
-password instant storage?
-sessions over cookies?

mhm this are just 3 I could think of and those 3 are the most important things I suggest to not learn from this script but actuall use this script as a reminder on how to put it up on a logical way.
Calling me stupid won't mind me it only shows your immaturity -<3

[Image: 120x240.gif]

Reply

RE: MySQL and PHP simple login system #34
(10-28-2013, 08:17 AM)hellomen Wrote: nice tutorial but not good enough for security reasons
-it is sql injectable
-password instant storage?
-sessions over cookies?

mhm this are just 3 I could think of and those 3 are the most important things I suggest to not learn from this script but actuall use this script as a reminder on how to put it up on a logical way.
Do you know how to do it the correct way or the best way? I\m very interested in learning how to do it secure. Do you think you could upload a thread or a tutorial about how to do it? Thank you!
Where I live... its freaking cold!
[Image: HC_Signature.png]

Reply

RE: MySQL and PHP simple login system #35
(10-28-2013, 08:17 AM)hellomen Wrote: nice tutorial but not good enough for security reasons
-it is sql injectable
-password instant storage?
-sessions over cookies?

mhm this are just 3 I could think of and those 3 are the most important things I suggest to not learn from this script but actuall use this script as a reminder on how to put it up on a logical way.
Do you know how to do it the correct way or the best way? I\m very interested in learning how to do it secure. Do you think you could upload a thread or a tutorial about how to do it? Thank you!
Where I live... its freaking cold!
[Image: HC_Signature.png]

Reply

RE: MySQL and PHP simple login system #36
(10-28-2013, 08:17 AM)hellomen Wrote: nice tutorial but not good enough for security reasons
-it is sql injectable
-password instant storage?
-sessions over cookies?

mhm this are just 3 I could think of and those 3 are the most important things I suggest to not learn from this script but actuall use this script as a reminder on how to put it up on a logical way.
Do you know how to do it the correct way or the best way? I\m very interested in learning how to do it secure. Do you think you could upload a thread or a tutorial about how to do it? Thank you!
Where I live... its freaking cold!
[Image: HC_Signature.png]

Reply

RE: MySQL and PHP simple login system #37
(10-28-2013, 08:17 AM)hellomen Wrote: nice tutorial but not good enough for security reasons
-it is sql injectable
-password instant storage?
-sessions over cookies?

mhm this are just 3 I could think of and those 3 are the most important things I suggest to not learn from this script but actuall use this script as a reminder on how to put it up on a logical way.
Do you know how to do it the correct way or the best way? I\m very interested in learning how to do it secure. Do you think you could upload a thread or a tutorial about how to do it? Thank you!
Where I live... its freaking cold!
[Image: HC_Signature.png]

Reply

RE: MySQL and PHP simple login system #38
(10-28-2013, 09:40 AM)Sebastian Kvernland Wrote:
(10-28-2013, 08:17 AM)hellomen Wrote: nice tutorial but not good enough for security reasons
-it is sql injectable
-password instant storage?
-sessions over cookies?

mhm this are just 3 I could think of and those 3 are the most important things I suggest to not learn from this script but actuall use this script as a reminder on how to put it up on a logical way.
Do you know how to do it the correct way or the best way? I\m very interested in learning how to do it secure. Do you think you could upload a thread or a tutorial about how to do it? Thank you!

MySQLi or PDO (I prefer PDO)
is one to make it more secure than the mysql_connect and stuff

strip_tags() for the $_GET's and $_POSTS helps better against XSS than when you don't use them
and ofcourse check your codes for fails
also try to use injections by yourself if you're unsure or ask someone to find leaks...

oh and never trust people on the internet
so every single thing you think mehhh that can be done later (security)
always MAKE THE THING because you can never trust a service user from your service.
Calling me stupid won't mind me it only shows your immaturity -<3

[Image: 120x240.gif]

Reply

RE: MySQL and PHP simple login system #39
(10-28-2013, 09:40 AM)Sebastian Kvernland Wrote:
(10-28-2013, 08:17 AM)hellomen Wrote: nice tutorial but not good enough for security reasons
-it is sql injectable
-password instant storage?
-sessions over cookies?

mhm this are just 3 I could think of and those 3 are the most important things I suggest to not learn from this script but actuall use this script as a reminder on how to put it up on a logical way.
Do you know how to do it the correct way or the best way? I\m very interested in learning how to do it secure. Do you think you could upload a thread or a tutorial about how to do it? Thank you!

MySQLi or PDO (I prefer PDO)
is one to make it more secure than the mysql_connect and stuff

strip_tags() for the $_GET's and $_POSTS helps better against XSS than when you don't use them
and ofcourse check your codes for fails
also try to use injections by yourself if you're unsure or ask someone to find leaks...

oh and never trust people on the internet
so every single thing you think mehhh that can be done later (security)
always MAKE THE THING because you can never trust a service user from your service.
Calling me stupid won't mind me it only shows your immaturity -<3

[Image: 120x240.gif]

Reply

RE: MySQL and PHP simple login system #40
(10-28-2013, 09:40 AM)Sebastian Kvernland Wrote:
(10-28-2013, 08:17 AM)hellomen Wrote: nice tutorial but not good enough for security reasons
-it is sql injectable
-password instant storage?
-sessions over cookies?

mhm this are just 3 I could think of and those 3 are the most important things I suggest to not learn from this script but actuall use this script as a reminder on how to put it up on a logical way.
Do you know how to do it the correct way or the best way? I\m very interested in learning how to do it secure. Do you think you could upload a thread or a tutorial about how to do it? Thank you!

MySQLi or PDO (I prefer PDO)
is one to make it more secure than the mysql_connect and stuff

strip_tags() for the $_GET's and $_POSTS helps better against XSS than when you don't use them
and ofcourse check your codes for fails
also try to use injections by yourself if you're unsure or ask someone to find leaks...

oh and never trust people on the internet
so every single thing you think mehhh that can be done later (security)
always MAKE THE THING because you can never trust a service user from your service.
Calling me stupid won't mind me it only shows your immaturity -<3

[Image: 120x240.gif]

Reply







Users browsing this thread: 1 Guest(s)