18 points
*

As a software developer who has worked with a lot of symbols and emoji… PLEASE DON’T DO THIS.

Software doesn’t all handle these symbols the same way, and without tech knowledge (or even with) , it’s very possible to not be able to log in easily. I’m kinda drunk rn, but I’ll try to explain as simply as I can…

For example… skintone emojis are actually two characters, a face and a skin tone modifier. I think those ones are always two characters but some of these “multi-char” characters can be normalized into a single character. But not everyone handles this the same way. For example, Safari might normalize the emoji, but Firefox might treat it as two separate characters… And this would probably make your password not match. But basically… text has lots of edge cases; I’d advise to use normal passwords please (also maybe a password manager)

permalink
report
reply
2 points
*

Thanks for the feedback! I’ll be sure to use non-printing characters instead of emojis for my passwords! (They can’t guess it if it’s invisible right?)

In all seriousness, why are people so adverse to using password managers? People are plenty willing to use the browsers built-in “remind my password” instead of a proper password solution such as bitwarden… And they come up with such “hacks” just to avoid using a proper length password.

permalink
report
parent
reply
6 points

Was gonna say… you’re relying on the consistency of external emoji handlers that you don’t control. Ascii emojis are one thing.

permalink
report
parent
reply
6 points

Is my explaintion ok? The hard kombucha was… harder than I anticipated

permalink
report
parent
reply
1 point

It was pretty normal lol. Basically everything between the visual of an emoji and what “text” is entered is not in your control. So it’s great for security but not in practice as a password. What brand was the kombucha I want some.

permalink
report
parent
reply
41 points

Just use a password manager, goddamn.

permalink
report
reply
4 points

Two of my colleagues still use locally stored plaintext for individual work credentials, despite having been shown where the password manager is. Both have accessed their files in front of me. If it’s not in those files it’s saved in the browser (because convenience is a hell of a drug). Now you start to see why discrete managers have a hard time, even amongst technology workers.

permalink
report
parent
reply
1 point

Yeah, you can lead a horse to water, and whatnot.

permalink
report
parent
reply
6 points

But only save emojis in it lol

permalink
report
parent
reply
19 points

Completely useless from many sources where I have to rely on a keyboard for entering passwords.

permalink
report
reply
0 points

Most modern OSes feature emoji pickers though

permalink
report
parent
reply
1 point

What part of the word “Keyboard” did you not understand?

permalink
report
parent
reply
2 points
*

Mac os and windows? I haven’t seen it on my Mac but maybe on windows? Those are pretty modern. I haven’t seen it in Linux either now that I think of it.

permalink
report
parent
reply
1 point

Ctrl + ; should bring up an emoji picker in Linux when you have focused a text field

permalink
report
parent
reply
2 points

Yup, macOS has one too.

permalink
report
parent
reply
3 points

win+. will bring it up in windows

permalink
report
parent
reply
3 points
*

there is a “Characters” app in Gnome that lets you pick emojis

permalink
report
parent
reply
3 points
*

For petty services where you don’t want to have to break out the password manager, try making your own mental salted hash.

Pick four long words at random. Assign each of these to the four quadrants of the alphabet.

A-F - Equipment

G-M - Triumphant

N-S - Sampling

U-Z - Fatigued

Pick one number:

4

Now, take the first letter of the service that the password is for, and that selects your quadrant word. Take the number of letters in the service and multiply it against your number. Take the last letter of the service, and on your querty keyboard, move all the way to the right of thst line to select the first symbol there. Thats your unique password thats salted with yo ur personal words and number.

Facebook = Equipment32:

Lemmy = Triumphant20{

Pizza Hut = Sampling36{

If you want more security for these petty services, use longer words, bigger number, or use some other metric, Tweak the algorithm to make it unique to you. Maybe capitalize a middle letter in your salt word based on the length of the service name. Maybe add the first letter of the colour of the service logo to the password, EG

Facebook = Equipment32:B

Lemmy = Triumphant20{T

Pizza Hut = Sampling36{R

Petty services I would consider to be anything that’s not super critical, and is at a higher likelyhood of breaching my shit.

For banks, primary emails, or government services, use a more complex algorithm or a random string of chars from your password manager.

permalink
report
reply
2 points

The problem with using hash schemes like this is that when your password is leaked you can’t easily rotate the password.

permalink
report
parent
reply
1 point

This is what got me using a password manager. I didn’t want to trust a password manager because it felt like they would be highly targeted and one vulnerability would reveal everything. And let’s be honest they still are the same.

So I had my own scheme for generating passwords. I made myself a script that I could use on my phone and PC. It worked beautifully and effortlessly until occasionally a service would force me to choose a new password. When this started happening I made a new scheme for generating passwords and made a new script. When it first happened it was still reasonably easy because there was only one service I had to use the alternative. It started to become more difficult the more services asked for a new password.

I used my own system for several years until I had enough with trying to remember which services used the alternative scheme and wondered when I’d have to make a third scheme. And if I did then the mental complexity would significantly increase.

Interestingly only a couple of services publicly announced they had been hacked and none of my passwords have ever appeared on haveibeenpwned. So I wonder why these services asked for a new password and if they had been attacked why they chose not to announce it.

permalink
report
parent
reply
1 point

Not to mention if you suddenly developed amnesia or dementia

permalink
report
parent
reply
15 points

Just come up with one strong password (see https://xkcd.com/936/) for your password manager and use randomly generated passwords for everything else. There’s no reason to manually compute a hash every time you sign up for a service.

permalink
report
parent
reply
6 points

Also, for a non-remembering solution, use a security key with your password manager, the kind that plugs into USB and you have to tap a button to authenticate. Then you can generate a true random password and store it somewhere safe as a backup, and mainly use the key for day to day.

permalink
report
parent
reply
1 point

what about when you’re on your phone?

permalink
report
parent
reply
6 points

too short, for all that effort just use a sentence with a symbol and a number.

FacebookCanGoToHell!123 is more secure and easy to remember

permalink
report
parent
reply
0 points

Yeah putting the name of the service in the passphrase is actually pretty secure, unless the rest of the password is like “thisisapasswordforFACEBOOK” cause then one password gets leaked and the rest can be inferred.

permalink
report
parent
reply
1 point

Youre going to memorize a unique sentence for each service?

A method like this allows you to memorize only 4 words of arbitrary length, a number, and a simple algorthm to yield unique passwords for each service.

permalink
report
parent
reply
1 point

yes, it is what I do now. there was a time when people memorized 10, 15 phone numbers.

permalink
report
parent
reply
2 points
*

You can also add a standard phrase to all of them that is shared between them all just to make them more complex

Equipment32:thisismypassword

permalink
report
parent
reply
1 point

Also you can’t really “forget” a password, because it’s connected to the name of the site. Very clever

permalink
report
parent
reply
10 points

Long time ago a friend of mine used a set of key press to generate a smiley face to put in his bios which ended up in a situation where he was not able to type in the same smiley face into the password prompt. I had to teach him to reset his bios battery to get back into the bios.

permalink
report
reply
2 points

You’re a good friend

permalink
report
parent
reply

Technology

!technology@lemmy.world

Create post

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


Community stats

  • 17K

    Monthly active users

  • 12K

    Posts

  • 555K

    Comments