▲ 320 ▼ Please create a non-secure password. (lemmy.world) submitted 2 years ago by FlyingSquid@lemmy.world to c/mildlyinfuriating@lemmy.world 80 comments fedilink hide all child comments
[–] m_f@midwest.social 107 points 2 years ago (4 children) Somebody isn't sanitizing their inputs properly. Like putting a bandaid on a heart attack permalink fedilink source hideshow 8 child comments replies: [–] scrubbles@poptalk.scrubbles.tech 68 points 2 years ago (4 children) Whenever I see something like this I just laugh because you're exactly right. Something isn't being handled properly and their dev team just proved they don't know how to do some basic handling. Every API library in JS and restful API I know of handle special characters. If they wanted they could base64 encode it over the wire. Then you're exactly right, if the database "can't handle it" more than likely it's a home spun database connection where they're serializing it themselves (which even then this is solvable), but even then that proves that they make poor choices. permalink fedilink source parent hideshow 8 child comments replies: [–] doeknius_gloek@discuss.tchncs.de 32 points 2 years ago* if the database "can't handle it" [...] that proves that they make poor choices. Exactly, the database should never even have to handle the password in it's original form and hashing algorithms don't care about special characters. permalink fedilink source parent [–] SnotFlickerman@lemmy.blahaj.zone 12 points 2 years ago* (1 child) This is like when I was in my twenties working at a crappy grocery store with a MoneyGram inside of it. I live in Washington state, and at the time, if your last name was less than five characters, you would have asterisk's in your license number. The MoneyGram system wanted people's license numbers but was unable to recognize a license with an asterisk. It happened pretty rarely, but it always happened to people whose last names were four characters or less long. Five letters in your last name and you were gold. To make the transactions happen, I would just do the whole license number minus the asterisk. Anyway, Washington changed how it generates license numbers so its a moot point anyway but I don't think MoneyGram ever spent a dime to fix this since it only affected a small number of people in one US state. permalink fedilink source parent hideshow 2 child comments replies: [–] bitchkat@lemmy.world 1 point 2 years ago (1 child) Are you saying that your driver's license number contains your name? Do you get a new number if you change your name? permalink fedilink source parent hideshow 2 child comments replies: [–] tigeruppercut@lemmy.zip 2 points 2 years ago Some states base it on your name in some ways. Mine used to have (maybe still do but I don't live there anymore) letters from first and last names plus birth date as most of the number. I assume if you change your name your number changes as well. permalink fedilink source parent [–] OmegaLemmy@discuss.online 9 points 2 years ago (1 child) Sometimes I wonder if I'm even fit for employment as a developer and then I see shit like this where I wonder who and what happened for this to even become an option? permalink fedilink source parent hideshow 2 child comments replies: [–] scrubbles@poptalk.scrubbles.tech 6 points 2 years ago (1 child) Always remember there is someone much cheaper than you who will do a much worse job, but be more arrogant about it permalink fedilink source parent hideshow 2 child comments replies: [–] OmegaLemmy@discuss.online 1 point 2 years ago Fuck I'm literally one of the cheapest, all I'm asking for is 700-800 dollars a month permalink fedilink source parent [–] dual_sport_dork@lemmy.world 8 points 2 years ago (1 child) Seems to be they're dropping the passwords in the database in plain text, but they're deathly afraid that someone will drop a '; in there or something and the insert will break. Notwithstanding that storing passwords in plain text is a slapping with the 10 foot rubber chicken, but mysqli_real_escape_string() or any number of other similar solutions are indeed a thing that exists. A prepared statement would work, too. permalink fedilink source parent hideshow 2 child comments replies: [–] Aganim@lemmy.world 4 points 2 years ago (1 child) but mysqli_real_escape_string() or any number of other similar solutions are indeed a thing that exists. A prepared statement would work, too. You make it sound as if a prepared statement is a last resort. I would turn that around: as a rule always use prepared statements when dealing with user input. It's very easy to forget a single call to mysqli_real_escape_string(). permalink fedilink source parent hideshow 2 child comments replies: [–] dual_sport_dork@lemmy.world 1 point 2 years ago* (last edited 2 years ago) I was thinking more along the lines of the types of laziness/ineptitude most likely present at wherever OP's example were being written. Escape string is one line of code for this whereas preparing a statement is like five. But really they should just be hashing it. Then the input doesn't matter. permalink fedilink source parent [–] Knossos@lemmy.world 17 points 2 years ago https://imgs.xkcd.com/comics/exploits_of_a_mom.png 😂 permalink fedilink source parent [–] friend_of_satan@lemmy.world 5 points 2 years ago (1 child) Which is ridiculous because it's going to hash down to the same character set. There's no way they're storing your password with special characters unhashed, right? permalink fedilink source parent hideshow 2 child comments replies: [–] m_f@midwest.social 2 points 2 years ago One can hope 🤞 permalink fedilink source parent [–] Th4tGuyII@fedia.io 2 points 2 years ago Was my first thought. The only reason special characters would ever matter in a password is if you're storing/processing them improperly permalink fedilink source parent
[–] scrubbles@poptalk.scrubbles.tech 68 points 2 years ago (4 children) Whenever I see something like this I just laugh because you're exactly right. Something isn't being handled properly and their dev team just proved they don't know how to do some basic handling. Every API library in JS and restful API I know of handle special characters. If they wanted they could base64 encode it over the wire. Then you're exactly right, if the database "can't handle it" more than likely it's a home spun database connection where they're serializing it themselves (which even then this is solvable), but even then that proves that they make poor choices. permalink fedilink source parent hideshow 8 child comments replies: [–] doeknius_gloek@discuss.tchncs.de 32 points 2 years ago* if the database "can't handle it" [...] that proves that they make poor choices. Exactly, the database should never even have to handle the password in it's original form and hashing algorithms don't care about special characters. permalink fedilink source parent [–] SnotFlickerman@lemmy.blahaj.zone 12 points 2 years ago* (1 child) This is like when I was in my twenties working at a crappy grocery store with a MoneyGram inside of it. I live in Washington state, and at the time, if your last name was less than five characters, you would have asterisk's in your license number. The MoneyGram system wanted people's license numbers but was unable to recognize a license with an asterisk. It happened pretty rarely, but it always happened to people whose last names were four characters or less long. Five letters in your last name and you were gold. To make the transactions happen, I would just do the whole license number minus the asterisk. Anyway, Washington changed how it generates license numbers so its a moot point anyway but I don't think MoneyGram ever spent a dime to fix this since it only affected a small number of people in one US state. permalink fedilink source parent hideshow 2 child comments replies: [–] bitchkat@lemmy.world 1 point 2 years ago (1 child) Are you saying that your driver's license number contains your name? Do you get a new number if you change your name? permalink fedilink source parent hideshow 2 child comments replies: [–] tigeruppercut@lemmy.zip 2 points 2 years ago Some states base it on your name in some ways. Mine used to have (maybe still do but I don't live there anymore) letters from first and last names plus birth date as most of the number. I assume if you change your name your number changes as well. permalink fedilink source parent [–] OmegaLemmy@discuss.online 9 points 2 years ago (1 child) Sometimes I wonder if I'm even fit for employment as a developer and then I see shit like this where I wonder who and what happened for this to even become an option? permalink fedilink source parent hideshow 2 child comments replies: [–] scrubbles@poptalk.scrubbles.tech 6 points 2 years ago (1 child) Always remember there is someone much cheaper than you who will do a much worse job, but be more arrogant about it permalink fedilink source parent hideshow 2 child comments replies: [–] OmegaLemmy@discuss.online 1 point 2 years ago Fuck I'm literally one of the cheapest, all I'm asking for is 700-800 dollars a month permalink fedilink source parent [–] dual_sport_dork@lemmy.world 8 points 2 years ago (1 child) Seems to be they're dropping the passwords in the database in plain text, but they're deathly afraid that someone will drop a '; in there or something and the insert will break. Notwithstanding that storing passwords in plain text is a slapping with the 10 foot rubber chicken, but mysqli_real_escape_string() or any number of other similar solutions are indeed a thing that exists. A prepared statement would work, too. permalink fedilink source parent hideshow 2 child comments replies: [–] Aganim@lemmy.world 4 points 2 years ago (1 child) but mysqli_real_escape_string() or any number of other similar solutions are indeed a thing that exists. A prepared statement would work, too. You make it sound as if a prepared statement is a last resort. I would turn that around: as a rule always use prepared statements when dealing with user input. It's very easy to forget a single call to mysqli_real_escape_string(). permalink fedilink source parent hideshow 2 child comments replies: [–] dual_sport_dork@lemmy.world 1 point 2 years ago* (last edited 2 years ago) I was thinking more along the lines of the types of laziness/ineptitude most likely present at wherever OP's example were being written. Escape string is one line of code for this whereas preparing a statement is like five. But really they should just be hashing it. Then the input doesn't matter. permalink fedilink source parent
[–] doeknius_gloek@discuss.tchncs.de 32 points 2 years ago* if the database "can't handle it" [...] that proves that they make poor choices. Exactly, the database should never even have to handle the password in it's original form and hashing algorithms don't care about special characters. permalink fedilink source parent
[–] SnotFlickerman@lemmy.blahaj.zone 12 points 2 years ago* (1 child) This is like when I was in my twenties working at a crappy grocery store with a MoneyGram inside of it. I live in Washington state, and at the time, if your last name was less than five characters, you would have asterisk's in your license number. The MoneyGram system wanted people's license numbers but was unable to recognize a license with an asterisk. It happened pretty rarely, but it always happened to people whose last names were four characters or less long. Five letters in your last name and you were gold. To make the transactions happen, I would just do the whole license number minus the asterisk. Anyway, Washington changed how it generates license numbers so its a moot point anyway but I don't think MoneyGram ever spent a dime to fix this since it only affected a small number of people in one US state. permalink fedilink source parent hideshow 2 child comments replies: [–] bitchkat@lemmy.world 1 point 2 years ago (1 child) Are you saying that your driver's license number contains your name? Do you get a new number if you change your name? permalink fedilink source parent hideshow 2 child comments replies: [–] tigeruppercut@lemmy.zip 2 points 2 years ago Some states base it on your name in some ways. Mine used to have (maybe still do but I don't live there anymore) letters from first and last names plus birth date as most of the number. I assume if you change your name your number changes as well. permalink fedilink source parent
[–] bitchkat@lemmy.world 1 point 2 years ago (1 child) Are you saying that your driver's license number contains your name? Do you get a new number if you change your name? permalink fedilink source parent hideshow 2 child comments replies: [–] tigeruppercut@lemmy.zip 2 points 2 years ago Some states base it on your name in some ways. Mine used to have (maybe still do but I don't live there anymore) letters from first and last names plus birth date as most of the number. I assume if you change your name your number changes as well. permalink fedilink source parent
[–] tigeruppercut@lemmy.zip 2 points 2 years ago Some states base it on your name in some ways. Mine used to have (maybe still do but I don't live there anymore) letters from first and last names plus birth date as most of the number. I assume if you change your name your number changes as well. permalink fedilink source parent
[–] OmegaLemmy@discuss.online 9 points 2 years ago (1 child) Sometimes I wonder if I'm even fit for employment as a developer and then I see shit like this where I wonder who and what happened for this to even become an option? permalink fedilink source parent hideshow 2 child comments replies: [–] scrubbles@poptalk.scrubbles.tech 6 points 2 years ago (1 child) Always remember there is someone much cheaper than you who will do a much worse job, but be more arrogant about it permalink fedilink source parent hideshow 2 child comments replies: [–] OmegaLemmy@discuss.online 1 point 2 years ago Fuck I'm literally one of the cheapest, all I'm asking for is 700-800 dollars a month permalink fedilink source parent
[–] scrubbles@poptalk.scrubbles.tech 6 points 2 years ago (1 child) Always remember there is someone much cheaper than you who will do a much worse job, but be more arrogant about it permalink fedilink source parent hideshow 2 child comments replies: [–] OmegaLemmy@discuss.online 1 point 2 years ago Fuck I'm literally one of the cheapest, all I'm asking for is 700-800 dollars a month permalink fedilink source parent
[–] OmegaLemmy@discuss.online 1 point 2 years ago Fuck I'm literally one of the cheapest, all I'm asking for is 700-800 dollars a month permalink fedilink source parent
[–] dual_sport_dork@lemmy.world 8 points 2 years ago (1 child) Seems to be they're dropping the passwords in the database in plain text, but they're deathly afraid that someone will drop a '; in there or something and the insert will break. Notwithstanding that storing passwords in plain text is a slapping with the 10 foot rubber chicken, but mysqli_real_escape_string() or any number of other similar solutions are indeed a thing that exists. A prepared statement would work, too. permalink fedilink source parent hideshow 2 child comments replies: [–] Aganim@lemmy.world 4 points 2 years ago (1 child) but mysqli_real_escape_string() or any number of other similar solutions are indeed a thing that exists. A prepared statement would work, too. You make it sound as if a prepared statement is a last resort. I would turn that around: as a rule always use prepared statements when dealing with user input. It's very easy to forget a single call to mysqli_real_escape_string(). permalink fedilink source parent hideshow 2 child comments replies: [–] dual_sport_dork@lemmy.world 1 point 2 years ago* (last edited 2 years ago) I was thinking more along the lines of the types of laziness/ineptitude most likely present at wherever OP's example were being written. Escape string is one line of code for this whereas preparing a statement is like five. But really they should just be hashing it. Then the input doesn't matter. permalink fedilink source parent
[–] Aganim@lemmy.world 4 points 2 years ago (1 child) but mysqli_real_escape_string() or any number of other similar solutions are indeed a thing that exists. A prepared statement would work, too. You make it sound as if a prepared statement is a last resort. I would turn that around: as a rule always use prepared statements when dealing with user input. It's very easy to forget a single call to mysqli_real_escape_string(). permalink fedilink source parent hideshow 2 child comments replies: [–] dual_sport_dork@lemmy.world 1 point 2 years ago* (last edited 2 years ago) I was thinking more along the lines of the types of laziness/ineptitude most likely present at wherever OP's example were being written. Escape string is one line of code for this whereas preparing a statement is like five. But really they should just be hashing it. Then the input doesn't matter. permalink fedilink source parent
[–] dual_sport_dork@lemmy.world 1 point 2 years ago* (last edited 2 years ago) I was thinking more along the lines of the types of laziness/ineptitude most likely present at wherever OP's example were being written. Escape string is one line of code for this whereas preparing a statement is like five. But really they should just be hashing it. Then the input doesn't matter. permalink fedilink source parent
[–] Knossos@lemmy.world 17 points 2 years ago https://imgs.xkcd.com/comics/exploits_of_a_mom.png 😂 permalink fedilink source parent
[–] friend_of_satan@lemmy.world 5 points 2 years ago (1 child) Which is ridiculous because it's going to hash down to the same character set. There's no way they're storing your password with special characters unhashed, right? permalink fedilink source parent hideshow 2 child comments replies: [–] m_f@midwest.social 2 points 2 years ago One can hope 🤞 permalink fedilink source parent
[–] Th4tGuyII@fedia.io 2 points 2 years ago Was my first thought. The only reason special characters would ever matter in a password is if you're storing/processing them improperly permalink fedilink source parent