Image transcripion: The text contains the phrase “Hey! What’s going on?” followed by the phrase “Sick bastard!”. Below that is some code that appears to be related to password verification.


(Originally published earlier today on mastodon.social)

  • narpoleptic
    link
    fedilink
    42
    edit-2
    7 months ago

    I know I’ve been toiling in the Sysadmin Mines for too long in my life because I read the code and thought “Heh, that’s a neat workaround” 😅

  • @Downcount
    link
    31
    edit-2
    7 months ago

    I have the feeling I’ve been tricked by this quite a few times.

    • @[email protected]
      link
      fedilink
      Español
      57 months ago

      Most sites randomize this slightly to make you doubt yourself. To prevent brute forces from getting lucky, it’s more likely to happen the more tries you do per ip address.

      • @kautau
        link
        287 months ago

        most sites

        I’d be interested to see some data on that. Using a password manager, I almost never type my password, and I’ve definitely never had an invalid password error across the like 180 sites in my password manager when it’s being autofilled correctly

  • @Gonzako
    link
    12
    edit-2
    7 months ago

    The code basically says that if you don’t input the password correctly at first you don’t get to log in for the whole session. Edit: nvm it actually checks for both being true without negating them. So it always forces the user to input the same password twice

    • @Mango
      link
      37 months ago

      Which is kind of genius.

  • @rollmagma
    link
    107 months ago

    Image description: A three pane comic depicting an office setting. In the first pane a men with bags under his eyes and a cup of coffee asks “Hey! What’s going on?” while two men and a woman stand exasperated behind a men who looks at the computer screen while smiling. In the second pane the coffee drinker spits his coffee and drops the mug while in the standing trio, the woman screams “Sick bastard” towards the person on the computer, one man covers his mouth while his hair turns gray and the second man rips his own hair. The men on the computer does a thumbs up, still smiling. The third pane shows the computer screen which contains a “brute force attack protection” programming code. The code reads "If is password correct and is first login attempt, then error: wrong login or password "

  • Mark
    link
    fedilink
    9
    edit-2
    7 months ago

    Where’s the Sleep(5000) in the middle there?

    • @[email protected]
      link
      fedilink
      97 months ago

      If my password, which I copy-pasted from my password manager, is rejected twice, then I assume I must have deleted my account.

    • @perviouslyiner
      link
      37 months ago

      That sounds like the logic in a Douglas Adams computer game.

  • O_o
    link
    fedilink
    4
    edit-2
    7 months ago

    i swear my phone has this “feature”

  • streetcoder
    link
    fedilink
    3
    edit-2
    7 months ago

    Hey where did you find my code? But I even wrote a comment spam protector like this with first ten tries and random.

  • LEdoian
    link
    fedilink
    2
    edit-2
    7 months ago

    if (! isPasswordCorrect) && isFirstLoginAttempt: letThemIn()? :-)