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!
12 Comments
Diplomjodler@feddit.de · 5 pts · 2y
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.ml · 4 pts · 2y
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)
😅
entropicshart@sh.itjust.works · 4 pts · 2y
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)
jaemo@sh.itjust.works · 4 pts · 2y
I'm a rubyist so I'd use ruby + faker, but there's a port of faker for just about any language...
akilou@sh.itjust.works · 4 pts · 2y
Export a real one then modify it
birdcat@lemmy.ml · 2 pts · 2y
ya peobaby faster than figuring out how to automate it 😅
Venator@lemmy.nz · 2 pts · 2y
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.
lordnikon@lemmy.world · 2 pts · 2y
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.
birdcat@lemmy.ml · 1 pts · 2y
i made a real one with lastpass and exported them, but none of the accounts exist and i dont use any of the sites.
lordnikon@lemmy.world · 2 pts · 2y
ah that makes more sense
Murkhat@feddit.de · 2 pts · 2y
I would suggest to write a Python script together with https://pypi.org/project/Faker/ - might not be the noob-friendliest, but also not too hard to do
akilou@sh.itjust.works · 2 pts · 2y
Export a real one then modify it