Nvidia's flagship gaming GPU can crack complex passwords in under an hour

Nvidia RTX 4090
(Image credit: Nvidia)

The best graphics cards are great for gaming but can also help crack passwords. Hive Systems, a cybersecurity solution provider, has released the 2024 edition of its Hive Systems Password Table and some additional studies detailing how long it takes different Nvidia graphics cards to crack a password.

Unlike other studies where firms used AI to crack passwords, Hive Systems' approach is based on hashes. Hashing consists of scrambling the password into an enigmatic combination of letters and numbers. Servers store passwords in the form of hashes, so even if a hacker steals the database, they see the hashes, not the actual password. Hackers play around with different combinations of characters, hashing them and comparing them to stolen databases with password hashes to look for matches.

Latest Videos FromTom's Hardware
Zhiye Liu
News Editor, RAM Reviewer & SSD Technician

Zhiye Liu is a news editor, memory reviewer, and SSD tester at Tom’s Hardware. Although he loves everything that’s hardware, he has a soft spot for CPUs, GPUs, and RAM.

  • CmdrShepard
    Again the same tiring shtick -- sensationalist title amounting to fear porn.

    And by the end of the article it is revealed that the scary title is for MD5 password hashing (probably without salt too) which nobody sane is using since like forever.
    Reply
  • thisisaname
    Someone tell Intel you can do it on a their CPUs too.
    Reply
  • dalauder
    I don't know a lot about brute force password hacking. But don't most online websites lock you out after a couple failed attempts? How a system check all passwords?

    This is only valid for things like encryption on local files, right?
    Reply
  • pixelpusher220
    dalauder said:
    I don't know a lot about brute force password hacking. But don't most online websites lock you out after a couple failed attempts? How a system check all passwords?

    This is only valid for things like encryption on local files, right?
    Yes, if they were trying to hit the actual system with each guess, that would stop it.

    This is an offline attempt to create every password, hash it, and see if the hash matches the hash you got from a breach. So all the 'hacking' is done offline and if they find it, they know they have the password (as of the time the hash was leaked).
    Reply
  • bobpuffer
    Admin said:
    Cybersecurity firm Hive Systems has released its 2024 iteration of the Hive Systems Password Table, which details how long it takes different graphics cards to crack a password.

    Nvidia's flagship gaming GPU can crack complex passwords in under an hour : Read more
    I also want to strongly urge you to use less climactic Language in your title. A stronger password than 8 characters should be expected It should also make it more clear that this is done offline. Cracking a password online is much more difficult because of the wait times after too many false submissions.
    Reply
  • blargh4
    MD5 was considered broken 20 years ago. Breaking an insecure hash is non-news.
    Reply
  • JTWrenn
    I hate that I clicked on this article because that title is click bait. Nobody clicked on this thinking you were talking about cracking the hashed files, in a database that would need to be hacked/stolen first, and be so out of date it's ridiculous.

    Please stop posting clickbait Toms. It's making all of us second guess coming here.
    Reply
  • CmdrShepard
    dalauder said:
    I don't know a lot about brute force password hacking. But don't most online websites lock you out after a couple failed attempts? How a system check all passwords?

    This is only valid for things like encryption on local files, right?
    The way this works is that they first have to obtain user database with hashed passwords.

    Then they can run bruteforce attack against those hashes to reverse them into text.

    The thing is, MD5 (and without a random salt value appended to boot) was never secure enough for password hashing. Think of a big CEO / company owner hiring their nephew who "knows computers" to make a website -- it's that sort of incompetence.

    Whoever is not using PBKDF2 or some alternative to transform plaintext passwords for offline storage should be held criminally liable for negligence at the minimum.

    All that makes this article totally pointless clickbait.
    Reply
  • TJ Hooker
    CmdrShepard said:
    The way this works is that they first have to obtain user database with hashed passwords.

    Then they can run bruteforce attack against those hashes to reverse them into text.

    The thing is, MD5 (and without a random salt value appended to boot) was never secure enough for password hashing. Think of a big CEO / company owner hiring their nephew who "knows computers" to make a website -- it's that sort of incompetence.

    Whoever is not using PBKDF2 or some alternative to transform plaintext passwords for offline storage should be held criminally liable for negligence at the minimum.

    All that makes this article totally pointless clickbait.
    The 2nd table and following text is based on bcrypt results, so that part is more or less legit. The title and first half is indeed essentially clickbait though.
    Reply
  • dalauder
    CmdrShepard said:
    The way this works is that they first have to obtain user database with hashed passwords.

    Then they can run bruteforce attack against those hashes to reverse them into text.

    The thing is, MD5 (and without a random salt value appended to boot) was never secure enough for password hashing. Think of a big CEO / company owner hiring their nephew who "knows computers" to make a website -- it's that sort of incompetence.

    Whoever is not using PBKDF2 or some alternative to transform plaintext passwords for offline storage should be held criminally liable for negligence at the minimum.

    All that makes this article totally pointless clickbait.
    Thanks. I see that bcrypt table now. Seems like a pretty safe timeframe. Nobody will be spending 2+ weeks just to hack my account, not knowing if it has anything of value in it. Maybe they'll do it for corporate accounts?
    Reply