Im looking to create a real looking .cvs or .json file as if it was exported from a password manager.

  • E-Mail should always be the same and of my choice. Username should not be weird/random letters.
  • Websites should be real, random standard websites like facebook, twitter, instagram etc. no weird stuff.
  • bonus if it has credit cards or notes like “bitcoin wallet”.

I found mockaroo, but the stuff it generates is too random. Any other tools that are suitable for this and can be used by a noob?

Many thanks!

  • Diplomjodler@feddit.de
    link
    fedilink
    English
    arrow-up
    5
    ·
    4 months ago

    This sort of thing is trivial to do with Python. If you have to do stuff like this often, it’s definitely worth investing a few hours into learning it.

    • birdcat@lemmy.mlOP
      link
      fedilink
      arrow-up
      4
      ·
      edit-2
      4 months ago

      It’s not really important, more like a joke born out of boredom. But now if someone finds my veracrypt usb and manages to crack the first password, they will be trolled a bit and can read this beautiful diary entry (which GPT wrote)

      Dear diary, let me tell you, nobody knows cyber security like I do. It’s true. We’ve got the best, the most tremendous cyber security in the world. It’s not even close. Our encryption? It’s so strong, so powerful, even the smartest hackers—very smart people, by the way—they can’t crack it. They try and they try, but they just can’t do it. It’s like trying to break into Fort Knox, but even tougher. Believe me. And DDoS attacks? Please. They’re like little mosquitoes to us. We swat them away without even breaking a sweat. Our firewalls are like this massive, beautiful wall, and I know something about building walls. They’re the biggest, the best. Nothing gets through. Nothing. And phishing? We spot those a mile away. Our people are so alert, so vigilant, it’s like they have a sixth sense for these things. Our antivirus software? It’s like the superhero of software. It’s so advanced, so ahead of its time, that viruses give up. They see our defenses and say, “Nope, not going there. Too tough.” It’s incredible, really. So when I say we have the best cyber security, I’m not exaggerating. It’s not just good, it’s the best. It’s fantastic, folks. Absolutely fantastic.

      😅

  • entropicshart@sh.itjust.works
    link
    fedilink
    arrow-up
    4
    ·
    4 months ago

    This would be pretty easy to script with a fake data generator like mimesis, that can use existing providers, choose random options from a given set, and allows the creation of custom providers (e.g. pick a random website from a file of valid websites that you would like it to use)

  • lordnikon@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    4 months ago

    I would not recommend using a real one and modifying it. As it creates creates a list of sites that can be targeted for other forms of entry. Like social engineering and recovery methods.

  • Venator@lemmy.nz
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    4 months ago

    Sounds like a pretty niche task. Probably easiest to write a python or bash script to do it, maybe you could start with a real export and remove all the passwords, then add newly generated ones with a simple regex find and replace.