Dont use Reddit username or Facebook username or anything like that even if it could be cool. That way you dont have to worry even if some log file or error stack trace recorded your username.

      • elvith@feddit.de
        link
        fedilink
        English
        arrow-up
        5
        ·
        10 months ago

        Not really - a SQL Injektion would be naming my user user"; DROP TABLE USERS;-- or something like that.

        My string is harmless but might scare web devs: How often do you see pseudocode like this?

        log(INFO, "User "+user.userID+" logged on")
        

        Usually this should print User @someone@example.com logged on as the variable content gets converted to a string. But if the variable is not a simple datatype like string, but a complex one, there might be errors. If you do the concatenation above with an object instead of a string, this would only print User [object Object] logged on. Now when the web dev sees this line he’s going to try to find the Bug, where this variable gets set to the wrong value/type, when in reality it’s just your carefully crafted user name.

      • WDX@feddit.de
        link
        fedilink
        English
        arrow-up
        3
        ·
        edit-2
        10 months ago

        Its the String representation of a Object.

        If you open your Browser and hit F12, go to the console and type console.log(""+{}) you get an Object {} converted to a string by joining it with another empty string.

  • drkt@feddit.dk
    link
    fedilink
    English
    arrow-up
    16
    ·
    10 months ago

    Why would I be worried about my username showing up in logs and errors?

  • Swiggles@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    14
    ·
    10 months ago

    Don’t use “user” as your username. Use a personalized one, because it is much easier to identify and obviously it is a requirement in a multi user context.

    If you share your logs pseudonymize them, but pick anything other than “user”, because it makes it confusing especially when dealing with pam, ssh etc.

    Overall not great advise.

  • hemko@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    9
    ·
    10 months ago

    Uh, but if you were to post a logfile or whatever online you’d anyways sanitize it before posting, right?

  • Draconic NEO@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    4
    ·
    10 months ago

    I don’t think this is as much of an issue as people think it is, unless you’re going to be sharing your logs with others it’s not really going to be much of an issue, especially if it’s not your real name. You might be thinking of some app or malicious program looking through them, instead you should be thinking of the real danger of an app or program opening and looking through Personal files on your computer, that’s where the real juicy stuff is.