At a glance, the passwords the LLMs created looked secure, much like those that a password generator might spit out. But that’s exactly where the problems arose: Although the AI-generated passwords appeared to be complex and safe to use for securing online accounts, they were actually quite predictable upon closer inspection.
All three LLMs exhibited clearly identifiable patterns in how they created these passwords. These patterns included repeated character strings, predictable password structure, frequent reuse of similar characters, clear biases toward certain numbers and letters, and even duplicate passwords in some cases. Although the AI-generated passwords looked random, they really weren’t. This could easily create a false sense of security if you were to use these predictable passwords for your online accounts.
AI generated password
… I’m sorry, what just happened? I think I had a mini aneurysm. Let me read that ag…
In all seriousness, WTAF is wrong with people? What removed Baphomet wannabe came up with that negative IQ idea? SERIOUSLY… WTF IS WRONG WITH PEOPLE. ARGH!
Here I am giving security training to my coworkers and then I have to read this. This is like me spending a life long sifting through all my garbage to make sure everything is nicely separated for recycling, using the bike to go anywhere, to make sure my carbon footprint is as small as possible and over flies Taylor Swift in her private jet undoing my life’s work in a single fucking trip.
Seriously this gives me a headache
Wait … Wat? Why would you even…
if only there existed a better way to generate passwords
I am constantly impressed with the level of general idiocy of end users when it comes to stuff like this…
AI generated password? What kind of brain rot idea is that, god damn. Do these people need to ask AI to breathe for them?
I can also generate a password for them while running 50 toasters and flushing the toilet a bunch if they want.
Just noticing: there’s 0 evidence in article that anyone is doing this. I just don’t buy that this is happening enough to matter. Interesting as interpretability research at best
why. dafuq. would someone use an llm to make a password.
Because the techbros are pushing AI (really LLMs, but that is too many letters) for everything to justify their insane stock valuations
My brother you can literally slam your face on the keyboard to get a password. Why would you ask an llm’ to do it for you?
I’m pretty sure there’s an algorithm somewhere to solve for face to keyboard password generation.
Let me ask
ChatGPTClaude
“here’s what to use instead”
…the same thing we always have been? Keepass or other password managers with randomly generated passwords?
Why does everything have to be LLM, like why cant things sometimes just be algorithmically generated like my AI-free password manager does?
I wonder if there’s AI-powered password managers on the market now lol. If so and if customers, I would mirror Zuck’s snide “thuh dumb fucks” setiment when people trusted him
ZXCVBN algorithm has never failed me. I can generate passwords that would take 1 quadrillion guesses/second hackers over 90 million years (testing 1 quad/sec) on the reg
There’s AI-powered everything now for no reason other than because when they slap those two letters on it, their stocks go up. A lot of times there’s not even any AI involved.
I remember CES 2022 when derb8uer found these “AI PC cases” and when he asked about why, they said “because you can put an AI PC in it”. And that’s when I knew it was a bubble. Because that’s the kind of shit that happened with dotcom. Companies slapping “dotcom” on their names and their stocks would skyrocket for no reason.
Stox go brrrrr
I remember the days before hardware random number generators, when pseudo random number generators caused fuck ups by not actually being random. Now people are re-inventing the stupid way of doing it with AI.
It blows my mind hackers still found ways in with just that one fuckup
It’s worse than just using a new tool though. By definition LLMs use the statistically most likely option (with minor variation for flavor). People are literally asking a statistics bot what password can I use that is the most likely?
That’s a good point: it’s not just that LLMs fail to give you an optimal password, it’s that they’re inherently designed to give you a pessimal one.
I was gonna say that. They gonna give you a recycled pattern
I mean, like, what is an effective/“good” password if not an unrecycled non-pattern??
I always say I’m not interested in asking an LLM to add 2 + 2 for me. Of course my managers are always pushing us to use LLMs and coworkers keep suggesting we replace efficient, testable, and consistent processes with AI. If you’re going to use it at least think of scenarios that are hard to code for and it would take you at least 10 min to solve.
But…but Magic Box™
While “routing” of prompts between specialist models and traditional APIs does offer more efficient and reliable outputs, it also
A. requires more elbow grease than one massive generalist model, and
B. doesn’t help you avoid paying API licensing fees by obfuscating their outputs into the blackbox weights of your proprietary model
It just seems like a password manager is an infinitely better tool. Like to the point i severely judge and question the sense of someone who seeks to reinvent the wheel for something so crucial
Oh for sure. I was just answering in case you wanted to know.
Future versions of AI tools will likely use routing to do a variety of tasks more efficiently and accurately. But until then? It’s a jinn to those who would wish away every single chore they lack the patience to comprehend including, unfortunately, information security.
Its honestly crazy to me. I have it down to such an art that Incouldnt imagine giving up my unilateral control or sole custody of that data
Why does everything have to be LLM
Not everything is, it’s just Lemmy is obsessed with them so you’re going to see it come up a lot
Unfortunately it’s not just Lemmy. Corporations are obsessed with LLMs as are a lot of the people working for them. I daily get messages and meetings about LLMs in one way or another and it drives me nuts because it keeps interrupting actual work. In the span of like two months it went from something that was mentioned maybe once in the last year to be 90% of what everyone is talking about.
which dumbass lets LLMs generate their passwords?
What do you mean. Why would it be a problem that my password is the most statistically likely sequence of characters in the world? And that the password is stored in plaintext in a chat log? And used for training LLMs on password conversations?
I just set my password to hunter2, no one will ever figure it out.
I just use the same combination that I have on my luggage
1234?
0000!
What is that? All I see is *******.
Let me test that
JsfJhdYhb57’j4++€€djF
Shit 😩
Don’t put a quote mark in your password! I learned the hard way with password’drop table users;’
/S
Wait, was this because you too had a student named “Robert’); DROP TABLE users;–”?
What are some strings I could add to my passwords to hopefully prevent their darknet spread just a little bit?
If someone I knew told me they asked an LLM to generate their password, I would no longer talk to that person.
Alright then, Tobis, it was fun speaking to you 👍
Me! Me! Me!
dumbass
That was uncalled for 😞
Why would anyone… Who the fuck is using glorified autocomplete to generate a random unique password?
Anyone that stupid deserves the breach and any company that integrates that moronic idea deserves the blowback.
It takes a five line Python script to generate a secure password. But no, let’s waste a gigantic amount of energy to have a slop machine do it very badly.
Bet I can do it in less
import random password_length=10 letters = "abcdefghijklmnopqrstuvwxyz0123456789-&@$?!*#%" print(''.join(random.sample(letters+letters+letters.upper()+letters.upper(), password_length)))If you inline password_length and letters, you can bring it down to 2 lines
print(''.join(__import__('random').sample(etc...for one-lining it :)Sure. The five lines are just for readability.
golfing is fun! I do everything in a single line
Python is really good for golfing. The flexible types are ripe for abuse.
print(["fizzbuzz"[n%3and 4:8-(n%5and 4)]or n for n in range(1,101)])
Even less lines if you’re ok with it generating the same secure password every time
LLMs are predictive text machines. Focus on “predictive”. Of course they will not output random text.
Note: not fully deterministic though - they need (pseudo)randomness at few critical points to be good
How did we manage to move almost completely away from Pseudo-random password generation, only to come straight back to it via LLMs again.
People will really just shove these things into anything like they’re a bloody panacea, when really they’re just extremely well-trained parrots.















